radboy 0.0.803__py3-none-any.whl → 0.0.805__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 CHANGED
@@ -1846,7 +1846,7 @@ Distress - ls Distress
1846
1846
  else:
1847
1847
  print(f"{Fore.light_red}{Style.bold}No such Barcode|Code with InList==True:{scanned}{Style.reset}\nLet's Try a Search[*]!")
1848
1848
  #search_auto_insert
1849
- idF=self.SearchAuto(InList=True,skipReturn=False)
1849
+ idF=self.SearchAuto(InList=True,skipReturn=False,use_search=use_search)
1850
1850
  if idF:
1851
1851
  result=session.query(Entry).filter(Entry.EntryId==idF).first()
1852
1852
  if result:
@@ -1924,7 +1924,9 @@ Distress - ls Distress
1924
1924
  print(f"{numColor}{num}{Style.reset} -> {color1}{result.Name}{Style.reset}|{color2}{result.rebar()}|{result.ALT_Barcode}{Style.reset}|{color3}{result.cfmt(result.Code)}{Style.reset}|{color4}{getattr(result,fieldname)}{Style.reset}|{eidColor}{getattr(result,'EntryId')}{Style.reset}")
1925
1925
  print(f"{m}\n{hr}")
1926
1926
 
1927
- def SearchAuto(self,InList=None,skipReturn=False):
1927
+ def SearchAuto(self,InList=None,skipReturn=False,use_search=True):
1928
+ if not use_search:
1929
+ return
1928
1930
  state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1929
1931
  while True:
1930
1932
  try:
@@ -3117,15 +3119,18 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3117
3119
  barcode_might_be_number=detectGetOrSet("list maker might be a number default",False,setValue=False,literal=False)
3118
3120
  new_image=detectGetOrSet("list maker new item new image default",False,setValue=False,literal=False)
3119
3121
  ask_taxes=detectGetOrSet("list maker new item taxes default",False,setValue=False,literal=False)
3120
-
3122
+ use_search=detectGetOrSet("list maker new item search default",False,setValue=False,literal=False)
3123
+ one_shot=detectGetOrSet("list maker one shot default",False,setValue=False,literal=False)
3121
3124
  auto_text=f" [a,auto] use current settings and set defaults for any unset settings from system storage."
3122
3125
  m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3123
3126
  #names that are not always necessary
3124
3127
  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")
3128
+ use_name=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3129
  if use_name in [None,]:
3127
3130
  return
3128
- elif use_name in ['a','auto']:
3131
+ elif use_name in ["auto","a","o","oneshot","1shot"]:
3132
+ if use_name in ["o","oneshot","1shot"]:
3133
+ one_shot=True
3129
3134
  auto=True
3130
3135
  elif use_name in [False,]:
3131
3136
  use_name=False
@@ -3134,28 +3139,49 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3134
3139
 
3135
3140
 
3136
3141
 
3142
+
3137
3143
  if not auto:
3138
3144
  ready+=1
3139
3145
  m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3140
3146
  #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")
3147
+ use_code=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3148
  if use_code in [None,]:
3143
3149
  return
3144
- elif use_code in ['a','auto']:
3150
+ elif use_code in ["auto","a","o","oneshot","1shot"]:
3151
+ if use_code in ["o","oneshot","1shot"]:
3152
+ one_shot=True
3145
3153
  auto=True
3146
3154
  elif use_code in ['d',False,]:
3147
3155
  use_code=False
3148
3156
  else:
3149
3157
  use_code=True
3150
3158
 
3159
+ if not auto:
3160
+ ready+=1
3161
+ m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3162
+ #extras that are not always necessary
3163
+ use_search=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],PassThru=True),ptext=f"{m}ask to search for {Fore.cyan}Entry{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")
3164
+ if use_search in [None,]:
3165
+ return
3166
+ elif use_search in ["auto","a","o","oneshot","1shot"]:
3167
+ if use_search in ["o","oneshot","1shot"]:
3168
+ one_shot=True
3169
+ auto=True
3170
+ elif use_search in ['d',False,]:
3171
+ use_search=False
3172
+ else:
3173
+ use_search=True
3174
+
3151
3175
  if not auto:
3152
3176
  ready+=1
3153
3177
  m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3154
3178
  #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")
3179
+ use_casecount=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3180
  if use_casecount in [None,]:
3157
3181
  return
3158
- elif use_casecount in ['a','auto']:
3182
+ elif use_casecount in ["auto","a","o","oneshot","1shot"]:
3183
+ if use_casecount in ["o","oneshot","1shot"]:
3184
+ one_shot=True
3159
3185
  auto=True
3160
3186
  elif use_casecount in ['d',False]:
3161
3187
  use_casecount=False
