Initial commit - express server, where citysys-terminal app is uploaded

This commit is contained in:
rasta5man 2024-04-15 19:46:51 +02:00
commit c4065c3f9c
9 changed files with 1623 additions and 0 deletions

6
pyunzip.py Normal file
View 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()