Initial commit - express server, where citysys-terminal app is uploaded
This commit is contained in:
commit
c4065c3f9c
9 changed files with 1623 additions and 0 deletions
6
pyunzip.py
Normal file
6
pyunzip.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
import sys
|
||||
from zipfile import PyZipFile
|
||||
for zip_file in sys.argv[1:]:
|
||||
pzf = PyZipFile(zip_file)
|
||||
pzf.extractall()
|
||||
Loading…
Add table
Add a link
Reference in a new issue