@@ -3166,10 +3192,12 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3166
3192
  ready+=1
3167
3193
  m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3168
3194
  #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")
3195
+ use_price=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3196
  if use_price in [None,]:
3171
3197
  return
3172
- elif use_price in ['a','auto']:
3198
+ elif use_price in ["auto","a","o","oneshot","1shot"]:
3199
+ if use_price in ["o","oneshot","1shot"]:
3200
+ one_shot=True
3173
3201
  auto=True
3174
3202
  elif use_price in [False,]:
3175
3203
  use_price=False
@@ -3180,10 +3208,12 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3180
3208
  ready+=1
3181
3209
  m=f'{Fore.orange_red_1}INIT({ready}){Fore.light_yellow} -> '
3182
3210
  #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")
3211
+ use_notes=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3212
  if use_notes in [None,]:
3185
3213
  return
3186
- elif use_notes in ['a','auto']:
3214
+ elif use_notes in ["auto","a","o","oneshot","1shot"]:
3215
+ if use_notes in ["o","oneshot","1shot"]:
3216
+ one_shot=True
3187
3217
  auto=True
3188
3218
  elif use_notes in ['d',False]:
3189
3219
  use_notes=False
@@ -3193,11 +3223,13 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3193
3223
  if not auto:
3194
3224
  ready+=1
3195
3225
  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")
3226
+ default_quantity_action=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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")
3197
3227
 
3198
3228
  if default_quantity_action in [None,]:
3199
3229
  return
3200
- elif default_quantity_action in ['a','auto']:
3230
+ elif default_quantity_action in ["auto","a","o","oneshot","1shot"]:
3231
+ if default_quantity_action in ["o","oneshot","1shot"]:
3232
+ one_shot=True
3201
3233
  auto=True
3202
3234
  elif default_quantity_action in ['d',]:
3203
3235
  default_quantity_action=1
@@ -3205,10 +3237,12 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3205
3237
  if not auto:
3206
3238
  ready+=1
3207
3239
  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")
3240
+ barcode_might_be_number=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3241
  if barcode_might_be_number in [None,]:
3210
3242
  return
3211
- elif barcode_might_be_number in ['a','auto']:
3243
+ elif barcode_might_be_number in ["auto","a","o","oneshot","1shot"]:
3244
+ if barcode_might_be_number in ["o","oneshot","1shot"]:
3245
+ one_shot=True
3212
3246
  auto=True
3213
3247
  elif barcode_might_be_number in ['d',False]:
3214
3248
  barcode_might_be_number=False
@@ -3218,10 +3252,12 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3218
3252
  if not auto:
3219
3253
  ready+=1
3220
3254
  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")
3255
+ new_image=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3256
  if new_image in [None,]:
3223
3257
  return
3224
- elif new_image in ['a','auto']:
3258
+ elif new_image in ["auto","a","o","oneshot","1shot"]:
3259
+ if new_image in ["o","oneshot","1shot"]:
3260
+ one_shot=True
3225
3261
  auto=True
3226
3262
  elif new_image in ['d',False]:
3227
3263
  new_image=False
@@ -3231,10 +3267,12 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3231
3267
  if not auto:
3232
3268
  ready+=1
3233
3269
  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")
3270
+ ask_taxes=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text=text,data=data,passThru=["auto","a","o","oneshot","1shot"],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
3271
  if ask_taxes in [None,]:
3236
3272
  return
3237
- elif ask_taxes in ['a','auto']:
3273
+ elif ask_taxes in ["auto","a","o","oneshot","1shot"]:
3274
+ if ask_taxes in ["o","oneshot","1shot"]:
3275
+ one_shot=True
3238
3276
  auto=True
3239
3277
  elif ask_taxes in ['d',False,]:
3240
3278
  ask_taxes=False
@@ -3946,7 +3984,11 @@ Location Fields:
3946
3984
  ptext=f'''{hafnhaf}
3947
3985
  {Fore.light_red}Enter {Style.bold}{Style.underline}{Fore.orange_red_1}Quantity/Formula{Style.reset} amount|+amount|-amount|a,+a,-a(advanced)|r,+r,-r(ReParseFormula) (Enter==1)|{Fore.light_green}ipcv={Fore.dark_goldenrod}PalletCount-value[{Fore.light_steel_blue}:-){Fore.dark_goldenrod}]|{Fore.light_green}iscv={Fore.dark_goldenrod}ShelfCount-value[{Fore.light_steel_blue}:-(){Fore.dark_goldenrod}]|{Fore.light_green}ilcv={Fore.dark_goldenrod}LoadCount-value[{Fore.light_steel_blue};-){Fore.dark_goldenrod}]|{Fore.light_green}iccv={Fore.dark_goldenrod}CaseCount-value[{Fore.light_steel_blue}:-P{Fore.dark_goldenrod}]|{Fore.light_green}ipcvc{Fore.dark_goldenrod}=(PalletCount-value)/CaseCount[{Fore.light_steel_blue}:-D{Fore.dark_goldenrod}]|{Fore.light_green}iscvc{Fore.dark_goldenrod}=(ShelfCount-value)/CaseCount[{Fore.light_steel_blue}:-|{Fore.dark_goldenrod}]|{Fore.light_green}ilcvc{Fore.dark_goldenrod}=(LoadCount-value)/CaseCount[{Fore.light_steel_blue}:-*{Fore.dark_goldenrod}]|{Fore.light_green}iccvc{Fore.dark_goldenrod}=(CaseCount-value)/CaseCount[{Fore.light_steel_blue}:O{Fore.dark_goldenrod}]{Style.reset}'''
