jak-project/scripts/tasks/extract-zip.py
Tyler Wilding 01abde35d8
d/jak2: First few files, mood-tables and vol-h (#1796)
* decomp: format jak1 cast files

* decomp: finish `mood-tables` and `mood-tables2`

* jak2: stop disasm'ing

* jak2: format jak2 cast files, start working on the rest of the `mood` files

* scripts: fix running pcsx2 watcher

* d/jak2: finish `vol-h`

* d/jak2: address feedback
2022-08-24 19:34:09 -04:00

11 lines
226 B
Python

import argparse
import zipfile
parser = argparse.ArgumentParser()
parser.add_argument("--file")
parser.add_argument("--out")
args = parser.parse_args()
with zipfile.ZipFile(args.file, 'r') as p2s:
p2s.extractall(args.out)