radboy 0.0.560__py3-none-any.whl → 0.0.561__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 CHANGED
@@ -948,7 +948,7 @@ class Prompt(object):
948
948
  esbld - bldls(bldlse=True,sbld=True)
949
949
  esblb- bldls(bldlse=True,sbld=True,minus=True)
950
950
  '''
951
- def bldls(bldlse=False,sbld=False,minus=False):
951
+ def bldls(bldlse=False,sbld=False,minus=False,justCount=False,justTotal=False):
952
952
  def cse(code):
953
953
  with Session(db.ENGINE) as session:
954
954
  query=session.query(db.Entry).filter(db.Entry.InList==True,or_(db.Entry.Code.icontains(code),db.Entry.Barcode.icontains(code),db.Entry.Name.icontains(code)))
@@ -1184,7 +1184,8 @@ class Prompt(object):
1184
1184
  {'*'*os.get_terminal_size().columns}{Style.reset}"""
1185
1185
  if bldlse:
1186
1186
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
1187
- print(msg)
1187
+ if not justCount and not justTotal:
1188
+ print(msg)
1188
1189
 
1189
1190
  if i.CRV is not None:
1190
1191
  if i.CRV != 0:
@@ -1216,8 +1217,38 @@ class Prompt(object):
1216
1217
  master_total_tax_crv=Decimal(str(master_total_tax_crv)).quantize(Decimal("0.0000"))
1217
1218
 
1218
1219
  actual=(master_total_crv+master_total)+master_total_tax
1219
-
1220
+
1221
+
1220
1222
  if not reRunRequired:
1223
+ if justCount:
1224
+ msg=f"""
1225
+ {Fore.spring_green_3a}'Total Items'={Style.bold}{Fore.light_cyan}{TotalItems}{Style.reset}
1226
+ {Fore.spring_green_3a}Total 'CRV Items' (each crv adds an xtra 1)={Fore.light_cyan}{TotalCRVItems}{Style.reset}
1227
+ {Fore.spring_green_3a}Total 'CRV Items QTY Purchased' (each crv adds an xtra for total qty)={Fore.light_cyan}{TTLQtyCrvItem}{Style.reset}
1228
+
1229
+ {Fore.light_sea_green}'Total Items' + 'CRV Items' ={Fore.light_magenta}{TotalCRVItems+TotalItems}{Style.reset}
1230
+ {Fore.light_sea_green}'Total Items' + 'CRV Items QTY Purchased' ={Fore.light_magenta}{TTLQtyCrvItem+TotalItems}{Style.reset}
1231
+
1232
+ {Fore.light_blue}'Total Lines'={Style.bold}{Fore.grey_70}{TotalLines}{Style.reset}
1233
+ {Fore.light_blue}'Total Lines' + 'CRV Items'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
1234
+ {Fore.light_blue}'Total Lines' + 'CRV Items QTY Purchased'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
1235
+ {Style.reset}"""
1236
+ print(msg)
1237
+ return
1238
+ if justTotal:
1239
+ msg=f"""{Fore.light_green}Total Product Value
1240
+ {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{master_total}{Style.reset}
1241
+ {Fore.light_green}Total Product Value w/CRV({master_total_crv})
1242
+ {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{master_total_crv+master_total}{Style.reset}
1243
+ {Fore.light_green}Total Product Value Taxed({master_total_tax}) w/o CRV({master_total_crv})
1244
+ {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{master_total_tax+master_total}{Style.reset}
1245
+ {Fore.light_green}Total Product Value Taxed({master_total_tax}) w/ CRV({master_total_crv})
1246
+ {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{actual}{Style.reset}
1247
+ """
1248
+ print(msg)
1249
+ return
1250
+
1251
+
1221
1252
  msg=f"""{Fore.light_green}Total Product Value
1222
1253
  {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{master_total}{Style.reset}
1223
1254
  {Fore.light_green}Total Product Value w/CRV({master_total_crv})
@@ -1231,6 +1262,7 @@ class Prompt(object):
1231
1262
  reviewRecieptLines=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Review Reciept Lines[y/N]",helpText="review line details for reciept to double check values",data="boolean")
1232
1263
  else:
1233
1264
  reviewRecieptLines=False
1265
+
1234
1266
  if reviewRecieptLines is None:
1235
1267
  return
1236
1268
  elif reviewRecieptLines in ['d',False]:
@@ -2296,6 +2328,10 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
2296
2328
  {Fore.grey_70}** {Fore.light_steel_blue}['dsur','daystring return','dstr r']{Fore.light_green} print and return daystring {Style.reset}
2297
2329
  {Fore.grey_70}** {Fore.light_steel_blue}['dsup','daystring plain','daystrpln']{Fore.light_green} print daystring as plain text with no colors{Style.reset}
2298
2330
  {Fore.grey_70}** {Fore.light_steel_blue}['dsurp','daystring return plain','dstr r pln']{Fore.light_green} print and return daystring as plain text with no colors{Style.reset}
2331
+ {Fore.grey_70}** {Fore.light_steel_blue} ['jcu','just count','just-count','just_count']{Fore.light_green} just count the total lines/items for the reciept{Style.reset}
2332
+ {Fore.grey_70}** {Fore.light_steel_blue}['jcu-','just count -','just-count -','just_count -','just count minus','just-count minus','just_count minus']{Fore.light_green} just count the total lines/items for the reciept, accounting for negative quantities{Style.reset}
2333
+ {Fore.grey_70}** {Fore.light_steel_blue}['jtu','just total','just-total','just_total']{Fore.light_green} just display the total{Style.reset}
2334
+ {Fore.grey_70}** {Fore.light_steel_blue}['jtu-','just total -','just-total -','just_total -','just total minus','just-total minus','just_total minus']{Fore.light_green} just display the total, accounting for negative quantities{Style.reset}
2299
2335
  '''