3948
3986
 
3949
- p=Prompt.__init2__(None,func=mkT,ptext=f"{ptext}",helpText=self.helpText_barcodes.replace('#CODE#',code_log),data=code,qc=lambda self=self,code=code:self.NewEntryMenu(code=code),replace_ptext=lambda result=result,fieldname=fieldname,code=code:hnf(resultx=result,fieldname=fieldname,code=code))
3987
+ if not one_shot:
3988
+ p=Prompt.__init2__(None,func=mkT,ptext=f"{ptext}",helpText=self.helpText_barcodes.replace('#CODE#',code_log),data=code,qc=lambda self=self,code=code:self.NewEntryMenu(code=code),replace_ptext=lambda result=result,fieldname=fieldname,code=code:hnf(resultx=result,fieldname=fieldname,code=code))
3989
+ else:
3990
+ p=int(detectGetOrSet("list maker oneshot qty dflt",1,setValue=False,literal=False)),f'+{detectGetOrSet("list maker oneshot qty dflt",1,setValue=False,literal=False)}',''
3991
+ #float(1),text,''
3950
3992
  if self.next_barcode():
3951
3993
  continue
3952
3994
  if p in [None,]:
@@ -3997,7 +4039,7 @@ Location Fields:
3997
4039
  print(self.entrySepEnd.replace('#REPLACE#',f'{code}@{fieldname}'))
3998
4040
  else:
3999
4041
  if only_select_qty:
4000
- replacement=self.SearchAuto()
4042
+ replacement=self.SearchAuto(use_search=use_search)
4001
4043
  else:
4002
4044
  replacement=None
4003
4045
 
@@ -4098,7 +4140,7 @@ Location Fields:
4098
4140
 
4099
4141
  else:
4100
4142
  if only_select_qty:
4101
- replacement=self.SearchAuto()
4143
+ replacement=self.SearchAuto(use_search=use_search)
4102
4144
  if self.next_barcode():
4103
4145
  continue
4104
4146
  else:
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.803'
1
+ VERSION='0.0.805'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.803
3
+ Version: 0.0.805
4
4
  Summary: A Retail Calculator for Android/Linux
5
5
  Author: Carl Joseph Hirner III
6
6
  Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
@@ -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=mnzfBDBWaEILxbw3uUaF1kjT339bCKVYUA2qw0oNEU8,17
8
+ radboy/__init__.py,sha256=VfXUUac4DDWHzQxeOSBDjRr2OLECazoP9FvsxQAXRd8,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=bcEiQnVc1JkKyYSFX-8GeOgn_1yriksnZf6DLmxEals,376315
359
+ radboy/TasksMode/Tasks.py,sha256=y0UoGrjExWL5dtLKrfO0uyZIDo3m98x5MuQXhxWDwFw,379215
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=LujrUylwj_l8pSvxjDxh9zNgJO3FP4uI97pX0xxuMLA,450930
368
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=S4LvdfNXiR48BIga4PxQmhU1-q7SImnqCCCaBSOwq38,452608
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=u-78SkoCLk7tY9msvvFgO7s6bQsStM_ZXaFPAyihieo,165
415
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=I0XtOaHrDz0aSrVoC8ojOd8O-g27IEoleDJH0WNjy1c,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.803.dist-info/METADATA,sha256=bS5Hgo-8ZmsAkX4kKeIftvMt2hj_vjRi_XJHNW_M4SA,1920
444
- radboy-0.0.803.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
445
- radboy-0.0.803.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
446
- radboy-0.0.803.dist-info/RECORD,,
443
+ radboy-0.0.805.dist-info/METADATA,sha256=8heFmsfbwdN41C01J75CZTfBmZqBv4t2cIpHGo8uZEk,1920
444
+ radboy-0.0.805.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
445
+ radboy-0.0.805.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
446
+ radboy-0.0.805.dist-info/RECORD,,