This commit is contained in:
2025-08-21 13:43:42 +08:00
parent 84ffd021a2
commit eb20c59347
6 changed files with 162 additions and 3 deletions

10
init.py Normal file
View File

@@ -0,0 +1,10 @@
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")