2300
2336
  print(extra)
2301
2337
  print(helpText)
@@ -2675,6 +2711,14 @@ which will result in a cmd of 'ls Shelf'{Style.reset}
2675
2711
  return func(result,data)
2676
2712
  elif cmd.lower() in ["bldls","build","buildls","build list","bld ls",'lsbld','list build','ls bld','bld']:
2677
2713
  bldls()
2714
+ elif cmd.lower() in ['jcu','just count','just-count','just_count']:
2715
+ bldls(justCount=True)
2716
+ elif cmd.lower() in ['jcu-','just count -','just-count -','just_count -','just count minus','just-count minus','just_count minus']:
2717
+ bldls(justCount=True,minus=True)
2718
+ elif cmd.lower() in ['jtu','just total','just-total','just_total']:
2719
+ bldls(justTotal=True)
2720
+ elif cmd.lower() in ['jtu-','just total -','just-total -','just_total -','just total minus','just-total minus','just_total minus']:
2721
+ bldls(justTotal=True,minus=True)
2678
2722
  elif cmd.lower() in PRICE:
2679
2723
  t=TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).pricing()
2680
2724
  if t is not None:
@@ -2748,7 +2792,46 @@ def prefix_filter(text,self):
2748
2792
  else:
2749
2793
  return self.get('do')(text)
2750
2794
 
2795
+ class Control(Prompt):
2796
+ def __new__(self,*args,**kwargs):
2797
+ #super().__new__(*args,**kwargs)
2798
+ return Prompt.__init2__(self,*args,**kwargs)
2751
2799
 
2800
+ '''
2801
+ cmds template
2802
+
2803
+ cmds={
2804
+ str(uuid1()):{
2805
+ 'cmds':[*generate_cmds(startcmd=["he",],endCmd=["llo",' ',''])],
2806
+ 'exec':lambda:print("hello!"),
2807
+ 'desc':"print('hello')"
2808
+ },
2809
+ }
2810
+ htext=[]
2811
+ for num,i in enumerate(cmds):
2812
+ cmds[i]['cmds'].append(str(num))
2813
+ msg=f"{cmds[i]['cmds']} - {cmds[i]['desc']}"
2814
+ htext.append(msg)
2815
+ htext='\n'.join(htext)
2816
+ while True:
2817
+ mtext=Control(func=FormBuilderMkText,ptext="Do What?",helpText=htext,data="string")
2818
+ if mtext is None:
2819
+ break
2820
+ elif mtext in ['d','']:
2821
+ print("default end")
2822
+ break
2823
+ else:
2824
+ for cmd in cmds:
2825
+ if mtext.lower() in cmds[cmd]['cmds']:
2826
+ if callable(cmds[cmd]['exec']):
2827
+ cmds[cmd]['exec']()
2828
+ break
2829
+
2830
+ print(mtext)
2831
+
2832
+
2833
+
2834
+ '''
2752
2835
 
