First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
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')
2 | No.2 Revision |
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')
3 | No.3 Revision |
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.