radboy 0.0.435__py3-none-any.whl → 0.0.437__py3-none-any.whl
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.
Potentially problematic release.
This version of radboy might be problematic. Click here for more details.
- radboy/DB/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +3 -3
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- radboy-0.0.437.dist-info/METADATA +57 -0
- {radboy-0.0.435.dist-info → radboy-0.0.437.dist-info}/RECORD +8 -8
- radboy-0.0.435.dist-info/METADATA +0 -25
- {radboy-0.0.435.dist-info → radboy-0.0.437.dist-info}/WHEEL +0 -0
- {radboy-0.0.435.dist-info → radboy-0.0.437.dist-info}/top_level.txt +0 -0
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -31,7 +31,7 @@ import holidays
|
|
|
31
31
|
import platform
|
|
32
32
|
from uuid import uuid1
|
|
33
33
|
import sys
|
|
34
|
-
|
|
34
|
+
from inputimeout import inputimeout, TimeoutOccurred
|
|
35
35
|
|
|
36
36
|
class switch_bootable:
|
|
37
37
|
'''Template Cmd
|
|
@@ -128,7 +128,7 @@ str(uuid1()):{
|
|
|
128
128
|
while True:
|
|
129
129
|
z=input("Boot CMDS:")
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
|
|
132
132
|
try:
|
|
133
133
|
t=15
|
|
134
134
|
past=datetime.now()
|
|
@@ -137,7 +137,7 @@ str(uuid1()):{
|
|
|
137
137
|
except TimeoutOccurred:
|
|
138
138
|
print("Time's up! No input received.")
|
|
139
139
|
user_input = "autoboot"
|
|
140
|
-
|
|
140
|
+
|
|
141
141
|
user_input=z
|
|
142
142
|
print(user_input)
|
|
143
143
|
doWhat=self.quick_parse(user_input,helptext=cmdhtext,no_dir_name=True)
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.437'
|
|
Binary file
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: radboy
|
|
3
|
+
Version: 0.0.437
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author: Carl Joseph Hirner III
|
|
6
|
+
Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://google.com
|
|
9
|
+
Project-URL: Issues, https://google.com
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: inputimeout
|
|
15
|
+
Requires-Dist: gdown
|
|
16
|
+
Requires-Dist: biip
|
|
17
|
+
Requires-Dist: sympy
|
|
18
|
+
Requires-Dist: scipy
|
|
19
|
+
Requires-Dist: plotext
|
|
20
|
+
Requires-Dist: haversine
|
|
21
|
+
Requires-Dist: holidays
|
|
22
|
+
Requires-Dist: odfpy
|
|
23
|
+
Requires-Dist: qrcode[pil]
|
|
24
|
+
Requires-Dist: chardet
|
|
25
|
+
Requires-Dist: nanoid
|
|
26
|
+
Requires-Dist: random-password-generator
|
|
27
|
+
Requires-Dist: cython
|
|
28
|
+
Requires-Dist: pint
|
|
29
|
+
Requires-Dist: pyupc-ean
|
|
30
|
+
Requires-Dist: openpyxl
|
|
31
|
+
Requires-Dist: plyer
|
|
32
|
+
Requires-Dist: colored
|
|
33
|
+
Requires-Dist: numpy
|
|
34
|
+
Requires-Dist: pandas
|
|
35
|
+
Requires-Dist: Pillow
|
|
36
|
+
Requires-Dist: python-barcode
|
|
37
|
+
Requires-Dist: qrcode
|
|
38
|
+
Requires-Dist: requests
|
|
39
|
+
Requires-Dist: sqlalchemy
|
|
40
|
+
Requires-Dist: argparse
|
|
41
|
+
Requires-Dist: geocoder
|
|
42
|
+
Requires-Dist: beautifulsoup4
|
|
43
|
+
Requires-Dist: pycryptodome
|
|
44
|
+
Requires-Dist: forecast_weather
|
|
45
|
+
Requires-Dist: boozelib
|
|
46
|
+
Dynamic: author
|
|
47
|
+
Dynamic: requires-python
|
|
48
|
+
|
|
49
|
+
to use this application at its simplest
|
|
50
|
+
|
|
51
|
+
`pip install radboy==$VERSION`
|
|
52
|
+
|
|
53
|
+
create a Run.py file and paste the following into it and save
|
|
54
|
+
`from radboy import Run`
|
|
55
|
+
|
|
56
|
+
for lookups to be made possible please explore the in-prompt help text as a populated data file is not yet ready for use comsumption.# Radboy
|
|
57
|
+
# Radboy
|
|
@@ -5,7 +5,7 @@ radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
|
|
|
5
5
|
radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
|
|
6
6
|
radboy/RecordMyCodes.py,sha256=0qFnt3gEk58-8S1uCmVBbtOItFJ0zp0Yt7RqXsF0ksY,41364
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=IhMCEH4Pxoe1TOKL_sDjvdyuuc4jtCnkRx5elT5sgOw,17
|
|
9
9
|
radboy/api_key,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
radboy/case-export-2024-05-14-13-10-00.672971.xlsx,sha256=Wd592d_VLFmfUI9KKKSVjNwjV91euc1T7ATyvwvUhlg,5431
|
|
11
11
|
radboy/case-export-2024-05-14-13-13-22.540614.xlsx,sha256=OnGrhmScHfGp_mVaWW-LNMsqrQgyZDpiU3wV-2s3U5Q,5556
|
|
@@ -90,7 +90,7 @@ radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,
|
|
|
90
90
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
91
91
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
92
92
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
93
|
-
radboy/DB/db.py,sha256=
|
|
93
|
+
radboy/DB/db.py,sha256=kkU3hT1EI91rSec807fL5sZ0vM7garvPIXqevCAmRAI,236187
|
|
94
94
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
95
95
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
96
96
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
@@ -125,7 +125,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
125
125
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
126
126
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
127
127
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
128
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
128
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=OMYh6TQbYG9D4JVhDLjWyeieMegtFmC990S5B3FRvRU,373744
|
|
129
129
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
130
130
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
131
131
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -390,7 +390,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
390
390
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
391
391
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
392
392
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
393
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
393
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=L4V9ylycuewwnErdI12SARIS1EqZF7n5mR0op3cBVls,165
|
|
394
394
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
395
395
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
396
396
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -415,7 +415,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
415
415
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
416
416
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
417
417
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
418
|
-
radboy-0.0.
|
|
419
|
-
radboy-0.0.
|
|
420
|
-
radboy-0.0.
|
|
421
|
-
radboy-0.0.
|
|
418
|
+
radboy-0.0.437.dist-info/METADATA,sha256=iC8YejD1a3ugvSeNDgGuHVCecZddJPbwD28GoHxLSWM,1574
|
|
419
|
+
radboy-0.0.437.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
420
|
+
radboy-0.0.437.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
421
|
+
radboy-0.0.437.dist-info/RECORD,,
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: radboy
|
|
3
|
-
Version: 0.0.435
|
|
4
|
-
Summary: A small example package
|
|
5
|
-
Author: Carl Joseph Hirner III
|
|
6
|
-
Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
|
|
7
|
-
License-Expression: MIT
|
|
8
|
-
Project-URL: Homepage, https://google.com
|
|
9
|
-
Project-URL: Issues, https://google.com
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python: >=3.6
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
Dynamic: author
|
|
15
|
-
Dynamic: requires-python
|
|
16
|
-
|
|
17
|
-
to use this application at its simplest
|
|
18
|
-
|
|
19
|
-
`pip install radboy==$VERSION`
|
|
20
|
-
|
|
21
|
-
create a Run.py file and paste the following into it and save
|
|
22
|
-
`from radboy import Run`
|
|
23
|
-
|
|
24
|
-
for lookups to be made possible please explore the in-prompt help text as a populated data file is not yet ready for use comsumption.# Radboy
|
|
25
|
-
# Radboy
|
|
File without changes
|
|
File without changes
|