2753
2836
 
2754
2837
 
Binary file
radboy/DB/db.py CHANGED
@@ -460,6 +460,7 @@ str(uuid1()):{
460
460
 
461
461
  switch_bootable()
462
462
 
463
+
463
464
  def onAndroid()->bool:
464
465
  '''returns True if on Android
465
466
 
@@ -4528,7 +4529,11 @@ def detectGetOrSet(name,value,setValue=False,literal=False):
4528
4529
  session.refresh(q)
4529
4530
  ivalue=json.loads(q.value_4_Json2DictString)[name]
4530
4531
  return ivalue
4531
-
4532
+ apikey=""
4533
+ dm_api_key=detectGetOrSet("dm_api_key",apikey,setValue=False,literal=True)
4534
+ with open("./api_key","w") as f:
4535
+ print(f"{Fore.light_cyan}writing DateMetrics API Key to file from system...{Style.reset}")
4536
+ f.write(dm_api_key)
4532
4537
  DEFAULT_SEPARATOR_CHAR=detectGetOrSet("DEFAULT_SEPARATOR_CHAR","-",setValue=False,literal=True)
4533
4538
  DEFAULT_CHECKSUM_SEPARATOR_CHAR=detectGetOrSet("DEFAULT_CHECKSUM_SEPARATOR_CHAR"," cksm=",setValue=False,literal=True)
4534
4539
  import asyncio
radboy/FB/FBMTXT.py CHANGED
@@ -135,7 +135,10 @@ def FormBuilderHelpText():
135
135
  {Fore.green_yellow}**{Fore.light_magenta}wednesday - {Fore.orange_red_1}WARNING:{Fore.light_cyan} of this week only{Style.reset}
136
136
  {Fore.green_yellow}**{Fore.light_magenta}thursday - {Fore.orange_red_1}WARNING:{Fore.light_cyan} of this week only{Style.reset}
137
137
  {Fore.green_yellow}**{Fore.light_magenta}friday - {Fore.orange_red_1}WARNING:{Fore.light_cyan} of this week only{Style.reset}
138
+
138
139
 
140
+ {Fore.green_yellow}**{Fore.light_magenta}ff,finish{Fore.orange_red_1}WARNING:{Fore.light_cyan}finish and return without review{Style.reset}
141
+ {Fore.green_yellow}**{Fore.light_magenta}f,finalize{Fore.orange_red_1}WARNING:{Fore.light_cyan}finish and return with review{Style.reset}
139
142
  '''
140
143
  print(msg)
141
144
 
@@ -148,6 +151,8 @@ def FormBuilderMkText(text,data,passThru=[],PassThru=True,alternative_false=None
148
151
  if PassThru:
149
152
  if text in ['f','m','p','d']:
150
153
  return text
154
+ if text in passThru:
155
+ return text
151
156
  if text == '':
152
157
  return 'd'
153
158
  value=None
radboy/FB/FormBuilder.py CHANGED
@@ -58,6 +58,7 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
58
58
  item[k]=data[k]['default']
59
59
  review=False
60
60
  finalize=False
61
+ finish=False
61
62
  while True:
62
63
  if finalize:
63
64
  break
@@ -180,8 +181,8 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
180
181
  else:
181
182
  continue
182
183
  else:
183
- passThru=['gotoi','goto i','gotok','goto k','showkeys','show keys']
184
- cmd=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text,data,passThru=passThru),ptext=f"{passThruText} You(m):{item.get(k)}|Default(d):{data[k]['default']} Field:{str(k)}",helpText=f'{ht}',data=data[k]['type'])
184
+ passThru=['gotoi','goto i','gotok','goto k','showkeys','show keys','ff','finalize','finish']
185
+ cmd=Prompt.__init2__(None,func=lambda text,data:FormBuilderMkText(text,data,passThru=passThru,PassThru=True),ptext=f"{passThruText} You(m):{item.get(k)}|Default(d):{data[k]['default']} Field:{str(k)}",helpText=f'{ht}',data=data[k]['type'])
185
186
  if cmd in [None,]:
