I use python\'s zipfile module to extract a .zip archive (Let\'s take this file at http://img.dafont.com/dl/?f=akvaleir for example.)
f = zipfile.ZipFile(\'a
Instead of the extract method, use the open method and save the resulting pseudofile to disk under whatever name you wish, for example with shutil.copyfileobj.
extract