radboy 0.0.800__py3-none-any.whl → 0.0.802__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/TasksMode/Tasks.py +124 -83
- 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.800.dist-info → radboy-0.0.802.dist-info}/METADATA +1 -1
- {radboy-0.0.800.dist-info → radboy-0.0.802.dist-info}/RECORD +8 -8
- {radboy-0.0.800.dist-info → radboy-0.0.802.dist-info}/WHEEL +0 -0
- {radboy-0.0.800.dist-info → radboy-0.0.802.dist-info}/top_level.txt +0 -0
radboy/TasksMode/Tasks.py
CHANGED
|
@@ -3107,98 +3107,139 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
|
|
|
3107
3107
|
return ptext
|
|
3108
3108
|
ready=0
|
|
3109
3109
|
#ready+=1
|
|
3110
|
+
auto=detectGetOrSet("list maker auto default",False,setValue=False,literal=False)
|
|
3111
|
+
use_code=detectGetOrSet("list maker use code default",False,setValue=False,literal=False)
|
|
3112
|
+
use_casecount=detectGetOrSet("list maker use casecount default",False,setValue=False,literal=False)
|
|
3113
|
+
use_price=detectGetOrSet("list maker use price default",True,setValue=False,literal=False)
|
|
3114
|
+
use_name=detectGetOrSet("list maker use name default",True,setValue=False,literal=False)
|
|
3115
|
+
use_notes=detectGetOrSet("list maker use notes default",True,setValue=False,literal=False)
|
|
3116
|
+
default_quantity_action=detectGetOrSet("list maker default qty",1,setValue=False,literal=False)
|
|
3117
|
+
barcode_might_be_number=detectGetOrSet("list maker might be a number default",False,setValue=False,literal=False)
|
|
3118
|
+
new_image=detectGetOrSet("list maker new item new image default",False,setValue=False,literal=False)
|
|
3119
|
+
ask_taxes=detectGetOrSet("list maker new item taxes default",False,setValue=False,literal=False)
|
|
3120
|
+
|
|
3121
|
+
auto_text=f" [a,auto] use current settings and set defaults for any unset settings from system storage."
|
|
3110
3122
|
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3111
3123
|
#names that are not always necessary
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
use_name
|
|
3117
|
-
|
|
3118
|
-
use_name
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
#extras that are not always necessary
|
|
3123
|
-
use_code=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{m}Ask for Entry {Fore.cyan}Codes{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3124
|
-
if use_code in [None,]:
|
|
3125
|
-
return
|
|
3126
|
-
elif use_code in ['d',False,]:
|
|
3127
|
-
use_code=False
|
|
3128
|
-
else:
|
|
3129
|
-
use_code=True
|
|
3130
|
-
|
|
3131
|
-
ready+=1
|
|
3132
|
-
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3133
|
-
#names that are not always necessary
|
|
3134
|
-
use_casecount=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{m}Ask for Entry {Fore.cyan}CaseCount{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3135
|
-
if use_casecount in [None,]:
|
|
3136
|
-
return
|
|
3137
|
-
elif use_casecount in ['d',False]:
|
|
3138
|
-
use_casecount=False
|
|
3139
|
-
else:
|
|
3140
|
-
use_casecount=True
|
|
3124
|
+
if not auto:
|
|
3125
|
+
use_name=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Ask for Entry {Fore.cyan}Name{Fore.light_yellow} For New Items? [y({Fore.orange_red_1}d=default{Fore.light_yellow})/N]",helpText=f"a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False; {auto_text}",data="boolean")
|
|
3126
|
+
if use_name in [None,]:
|
|
3127
|
+
return
|
|
3128
|
+
elif use_name in ['a','auto']:
|
|
3129
|
+
auto=True
|
|
3130
|
+
elif use_name in [False,]:
|
|
3131
|
+
use_name=False
|
|
3132
|
+
else:
|
|
3133
|
+
use_name=True
|
|
3141
3134
|
|
|
3142
|
-
ready+=1
|
|
3143
|
-
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3144
|
-
#extras that are not always necessary
|
|
3145
|
-
use_price=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{m}Ask for Entry {Fore.cyan}Price{Fore.light_yellow} For New Items? [y({Fore.orange_red_1}d=default{Fore.light_yellow})/N]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3146
|
-
if use_price in [None,]:
|
|
3147
|
-
return
|
|
3148
|
-
elif use_price in [False,]:
|
|
3149
|
-
use_price=False
|
|
3150
|
-
else:
|
|
3151
|
-
use_price=True
|
|
3152
3135
|
|
|
3153
|
-
ready+=1
|
|
3154
|
-
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3155
|
-
#extras that are not always necessary
|
|
3156
|
-
use_notes=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{m}Ask for Entry {Fore.cyan}Notes{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3157
|
-
if use_notes in [None,]:
|
|
3158
|
-
return
|
|
3159
|
-
elif use_notes in ['d',False]:
|
|
3160
|
-
use_notes=False
|
|
3161
|
-
else:
|
|
3162
|
-
use_notes=True
|
|
3163
3136
|
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3137
|
+
if not auto:
|
|
3138
|
+
ready+=1
|
|
3139
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3140
|
+
#extras that are not always necessary
|
|
3141
|
+
use_code=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Ask for Entry {Fore.cyan}Codes{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText=f"a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False; {auto_text}",data="boolean")
|
|
3142
|
+
if use_code in [None,]:
|
|
3143
|
+
return
|
|
3144
|
+
elif use_code in ['a','auto']:
|
|
3145
|
+
auto=True
|
|
3146
|
+
elif use_code in ['d',False,]:
|
|
3147
|
+
use_code=False
|
|
3148
|
+
else:
|
|
3149
|
+
use_code=True
|
|
3150
|
+
|
|
3151
|
+
if not auto:
|
|
3152
|
+
ready+=1
|
|
3153
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3154
|
+
#names that are not always necessary
|
|
3155
|
+
use_casecount=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Ask for Entry {Fore.cyan}CaseCount{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText=f"a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False; {auto_text}",data="boolean")
|
|
3156
|
+
if use_casecount in [None,]:
|
|
3157
|
+
return
|
|
3158
|
+
elif use_casecount in ['a','auto']:
|
|
3159
|
+
auto=True
|
|
3160
|
+
elif use_casecount in ['d',False]:
|
|
3161
|
+
use_casecount=False
|
|
3162
|
+
else:
|
|
3163
|
+
use_casecount=True
|
|
3164
|
+
|
|
3165
|
+
if not auto:
|
|
3166
|
+
ready+=1
|
|
3167
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3168
|
+
#extras that are not always necessary
|
|
3169
|
+
use_price=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Ask for Entry {Fore.cyan}Price{Fore.light_yellow} For New Items? [y({Fore.orange_red_1}d=default{Fore.light_yellow})/N]",helpText=f"a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False; {auto_text}",data="boolean")
|
|
3170
|
+
if use_price in [None,]:
|
|
3171
|
+
return
|
|
3172
|
+
elif use_price in ['a','auto']:
|
|
3173
|
+
auto=True
|
|
3174
|
+
elif use_price in [False,]:
|
|
3175
|
+
use_price=False
|
|
3176
|
+
else:
|
|
3177
|
+
use_price=True
|
|
3178
|
+
|
|
3179
|
+
if not auto:
|
|
3180
|
+
ready+=1
|
|
3181
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3182
|
+
#extras that are not always necessary
|
|
3183
|
+
use_notes=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Ask for Entry {Fore.cyan}Notes{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText=f"a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False; {auto_text}",data="boolean")
|
|
3184
|
+
if use_notes in [None,]:
|
|
3185
|
+
return
|
|
3186
|
+
elif use_notes in ['a','auto']:
|
|
3187
|
+
auto=True
|
|
3188
|
+
elif use_notes in ['d',False]:
|
|
3189
|
+
use_notes=False
|
|
3190
|
+
else:
|
|
3191
|
+
use_notes=True
|
|
3167
3192
|
|
|
3168
|
-
if
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
default_quantity_action=1
|
|
3193
|
+
if not auto:
|
|
3194
|
+
ready+=1
|
|
3195
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3196
|
+
default_quantity_action=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}Set The Default Quantity to the quantity retrieved + this value? 'd'=1",helpText="a positive(+) or Negative(-) integer.",data="float")
|
|
3172
3197
|
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3198
|
+
if default_quantity_action in [None,]:
|
|
3199
|
+
return
|
|
3200
|
+
elif default_quantity_action in ['a','auto']:
|
|
3201
|
+
auto=True
|
|
3202
|
+
elif default_quantity_action in ['d',]:
|
|
3203
|
+
default_quantity_action=1
|
|
3204
|
+
|
|
3205
|
+
if not auto:
|
|
3206
|
+
ready+=1
|
|
3207
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3208
|
+
barcode_might_be_number=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}might a barcode looking value be a number at Quantity Input [y/N]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3209
|
+
if barcode_might_be_number in [None,]:
|
|
3210
|
+
return
|
|
3211
|
+
elif barcode_might_be_number in ['a','auto']:
|
|
3212
|
+
auto=True
|
|
3213
|
+
elif barcode_might_be_number in ['d',False]:
|
|
3214
|
+
barcode_might_be_number=False
|
|
3215
|
+
else:
|
|
3216
|
+
barcode_might_be_number=True
|
|
3182
3217
|
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
new_image
|
|
3190
|
-
|
|
3191
|
-
new_image
|
|
3218
|
+
if not auto:
|
|
3219
|
+
ready+=1
|
|
3220
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3221
|
+
new_image=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}ask for new image path{Fore.light_yellow} For New Items? [y/N({Fore.orange_red_1}d=default{Fore.light_yellow})]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3222
|
+
if new_image in [None,]:
|
|
3223
|
+
return
|
|
3224
|
+
elif new_image in ['a','auto']:
|
|
3225
|
+
auto=True
|
|
3226
|
+
elif new_image in ['d',False]:
|
|
3227
|
+
new_image=False
|
|
3228
|
+
else:
|
|
3229
|
+
new_image=True
|
|
3192
3230
|
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
ask_taxes
|
|
3200
|
-
|
|
3201
|
-
ask_taxes
|
|
3231
|
+
if not auto:
|
|
3232
|
+
ready+=1
|
|
3233
|
+
m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
|
|
3234
|
+
ask_taxes=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a"],PassThru=True),ptext=f"{m}check if you want to fill out tax data{Fore.light_yellow} For New Items? [y({Fore.orange_red_1}d=default{Fore.light_yellow}/N)]",helpText="a boolean value from either of (0,f,n,no,false,False) or (1,t,true,True,yes,y) or formula that equates to a True or a False",data="boolean")
|
|
3235
|
+
if ask_taxes in [None,]:
|
|
3236
|
+
return
|
|
3237
|
+
elif ask_taxes in ['a','auto']:
|
|
3238
|
+
auto=True
|
|
3239
|
+
elif ask_taxes in ['d',False,]:
|
|
3240
|
+
ask_taxes=False
|
|
3241
|
+
else:
|
|
3242
|
+
ask_taxes=True
|
|
3202
3243
|
|
|
3203
3244
|
tmp_fieldname=fieldname
|
|
3204
3245
|
while True:
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.802'
|
|
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=h30zoTqt-XLt_afDPlxMxBiKKwmKi3N-yAuldNCqXUo,41476
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=8H6lvQedCbaNVos8TI1Wf_Ndi1UmwOVe5E6jhdMCzGk,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
|
|
@@ -356,7 +356,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
|
|
|
356
356
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
357
357
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
358
358
|
radboy/TasksMode/SetEntryNEU.py,sha256=mkV9zAZe0lfpu_3coMuIILEzh6PgCNi7g9lJ4yDUpYM,20596
|
|
359
|
-
radboy/TasksMode/Tasks.py,sha256=
|
|
359
|
+
radboy/TasksMode/Tasks.py,sha256=8AKq3CESvk4rfa95PQ2xBo8mxrwZi6weH-zJYK6-JmI,376314
|
|
360
360
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
361
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
362
362
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
@@ -365,7 +365,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
|
|
|
365
365
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=jMSrUX9pvEhf67uVwrPE2ZlBCems8V7tHJ1LcC15ovU,24603
|
|
366
366
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
367
367
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
368
|
-
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=
|
|
368
|
+
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=LujrUylwj_l8pSvxjDxh9zNgJO3FP4uI97pX0xxuMLA,450930
|
|
369
369
|
radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
|
|
370
370
|
radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
|
|
371
371
|
radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
|
|
@@ -412,7 +412,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
412
412
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
413
413
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
414
414
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
415
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
415
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=D_yBlDqyo1xSR8bnKuaYdHIU_5m-rzI0Fib6x8951ys,165
|
|
416
416
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
417
417
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
418
418
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -440,7 +440,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
440
440
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
441
441
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
442
442
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
443
|
-
radboy-0.0.
|
|
444
|
-
radboy-0.0.
|
|
445
|
-
radboy-0.0.
|
|
446
|
-
radboy-0.0.
|
|
443
|
+
radboy-0.0.802.dist-info/METADATA,sha256=ol-6dNjT5DsmqEJoxIj1TtQk80PlxOdBv3iHhfbEFmc,1920
|
|
444
|
+
radboy-0.0.802.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
445
|
+
radboy-0.0.802.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
446
|
+
radboy-0.0.802.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|