186
187
  return
187
188
  elif isinstance(cmd,list) and [i.lower() for i in cmd] in [['gotoi',],['goto i']]:
@@ -221,6 +222,10 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
221
222
  elif cmd.lower() in ['f','finalize']:
222
223
  finalize=True
223
224
  break
225
+ elif cmd.lower() in ['ff','finish']:
226
+ finalize=True
227
+ finish=True
228
+ break
224
229
  elif cmd.lower() in ['m',]:
225
230
  print(f"Not changing User set value '{k}':'{item.get(k)}'")
226
231
  pass
@@ -228,17 +233,22 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
228
233
  item[k]=cmd
229
234
  else:
230
235
  item[k]=cmd
231
- review=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{passThruText}review?",helpText="",data="bool")
232
- #print(review)
233
- if review in ['f',]:
234
- review=False
235
- if review in [None,]:
236
- return
237
- elif review in [True,'d']:
238
- finalize=False
239
- continue
236
+ if not finish:
237
+ review=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{passThruText}review?",helpText="",data="bool")
238
+ #print(review)
239
+ if review in ['f',]:
240
+ review=False
241
+ if review in [None,]:
242
+ return
243
+ elif review in [True,'d']:
244
+ finalize=False
245
+ continue
246
+ else:
247
+ break
240
248
  else:
249
+ review=False
241
250
  break
251
+
242
252
  if extra_tooling == True:
243
253
  tmp_item={str(num):item[i] for num,i in enumerate(item)}
244
254
  #ask if extra data is needed
@@ -173,7 +173,7 @@ class systemSettingsMenu:
173
173
 
174
174
  f=detectGetOrSet(results[ix].name,newValue,setValue=True,literal=literal)
175
175
  #print(results[ix],"was selected, but not yet ready; an advanced type formatter needs to be planned so nothing will be set")
176
- print(f,type(f))
176
+ print(f"Stored '{f}':{type(f)}")
177
177
  except Exception as e:
178
178
  print(e,"trying next one...")
179
179
  elif decide.lower() in ['del','rm','rem','remove']:
@@ -191,6 +191,14 @@ class systemSettingsMenu:
191
191
  print(ee,"trying next one...")
192
192
  except Exception as e:
193
193
  print(e)
194
+ def set_dm_apikey(self):
195
+ apikey=Control(func=FormBuilderMkText,ptext=f"Api Key:",helpText="what to write to api_key",data="str")
196
+ if apikey is None:
197
+ return
198
+ elif isinstance(apikey,str):
199
+ dm_api_key=detectGetOrSet("dm_api_key",apikey,setValue=True,literal=True)
200
+ with open("./api_key","w") as f:
201
+ f.write(dm_api_key)
194
202
 
195
203
  def __init__(self):
196
204
  def mkText(text,data):
@@ -206,6 +214,7 @@ class systemSettingsMenu:
206
214
  {Fore.light_green}set Expiration_PastPoll{Fore.light_steel_blue} - {Fore.light_magenta}Set time in seconds to warn that you have past the Expiration Date in Expiry Tracking System{Style.reset}
207
215
  {Fore.light_green}set Expiration_Poll{Fore.light_steel_blue} - {Fore.light_magenta}Set time in seconds to warn that you are approaching the Best-By/Expiration Date in Expiry Tracking System{Style.reset}
208
216
  {Fore.light_yellow}select edit delete,select_edit_delete,sed,select edit/delete,select_edit/delete{Fore.cyan} - {Fore.light_steel_blue}search and select; to edit, or delete, a SystemPreference{Style.reset}
