HubBasePE 0.0.1b1.dev2__tar.gz → 0.0.1b2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/PKG-INFO +2 -2
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/pyproject.toml +2 -2
- hubbasepe-0.0.1b1.dev2/src/HubBasePE/HubBasePE.py → hubbasepe-0.0.1b2/src/HubBasePE/Main.py +14 -12
- hubbasepe-0.0.1b2/tests/Test4.py +5 -0
- hubbasepe-0.0.1b1.dev2/tests/Test4.py +0 -1
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/LICENSE +0 -0
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/README.md +0 -0
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/src/HubBasePE/__init__.py +0 -0
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/tests/Test1.py +0 -0
- {hubbasepe-0.0.1b1.dev2 → hubbasepe-0.0.1b2}/tests/Test3.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: HubBasePE
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: HubBasePE – 2 new programs!!
|
|
3
|
+
Version: 0.0.1b2
|
|
4
|
+
Summary: HubBasePE – 2 new programs + all the original!!
|
|
5
5
|
Project-URL: Homepage, https://github.com/Voice659/HubBasePE
|
|
6
6
|
Project-URL: Issues, https://github.com/Voice659/HubBasePE/issues
|
|
7
7
|
Author-email: Voice659 <E.R.Fahretdinov@yandex.ru>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "HubBasePE"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.1b2"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="Voice659", email="E.R.Fahretdinov@yandex.ru" },
|
|
6
6
|
]
|
|
7
|
-
description = "HubBasePE – 2 new programs!!"
|
|
7
|
+
description = "HubBasePE – 2 new programs + all the original!!"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.9"
|
|
10
10
|
classifiers = [
|
|
@@ -3,12 +3,12 @@ import random
|
|
|
3
3
|
from turtle import *
|
|
4
4
|
|
|
5
5
|
def Enter(): #(13.03.2026)
|
|
6
|
-
VN = "a9.0
|
|
6
|
+
VN = "a9.1.0"
|
|
7
7
|
global VipAccess, PassGuess, AdminAccess
|
|
8
8
|
VipAccess = "F"
|
|
9
9
|
Password = str(1041)
|
|
10
10
|
PassGuess = 0
|
|
11
|
-
print("--- HubBase "+VN+" (
|
|
11
|
+
print("--- HubBase (base - "+VN+") (plus, Apr 22 2026, 18:33:15) ---")
|
|
12
12
|
while PassGuess != Password:
|
|
13
13
|
Num = input("Number = ")
|
|
14
14
|
Num2 = input("Number2 = ")
|
|
@@ -325,7 +325,6 @@ def Programm16(): #(15.04.2026)
|
|
|
325
325
|
Snowflake(size)
|
|
326
326
|
|
|
327
327
|
def ProgrammP1(): #T1
|
|
328
|
-
import random #(19.03.2026)
|
|
329
328
|
|
|
330
329
|
def Drift(): #(19.03.2026)
|
|
331
330
|
global x, y, z, a
|
|
@@ -448,6 +447,7 @@ def Start():
|
|
|
448
447
|
|
|
449
448
|
def Code():
|
|
450
449
|
global Stop, VipAccess
|
|
450
|
+
print("PE programms are enabled on default!")
|
|
451
451
|
TAEstate = "N" #(15.03.2026)
|
|
452
452
|
EPstate = "N"
|
|
453
453
|
if VipAccess == "T":
|
|
@@ -556,14 +556,10 @@ def Code():
|
|
|
556
556
|
else:
|
|
557
557
|
print("VipAccess = 'F'")
|
|
558
558
|
print("You shall not pass")
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
print("Restart №"+str(RA),"initialaizing")
|
|
564
|
-
Restart()
|
|
565
|
-
else:
|
|
566
|
-
print("A bug has occured!")
|
|
559
|
+
global RA
|
|
560
|
+
RestartAttempt = RestAtt = RA = int(RA) + 1
|
|
561
|
+
print("Restart №"+str(RA),"initialaizing")
|
|
562
|
+
Restart()
|
|
567
563
|
|
|
568
564
|
def Restart(): #(16.03.2026)
|
|
569
565
|
global E_C
|
|
@@ -618,7 +614,13 @@ def Restart(): #(16.03.2026)
|
|
|
618
614
|
elif PrStart == "16":
|
|
619
615
|
Programm16()
|
|
620
616
|
Restart()
|
|
617
|
+
elif PrStart == "P1":
|
|
618
|
+
ProgrammP1()
|
|
619
|
+
Restart()
|
|
620
|
+
elif PrStart == "P2":
|
|
621
|
+
ProgrammP2()
|
|
622
|
+
Restart()
|
|
621
623
|
else:
|
|
622
624
|
Code()
|
|
623
625
|
else:
|
|
624
|
-
pass
|
|
626
|
+
pass
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
print("Unloaded, sorry!")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|