radboy 0.0.521__py3-none-any.whl → 0.0.524__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/Prompt.py +14 -3
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/DB/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +4 -5
- radboy/TasksMode/Tasks.py +23 -8
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc +0 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.521.dist-info → radboy-0.0.524.dist-info}/METADATA +1 -1
- {radboy-0.0.521.dist-info → radboy-0.0.524.dist-info}/RECORD +12 -12
- {radboy-0.0.521.dist-info → radboy-0.0.524.dist-info}/WHEEL +0 -0
- {radboy-0.0.521.dist-info → radboy-0.0.524.dist-info}/top_level.txt +0 -0
radboy/DB/Prompt.py
CHANGED
|
@@ -49,7 +49,7 @@ except Exception as e:
|
|
|
49
49
|
ru_maxrss=0
|
|
50
50
|
return use()
|
|
51
51
|
|
|
52
|
-
def timedout(ptext,htext=''):
|
|
52
|
+
def timedout(ptext,htext='',timeout_returnable="timeout"):
|
|
53
53
|
try:
|
|
54
54
|
while True:
|
|
55
55
|
t=db.BooleanAnswers.timeout
|
|
@@ -61,13 +61,24 @@ def timedout(ptext,htext=''):
|
|
|
61
61
|
if user_input in ['fb','fastboot']:
|
|
62
62
|
db.BooleanAnswers.timeout=0
|
|
63
63
|
return ''
|
|
64
|
-
|
|
64
|
+
if user_input in ['fba','fastboot-auto']:
|
|
65
|
+
db.BooleanAnswers.timeout=0
|
|
66
|
+
return 'autoboot'
|
|
67
|
+
elif user_input in ['lb','longboot']:
|
|
65
68
|
db.BooleanAnswers.timeout=db.BooleanAnswers.long_boot_time
|
|
66
69
|
continue
|
|
70
|
+
elif user_input in ['to','timeout']:
|
|
71
|
+
timeout = inputimeout(prompt=f"{db.BooleanAnswers.timeout_msg}{htext}\nSet Your Custom Timeout({t} Seconds Passed='timeout' returned from {past.strftime("%I:%M:%S %p(12H)/%H:%M:%S(24H)")}):", timeout=t)
|
|
72
|
+
try:
|
|
73
|
+
db.BooleanAnswers.timeout=float(timeout)
|
|
74
|
+
except Exception as e:
|
|
75
|
+
db.BooleanAnswers.timeout=db.BooleanAnswers.long_boot_time
|
|
76
|
+
continue
|
|
77
|
+
break
|
|
67
78
|
return user_input
|
|
68
79
|
except TimeoutOccurred:
|
|
69
80
|
print("Time's up! No input received.")
|
|
70
|
-
user_input =
|
|
81
|
+
user_input = timeout_returnable
|
|
71
82
|
return user_input
|
|
72
83
|
|
|
73
84
|
def orderList(l,inverse=False):
|
|
Binary file
|
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -169,16 +169,15 @@ str(uuid1()):{
|
|
|
169
169
|
|
|
170
170
|
while True:
|
|
171
171
|
#z=input("Boot CMDS:")
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
try:
|
|
175
|
-
|
|
172
|
+
try:
|
|
176
173
|
t=BooleanAnswers.timeout
|
|
177
174
|
past=datetime.now()
|
|
178
|
-
user_input =
|
|
175
|
+
user_input = timedout(f"Boot CMDS(timeout=autoboot from)",htext=BooleanAnswers.help)
|
|
176
|
+
#user_input = inputimeout(prompt=f"{BooleanAnswers.timeout_msg}Boot CMDS({t} Seconds Passed=autoboot from {past.strftime("%I:%M:%S %p(12H)/%H:%M:%S(24H)")}):", timeout=t)
|
|
179
177
|
print(f"You entered: {user_input}")
|
|
180
178
|
if user_input in ['fb','fastboot']:
|
|
181
179
|
BooleanAnswers.timeout=0
|
|
180
|
+
user_input="autoboot"
|
|
182
181
|
if user_input in ['longboot','lb']:
|
|
183
182
|
BooleanAnswers.timeout=BooleanAnswers.long_boot_time
|
|
184
183
|
continue
|
radboy/TasksMode/Tasks.py
CHANGED
|
@@ -316,6 +316,16 @@ def pricing(self):
|
|
|
316
316
|
result=tax_percent/100
|
|
317
317
|
return result
|
|
318
318
|
|
|
319
|
+
def invert_value():
|
|
320
|
+
result=None
|
|
321
|
+
value=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Value to Invert: ",helpText="make user provided value, or formula negative (value*-1='-value')",data="dec.dec")
|
|
322
|
+
if value is None:
|
|
323
|
+
return
|
|
324
|
+
elif value in ['d',]:
|
|
325
|
+
value=0
|
|
326
|
+
result=value*-1
|
|
327
|
+
return result
|
|
328
|
+
|
|
319
329
|
def beverage_PTCRV_base():
|
|
320
330
|
result=None
|
|
321
331
|
print('Beverage Total Price+Tax+CRV of Size')
|
|
@@ -554,46 +564,51 @@ def pricing(self):
|
|
|
554
564
|
|
|
555
565
|
|
|
556
566
|
options={
|
|
557
|
-
'
|
|
567
|
+
f'{uuid1()}':{
|
|
558
568
|
'cmds':['beverage price+tax+CRV','b-ptcrv',],
|
|
559
569
|
'desc':f'{Fore.light_yellow}beverage Price+Tax+CRV{Fore.medium_violet_red} asking for base questions like bottle size and qty to get total cost with tax{Style.reset}',
|
|
560
570
|
'exec':beverage_PTCRV_base
|
|
561
571
|
},
|
|
562
|
-
'
|
|
572
|
+
f'{uuid1()}':{
|
|
563
573
|
'cmds':['price+tax','p+t',],
|
|
564
574
|
'desc':f'{Fore.light_yellow}Price+Tax{Fore.medium_violet_red} asking questions like price and qty to get total cost with tax{Style.reset}',
|
|
565
575
|
'exec':price_tax
|
|
566
576
|
},
|
|
567
|
-
'
|
|
577
|
+
f'{uuid1()}':{
|
|
568
578
|
'cmds':['crvttl','crv total','crvtotal','crv_total',],
|
|
569
579
|
'desc':f'{Fore.light_yellow}total crv{Fore.medium_violet_red} asking questions like price and qty to get total crv{Style.reset}',
|
|
570
580
|
'exec':crv_total
|
|
571
581
|
},
|
|
572
|
-
'
|
|
582
|
+
f'{uuid1()}':{
|
|
573
583
|
'cmds':['tax+crv','t+c','tax crv',],
|
|
574
584
|
'desc':f'{Fore.light_yellow}tax+crv{Fore.medium_violet_red} asking questions like price and qty to get total crv{Style.reset}',
|
|
575
585
|
'exec':tax_with_crv
|
|
576
586
|
},
|
|
577
|
-
'
|
|
587
|
+
f'{uuid1()}':{
|
|
578
588
|
'cmds':['tax','tax no crv','tax 0 crv',],
|
|
579
589
|
'desc':f'{Fore.light_yellow}tax w/o crv{Fore.medium_violet_red} asking questions like price and qty to get total tax without crv{Style.reset}',
|
|
580
590
|
'exec':tax_no_crv
|
|
581
591
|
},
|
|
582
|
-
'
|
|
592
|
+
f'{uuid1()}':{
|
|
583
593
|
'cmds':['trfpt','tax_rate_from_price_and_tax','tax rate from price and tax','taxRateFromPriceAndTax',],
|
|
584
594
|
'desc':f'{Fore.light_yellow}tax rate{Fore.medium_violet_red} from price and tax as a decimal{Style.reset}',
|
|
585
595
|
'exec':tax_rate_from_priceAndTax
|
|
586
596
|
},
|
|
587
|
-
'
|
|
597
|
+
f'{uuid1()}':{
|
|
588
598
|
'cmds':['tax_rate_from_old_price_and_new_price','tax rate from old price and new price','taxRateFromOldPriceAndNewPrice','trfopnp',],
|
|
589
599
|
'desc':f'{Fore.light_yellow}tax rate{Fore.medium_violet_red} from old price and new price{Style.reset}',
|
|
590
600
|
'exec':tax_rate_from_oldPriceAndNewPrice
|
|
591
601
|
},
|
|
592
|
-
'
|
|
602
|
+
f'{uuid1()}':{
|
|
593
603
|
'cmds':['tax decimal','taxdecimal'],
|
|
594
604
|
'desc':f'{Fore.light_yellow}tax rate decimal{Fore.medium_violet_red} from percent{Style.reset}',
|
|
595
605
|
'exec':tax_rate_decimal
|
|
596
606
|
},
|
|
607
|
+
f'{uuid1()}':{
|
|
608
|
+
'cmds':['invert','-value','iv-val'],
|
|
609
|
+
'desc':f'{Fore.light_yellow}value{Fore.medium_violet_red}is multiplied by -1 to make inverse{Style.reset}',
|
|
610
|
+
'exec':invert_value
|
|
611
|
+
},
|
|
597
612
|
}
|
|
598
613
|
for num,i in enumerate(options):
|
|
599
614
|
options[i]['cmds'].append(str(num))
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.524'
|
|
Binary file
|
|
@@ -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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=rjEwS9h-qzoUckC0qHbc5dDJYUvi9EyiBNCTQi_zTv8,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
|
|
@@ -84,14 +84,14 @@ radboy/DB/ExerciseTracker.py,sha256=G4qHQcK27FJxQikD4msZmo29AIbv8pFmEkF54OwVIhA,
|
|
|
84
84
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
85
85
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
86
86
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
radboy/DB/Prompt.py,sha256=
|
|
87
|
+
radboy/DB/Prompt.py,sha256=jm_ICiz8wWP8QRJVi-zFh1PIGEneARjgViHeyThC-SI,151333
|
|
88
88
|
radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
|
|
89
89
|
radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
|
|
90
90
|
radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
|
|
91
91
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
92
92
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
93
93
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
94
|
-
radboy/DB/db.py,sha256=
|
|
94
|
+
radboy/DB/db.py,sha256=3WDpY2QhgebPZujFDQfnhYkIyu5YNBzUSscH9wkOPvw,247382
|
|
95
95
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
96
96
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
97
97
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
@@ -108,7 +108,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
|
|
|
108
108
|
radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
|
|
109
109
|
radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
|
|
110
110
|
radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
|
|
111
|
-
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=
|
|
111
|
+
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=3L4QIVEnK9454q-EVLyZ9FWN5stoI0dKlGCAGexmZiA,228889
|
|
112
112
|
radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
|
|
113
113
|
radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
|
|
114
114
|
radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
|
|
@@ -126,7 +126,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
126
126
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
127
127
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
128
128
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
129
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
129
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=c8R5luBXIkS9v8OJyUarinA6TvW8kXSZU0reFxxZta0,393305
|
|
130
130
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
131
131
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
132
132
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -341,7 +341,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
|
|
|
341
341
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
342
342
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
343
343
|
radboy/TasksMode/SetEntryNEU.py,sha256=Gu0Z677tjpc7-9AQtLbIr7yzPx6ZJXGK33lOIgU0IRM,17432
|
|
344
|
-
radboy/TasksMode/Tasks.py,sha256=
|
|
344
|
+
radboy/TasksMode/Tasks.py,sha256=gydEqL-bxuV9DLXgZeZaU9NJpybQ3jHl31R71MavXzo,328311
|
|
345
345
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
346
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
347
347
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
@@ -350,7 +350,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
|
|
|
350
350
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=UExwr8dN2STFEDE5t_YnQFMUX-wGv7JH10I1OyBDRtM,20212
|
|
351
351
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
352
352
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
353
|
-
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=
|
|
353
|
+
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=sXGS4fdoPWOXR2Z-1VwitMkMuotFt6Vy62_taiW0xb8,401414
|
|
354
354
|
radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
|
|
355
355
|
radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
|
|
356
356
|
radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
|
|
@@ -397,7 +397,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
397
397
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
398
398
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
399
399
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
400
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
400
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=yxNotK2WnFc9vhy3gbjz3vuJiMZnjkHTYEL1TFt2XPk,165
|
|
401
401
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
402
402
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
403
403
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -422,7 +422,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
422
422
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
423
423
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
424
424
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
425
|
-
radboy-0.0.
|
|
426
|
-
radboy-0.0.
|
|
427
|
-
radboy-0.0.
|
|
428
|
-
radboy-0.0.
|
|
425
|
+
radboy-0.0.524.dist-info/METADATA,sha256=JCf-JSX-QtpG_WvroTDuGaOgjaDJLvpDBeVkCIXdOmM,1615
|
|
426
|
+
radboy-0.0.524.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
427
|
+
radboy-0.0.524.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
428
|
+
radboy-0.0.524.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|