ElectracyWrench 0.1.0__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.
- electracywrench-0.1.0/ElectracyWrench/__init__.py +66 -0
- electracywrench-0.1.0/ElectracyWrench.egg-info/PKG-INFO +27 -0
- electracywrench-0.1.0/ElectracyWrench.egg-info/SOURCES.txt +7 -0
- electracywrench-0.1.0/ElectracyWrench.egg-info/dependency_links.txt +1 -0
- electracywrench-0.1.0/ElectracyWrench.egg-info/top_level.txt +1 -0
- electracywrench-0.1.0/PKG-INFO +27 -0
- electracywrench-0.1.0/README.md +8 -0
- electracywrench-0.1.0/setup.cfg +4 -0
- electracywrench-0.1.0/setup.py +20 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Electracy is so sweet.
|
|
2
|
+
|
|
3
|
+
# I dont know but i like do comments, wait a minute...
|
|
4
|
+
"""
|
|
5
|
+
Electracy is so smartieeee
|
|
6
|
+
Electracy is so cutieeeeee
|
|
7
|
+
Electracy is well-built
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
def write(whatwrite, interval):
|
|
11
|
+
from time import sleep
|
|
12
|
+
for charindexed001 in whatwrite:
|
|
13
|
+
print(charindexed001, end='', flush=True)
|
|
14
|
+
sleep(interval)
|
|
15
|
+
def passwordpicked(length):
|
|
16
|
+
from random import randint
|
|
17
|
+
total_password = ""
|
|
18
|
+
for varnumbered001 in range(length):
|
|
19
|
+
while True:
|
|
20
|
+
numberofpass = randint(0, 9)
|
|
21
|
+
digit_string = str(numberofpass)
|
|
22
|
+
if digit_string not in total_password:
|
|
23
|
+
total_password += digit_string
|
|
24
|
+
break
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
return total_password
|
|
28
|
+
def input_int(inpinp):
|
|
29
|
+
from time import sleep
|
|
30
|
+
while True:
|
|
31
|
+
theclearinput = input(inpinp)
|
|
32
|
+
try:
|
|
33
|
+
initil = int(theclearinput)
|
|
34
|
+
break
|
|
35
|
+
except:
|
|
36
|
+
print("Alright, here we go again...")
|
|
37
|
+
sleep(0.3)
|
|
38
|
+
print("Welcome to the underground- oh, im sorry for singing To The Bone") # How was the fall? If you wanna look around - give us a call!
|
|
39
|
+
return initil
|
|
40
|
+
def loading_render(time):
|
|
41
|
+
from time import sleep
|
|
42
|
+
interval_local = time / 12
|
|
43
|
+
print("[", end='', flush=True)
|
|
44
|
+
for char in "████████████":
|
|
45
|
+
print(char, end='', flush=True)
|
|
46
|
+
sleep(interval_local)
|
|
47
|
+
print("]", end='', flush=True)
|
|
48
|
+
def file_readed(filename):
|
|
49
|
+
try:
|
|
50
|
+
with open(filename, "r", encoding="utf-8") as f:
|
|
51
|
+
out = f.read()
|
|
52
|
+
return out
|
|
53
|
+
except:
|
|
54
|
+
print(f"The {filename} is not exist") #F Strings yaaaaaaaaaaaaaay!
|
|
55
|
+
return "Not Exist"
|
|
56
|
+
def file_write(filename2, text_to_w): #Stop, filename2? THIS IS NULL FROM BALDI'S BASICS EDUCATION AND LEARNING REMASTERED!
|
|
57
|
+
try:
|
|
58
|
+
with open(filename2, "w", encoding="utf-8") as f:
|
|
59
|
+
f.write(text_to_w)
|
|
60
|
+
except Exception as error:
|
|
61
|
+
print(f"Cant write {filename2}, reason is {error}") #F Strings again y41 41 41 41 41 41 41 41 41y! #I added some hex!
|
|
62
|
+
def smart_log(message, level="INFO"):
|
|
63
|
+
from datetime import datetime
|
|
64
|
+
current_time = datetime.now().strftime("%H:%M:%S")
|
|
65
|
+
level = level.upper()
|
|
66
|
+
print(f"[{current_time}] [{level}] -> {message}")
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ElectracyWrench
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Electracy is so cutie, smartie, well-built girl, i hope she is okay now...
|
|
5
|
+
Home-page: https://github.com/sunzakh-bit/ElectracyWrench
|
|
6
|
+
Author: Jaljalissimo
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# ElectracyWrench 🔧
|
|
21
|
+
|
|
22
|
+
WOW ELECTRACY SO WOW!
|
|
23
|
+
|
|
24
|
+
## Installing
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install ElectracyWrench
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ElectracyWrench
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ElectracyWrench
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Electracy is so cutie, smartie, well-built girl, i hope she is okay now...
|
|
5
|
+
Home-page: https://github.com/sunzakh-bit/ElectracyWrench
|
|
6
|
+
Author: Jaljalissimo
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
# ElectracyWrench 🔧
|
|
21
|
+
|
|
22
|
+
WOW ELECTRACY SO WOW!
|
|
23
|
+
|
|
24
|
+
## Installing
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install ElectracyWrench
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="ElectracyWrench",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
include_package_data=True,
|
|
8
|
+
install_requires=[],
|
|
9
|
+
author="Jaljalissimo",
|
|
10
|
+
description="Electracy is so cutie, smartie, well-built girl, i hope she is okay now...",
|
|
11
|
+
long_description=open("README.md", encoding="utf-8").read(),
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
url="https://github.com/sunzakh-bit/ElectracyWrench",
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires='>=3.6',
|
|
20
|
+
)
|