Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can do this by using the zipfile module in python zipfile:

import zipfile

zip = zipfile.ZipFile(r'c:\my.zip')
zip.extractall(r'c:\output')

You can do this by using the zipfile module in python zipfile: module in python:

import zipfile

zip = zipfile.ZipFile(r'c:\my.zip')
zip.extractall(r'c:\output')

You can do this by using the zipfile module in python:

import zipfile
 zip = zipfile.ZipFile(r'c:\my.zip')
zip.extractall(r'c:\output')

If I could comment, I would also add that your question seems to be more of a python question than a PSS/E question. You might find answers to such questions more easily at stackoverflow.com.