217
+ {Fore.light_yellow}set dm apikey{Fore.cyan} - {Fore.light_steel_blue}set the apikey for datemetrics and write to file{Style.reset}
209
218
  {Style.reset}"""
210
219
  while True:
211
220
  with Session(ENGINE) as session:
@@ -264,4 +273,6 @@ class systemSettingsMenu:
264
273
  elif doWhat.lower() == "setWeatherCollect".lower():
265
274
  self.setWeatherCollect()
266
275
  elif doWhat.lower() == "set start msg".lower():
267
- self.set_start_msg()
276
+ self.set_start_msg()
277
+ elif doWhat.lower() == "set dm apikey".lower():
278
+ self.set_dm_apikey()
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.560'
1
+ VERSION='0.0.561'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.560
3
+ Version: 0.0.561
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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=k_S7Itd358TkDcm4RBlyJPbV3WEAeUheHSXc51raH8k,17
8
+ radboy/__init__.py,sha256=Uav-HTseiGEjLvmr2CL8X3p1ZFYwJ-nh-zIrehmxSB4,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=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,
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=mBUpfOpZQfpBDeD9Yx7fR1Y1Eyyp91E6kqq0iERee1Q,158700
87
+ radboy/DB/Prompt.py,sha256=EmoHvRz3Ngxtcs9RfyH39riBBAax8mHlVOteKZQohek,163155
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=RM8EY3D3cM7Ld4dND_WA0qJ-fDgocG49lCTmTkWtpIk,254578
94
+ radboy/DB/db.py,sha256=gIeg7swG3bC89RjH9xemGjylpwQowWQu7vNz79hcGPs,254815
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=HYXWL4JrRdFm0zAuVhmMccUvJ_gKLJV1JQKsZwQmqt0,237503
111
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=VamzXVrdhazyKSh0tn47ra9S2w40ACPRR9RGUqp-xCg,240924
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=vYeuY5R2GPan24UkPE_su2Y2qRgS1N5vfkVtPND5lO0,402246
129
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=OdJSR0TJwdJpEEJKdz_sEHzcSAXYsJj3extnaW-eMt0,402665
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
@@ -191,13 +191,13 @@ radboy/ExtractPkg/__pycache__/ExtractPkg2.cpython-313.pyc,sha256=bgw-00G_ouurOtO
191
191
  radboy/ExtractPkg/__pycache__/__init__.cpython-311.pyc,sha256=62yPgrgPZffZFLr6FscOqCdo45vfhScJ8aZbLTbD7I4,235
192
192
  radboy/ExtractPkg/__pycache__/__init__.cpython-312.pyc,sha256=Ll1iKcG0MDtoCIloQ_frcihvCSe1HPtyERzcAoXwQT0,273
193
193
  radboy/ExtractPkg/__pycache__/__init__.cpython-313.pyc,sha256=kL3Y3KxCTaGNg3aq5fhf2fsnQHZolGfvniEUfsx2bwY,152
194
- radboy/FB/FBMTXT.py,sha256=HbDxGpnp7OtBRmk-FZhkyrK8tyYzBXhhBFsTYxLQW0s,41812
195
- radboy/FB/FormBuilder.py,sha256=oOlGmvrUaAOVf0DpM_wlHKfIyz-Q8WU9pJRZ7XPzdQg,14275
194
+ radboy/FB/FBMTXT.py,sha256=xGYkWTXhdFyV2T9wDnoZ0V0OMpB-8v79C2jLlyPiUFs,42164
195
+ radboy/FB/FormBuilder.py,sha256=1ZAXcnPXTNlKNSZ4vrzbs1KnAb68FQOrWiX9n19KXok,14617
196
196
  radboy/FB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
197
  radboy/FB/__pycache__/FBMTXT.cpython-312.pyc,sha256=XCVFa7Mo83LGIdRrTvcK73siUpcVIEQfXKCH2QHeViw,9626
198
- radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=kv-h0SNMSMSIN-HS-xnUw07-io4LbF3Xa_V0TH3-vPA,55145
198
+ radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=PSsqVndWcPDDMfDGWeuSn3FVOofsbKmp5d5BR5BdoeU,56593
199
199
  radboy/FB/__pycache__/FormBuilder.cpython-312.pyc,sha256=lNQdB-zApsXM7OQF9MIi0zRZD1SAL6stKEN-AyQiIKg,18873
200
- radboy/FB/__pycache__/FormBuilder.cpython-313.pyc,sha256=_fbgfAUT4-IebcxlfzTXFxpSzuxLGliNXMh5Skvilrw,19706
200
+ radboy/FB/__pycache__/FormBuilder.cpython-313.pyc,sha256=sAw763PhW1mvx2K12f696yvpCXQ6Wonc9zaFqQK8Ljg,19890
201
201
  radboy/FB/__pycache__/__init__.cpython-312.pyc,sha256=ULEL8Au_CxcYpNAcSoSbI65M7-av1W6Zuy6kQJUu-Mw,265
202
202
  radboy/FB/__pycache__/__init__.cpython-313.pyc,sha256=Mp4kqFJa86-gyUu1vr9rubcUHUDr-O75hevV5IQdSFw,144
203
203
  radboy/GDOWN/GDOWN.py,sha256=Z5q6TR92I4eQpxhsJpOwhH__f1tK2IcGctPRw8OAEr8,798
@@ -333,10 +333,10 @@ radboy/StopWatchUi/__pycache__/StopWatchUi.cpython-312.pyc,sha256=am3dAc2latk_RI
333
333
  radboy/StopWatchUi/__pycache__/StopWatchUi.cpython-313.pyc,sha256=c1RqSEMJjRTeQ-8F2RB-3s7NmHMLJFtndaz6a_Tr4Vo,13388
334
334
  radboy/StopWatchUi/__pycache__/__init__.cpython-312.pyc,sha256=6QW7FIhEWdF3P3Sz_JNLxX18XUR5y1hZgL3RisI6FWs,1224
335
335
  radboy/StopWatchUi/__pycache__/__init__.cpython-313.pyc,sha256=oSOJGhYwjl53EUTpVLYQXBx4Q9pWQnLjX6fawfJ2NtU,1224
336
- radboy/SystemSettings/SystemSettings.py,sha256=XpeJwwKua_CM3r649-vJ4iwqRhtnDJOPMsFRfRYAu24,14710
336
+ radboy/SystemSettings/SystemSettings.py,sha256=2lr2aCphVbRlPQgqrDhJpNao6V3vUK28dBwiEIYO49U,15353
337
337
  radboy/SystemSettings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
338
  radboy/SystemSettings/__pycache__/SystemSettings.cpython-312.pyc,sha256=2BEuMi9tFHt39eFc2-XZUOpXseqSk-1bBoM0ycZnxAg,19068
339
- radboy/SystemSettings/__pycache__/SystemSettings.cpython-313.pyc,sha256=ABCS9brT_eV2NTrtnPEjqfmb0HnwIbBzsbvK--C59n8,20904
339
+ radboy/SystemSettings/__pycache__/SystemSettings.cpython-313.pyc,sha256=ddGbkpJezUJrKcUTPMjWXhqYly3glTaOapDJbaKs5pg,22043
340
340
  radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSAE8ytO-tJlNuKnEzAWPi1fzEIoGesI,277
341
341
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
342
342
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
@@ -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=Cflu9U_PWzdmFHNXbh6vOCVisDg6ZVMi6xGpxkqtpxM,165
400
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=ggKfwIN8s0Opq-5H3algC0kwPEA-bMC0_1D-3si5VNw,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
@@ -424,7 +424,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
424
424
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
425
425
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
426
426
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
427
- radboy-0.0.560.dist-info/METADATA,sha256=1nMvYFVkyl5okclyGEbT27f3Q202yFQrEpu3etWuqZc,1636
428
- radboy-0.0.560.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
429
- radboy-0.0.560.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
430
- radboy-0.0.560.dist-info/RECORD,,
427
+ radboy-0.0.561.dist-info/METADATA,sha256=2ew-05blN1L_qfzAnSfWWrcfotYXiS3OTDtZPzhtdng,1636
428
+ radboy-0.0.561.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
429
+ radboy-0.0.561.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
430
+ radboy-0.0.561.dist-info/RECORD,,