We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ae9d91 commit e3aa361Copy full SHA for e3aa361
main.py
@@ -13,6 +13,10 @@
13
14
# watch setup video if you need help https://www.youtube.com/watch?v=L2eAQOmuUiA
15
16
+if sys.version_info.minor < 10: # Python version check (Bypass Patch)
17
+ print("[Security] - Python 3.10 or higher is recommended. The bypass will not work on 3.10+")
18
+ print("You are using Python {}.{}".format(sys.version_info.major, sys.version_info.minor))
19
+
20
if platform.system() == 'Windows':
21
os.system('cls & title Python Example') # clear console, change title
22
elif platform.system() == 'Linux':
0 commit comments