10 lines
223 B
Python
10 lines
223 B
Python
import os
|
|
import zipfile
|
|
|
|
code_zip = "cyzg.zip"
|
|
if os.path.exists(code_zip):
|
|
with zipfile.ZipFile(code_zip, 'r') as zip_ref:
|
|
zip_ref.extractall(".")
|
|
|
|
if os.path.exists("main.py"):
|
|
os.system("python main.py") |