radboy 0.0.353__py3-none-any.whl → 0.0.355__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
@@ -1644,6 +1644,14 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
1644
1644
  TSC.TouchStampC.TouchStampC(parent=self,engine=db.ENGINE)
1645
1645
  elif cmd.lower() in ['tvu','tag data']:
1646
1646
  pc.run(engine=db.ENGINE)
1647
+ elif cmd.lower() in ['exe','execute','x']:
1648
+ TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).executeInLine()
1649
+ continue
1650
+ elif cmd.lower() in ['exe-result','execute-result','xr']:
1651
+ return func(TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).getInLineResult(),str(text))
1652
+ elif cmd.lower() in ['exe-print','pxr','print exe result']:
1653
+ print(TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).getInLineResult())
1654
+ continue
1647
1655
  elif cmd.lower() in ['c','calc']:
1648
1656
  #if len(inspect.stack(0)) <= 6:
1649
1657
  TM.Tasks.TasksMode.evaluateFormula(None,fieldname="Prompt")
@@ -1806,10 +1814,34 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
1806
1814
  {Fore.grey_70}**{Fore.light_green}'fmbh','formbuilder help','form helptext'{Fore.light_steel_blue} print formbuilder helptext{Style.reset}
1807
1815
  {Fore.grey_70}**{Fore.light_green}'text2file'{Fore.light_steel_blue} dump input/returned text to file{Style.reset}
1808
1816
  {Fore.grey_70}**{Fore.light_green}'qc','quick change','q-c','q.c'{Fore.light_steel_blue} use the quick change menu {Fore.orange_red_1}if available{Style.reset}
1817
+ {Fore.grey_70}**{Fore.light_green}'exe','execute','x'{Fore.light_steel_blue} write an inline script and excute it, using {Fore.magenta}#ml#{Fore.light_steel_blue} if multi-line{Fore.orange_red_1}[if available] {Fore.grey_70}**{Fore.green_yellow}to save results for use later, use the function {Fore.light_sea_green}save(result){Fore.green_yellow} where result is the variable containing your result to be used elsewhere.{Style.reset}
1818
+ {Fore.grey_70}**{Fore.light_green}'exe-result','execute-result','xr'{Fore.light_steel_blue} return result from inline script save(){Style.reset}
1819
+ {Fore.grey_70}**{Fore.light_green}'exe-print','pxr','print exe result'{Fore.light_steel_blue} print result of inline script from save without returning{Style.reset}
1820
+ {Fore.grey_70}List Modes ONLY **{Fore.light_green}'rllo','reverse list lookup order'{Fore.light_green}Reverse the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
1821
+ {Fore.grey_70}List Modes ONLY **{Fore.light_green}'vllo','view list lookup order'{Fore.light_green}View the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
1809
1822
  '''
1810
1823
  print(extra)
1811
1824
  print(helpText)
1812
1825
  continue
1826
+ elif cmd.lower() in ['rllo','reverse list lookup order']:
1827
+ try:
1828
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1829
+ state=db.detectGetOrSet('list maker lookup order',not state,setValue=True,literal=False)
1830
+ except Exception as e:
1831
+ print(e)
1832
+ state=db.detectGetOrSet('list maker lookup order',True,setValue=True,literal=False)
1833
+ continue
1834
+ elif cmd.lower() in ['vllo','view list lookup order']:
1835
+ try:
1836
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1837
+ translate={True:"Ascending by Timestamp",False:"Descending by Timestamp"}
1838
+ print(f"{state} : {translate[state]}")
1839
+ except Exception as e:
1840
+ state=db.detectGetOrSet('list maker lookup order',True,setValue=True,literal=False)
1841
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
1842
+ translate={True:"Ascending by Timestamp",False:"Descending by Timestamp"}
1843
+ print(e)
1844
+ continue
1813
1845
  elif cmd.lower() in ['txt2fl','text2file','here2there','hr2thr']:
1814
1846
  outfile=Path(db.detectGetOrSet('text2file','TextOut.txt',setValue=False,literal=True))
1815
1847
  with open(outfile,'w') as x:
radboy/TasksMode/Tasks.py CHANGED
@@ -280,7 +280,23 @@ def TD(time_string):
280
280
  def td(time_string):
281
281
  return TD(time_string)
282
282
 
283
+
284
+ def save(value):
285
+ detectGetOrSet("InLineResult",value,setValue=True,literal=True)
286
+
287
+
288
+
283
289
  class TasksMode:
290
+ def getInLineResult(self):
291
+ return str(detectGetOrSet("InLineResult",None,setValue=False,literal=True))
292
+
293
+ def executeInLine(self):
294
+ text=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Formula :",helpText="text script, to save output for elsewhere send results through save()",data="string")
295
+ if text is None:
296
+ return
297
+ else:
298
+ exec(text)
299
+
284
300
  def prec_calc(self):
285
301
  text=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Formula :",helpText="text formula",data="decimal")
286
302
  if text is None:
@@ -825,6 +841,7 @@ Distress - ls Distress
825
841
  print(f"{m}\n{hr}")
826
842
 
827
843
  def SearchAuto(self,InList=None,skipReturn=False):
844
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
828
845
  while True:
829
846
  try:
830
847
  with Session(self.engine) as session:
@@ -846,7 +863,10 @@ Distress - ls Distress
846
863
  query=query.filter(or_(*q))
847
864
  if InList != None:
848
865
  query=query.filter(Entry.InList==InList)
849
- results=query.all()
866
+ if state == True:
867
+ results=query.order_by(Entry.Timestamp.asc()).all()
868
+ else:
869
+ results=query.order_by(Entry.Timestamp.desc()).all()
850
870
  ct=len(results)
851
871
  for num,r in enumerate(results):
852
872
  if num < round(0.25*ct,0):
@@ -1868,6 +1888,7 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
1868
1888
  entrySepStart=f'{Back.grey_30}{Fore.light_red}\\\\{Fore.light_green}{"*"*10}{Fore.light_yellow}|{Fore.light_steel_blue}#REPLACE#{Fore.light_magenta}|{Fore.orange_red_1}{"+"*10}{Fore.light_yellow}{Style.bold}({today()}){Fore.light_red}//{Style.reset}'
1869
1889
  entrySepEnd=f'{Back.grey_30}{Fore.light_red}\\\\{Fore.orange_red_1}{"+"*10}{Fore.light_yellow}|{Fore.light_steel_blue}#REPLACE#{Fore.light_magenta}|{Fore.light_green}{"*"*10}{Fore.light_yellow}{Style.bold}({today()}){Fore.light_red}//{Style.reset}'
1870
1890
  def setFieldInList(self,fieldname,load=False,repack_exec=None,barcode=None,only_select_qty=False):
1891
+ #determine if ascending or descending by
1871
1892
  def hnf(resultx,fieldname,code):
1872
1893
  if isinstance(resultx,Entry):
1873
1894
  with Session(ENGINE) as session:
@@ -2012,7 +2033,11 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
2012
2033
  'x':1,
2013
2034
  'f':1,
2014
2035
  }
2015
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).first()
2036
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2037
+ if state == True:
2038
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).first()
2039
+ else:
2040
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).first()
2016
2041
  if result:
2017
2042
  if result.CaseCount==0:
2018
2043
  result.CaseCount=1
@@ -2132,7 +2157,12 @@ use of the python3.x module math is valid
2132
2157
  '^':1,
2133
2158
  '%':1,
2134
2159
  }
2135
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).first()
2160
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2161
+ if state == True:
2162
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).first()
2163
+ else:
2164
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).first()
2165
+
2136
2166
  if result:
2137
2167
  if result.CaseCount==0:
2138
2168
  result.CaseCount=1
@@ -2443,10 +2473,19 @@ Location Fields:
2443
2473
  CD=code
2444
2474
  ci=0
2445
2475
 
2446
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).first()
2476
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2477
+ if state == True:
2478
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).order_by(Entry.Timestamp.asc()).first()
2479
+ else:
2480
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).order_by(Entry.Timestamp.desc()).first()
2481
+
2482
+ #result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code)),Entry.InList==True).first()
2447
2483
  if result == None:
2484
+ if state == True:
2485
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).order_by(Entry.Timestamp.asc()).first()
2486
+ else:
2487
+ result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).order_by(Entry.Timestamp.desc()).first()
2448
2488
 
2449
- result=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Code==code,Entry.ALT_Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code))).first()
2450
2489
  #print(isinstance(result,Entry))
2451
2490
 
2452
2491
 
@@ -2494,9 +2533,19 @@ Location Fields:
2494
2533
  {Style.bold}{Fore.light_sea_green}Code={Fore.spring_green_3a}{Entry.cfmt(None,CD)}{Style.reset}'''
2495
2534
 
2496
2535
  print(hafnhaf)
2497
- results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).all()
2536
+
2537
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
2538
+ if state == True:
2539
+ results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.asc()).all()
2540
+ else:
2541
+ results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).order_by(Entry.Timestamp.desc()).all()
2542
+
2543
+ #results=session.query(Entry).filter(or_(Entry.Barcode==code,Entry.Barcode.icontains(code),Entry.Code.icontains(code),Entry.Code==code,Entry.ALT_Barcode==code)).all()
2498
2544
  results_ct=len(results)
2499
- resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).all()
2545
+ if state == True:
2546
+ resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).order_by(Entry.Timestamp.asc()).all()
2547
+ else:
2548
+ resultsName=session.query(Entry).filter(or_(Entry.Name.icontains(code))).order_by(Entry.Timestamp.desc()).all()
2500
2549
  resultsName_ct=len(resultsName)
2501
2550
  if results_ct > 0:
2502
2551
  warn1=f"{Fore.light_sea_green}Enter/<CODE> will default to Skipping anything from this option, and will probably present {Fore.light_yellow}another prompt{Style.reset}"
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.353'
1
+ VERSION='0.0.355'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.353
3
+ Version: 0.0.355
4
4
  Summary: A small example package
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=XXy-o5Z_yOgrgHNju4iqM3h7xhRBkNIoHG1qePtBnGY,41316
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=LdCBGH3p2BCb5qYCX-X_2EsCoDDPLdyDmN7dczhG_nk,17
8
+ radboy/__init__.py,sha256=l7aeiQFOIf4b-G-Bme-dq5mVNcXR0fcKe1pCF84LoDo,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
@@ -83,7 +83,7 @@ radboy/DB/ExerciseTracker.py,sha256=CZ8jdKJiAE_QTAiJTRXi8ZOnS1NUiSvWVSKLHLpYVGk,
83
83
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
84
84
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
85
85
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- radboy/DB/Prompt.py,sha256=-ACQTAGS11Xy-FL9HKxU42mqIXOzwyw92BewJjfDwUM,182297
86
+ radboy/DB/Prompt.py,sha256=rm_LslQaC8xCAuPQrYfiTee7Ukv9ujDNPfUDFANE058,185501
87
87
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
88
88
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
89
89
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
@@ -107,7 +107,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
107
107
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
108
108
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
109
109
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
110
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=0EaNIUpsufPXdLezWNCqsdbixkFe3HZT2ZJAm04l7Mc,265793
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=eFf4YU6ZJnPU_afzh_RYTQy3jk0786cej94lxGPkVOI,270764
111
111
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
112
112
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
113
113
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -330,7 +330,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
330
330
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
331
331
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
332
332
  radboy/TasksMode/SetEntryNEU.py,sha256=3nUNDUNyxq4zeMtmUQ7aS1o23P7KhDIMdUPNqPnYbRk,17343
333
- radboy/TasksMode/Tasks.py,sha256=xk4l-8Kgc_sGmHLqxcAOATwB5wKAlnL9HzAho3c81gU,301434
333
+ radboy/TasksMode/Tasks.py,sha256=S6KZPx3mdnfewDyflpb6UqrRSzhptp2xkWu8plGFrAU,305097
334
334
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
335
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
336
336
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -339,7 +339,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
339
339
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=leIelDzPrZE_YgKs0B99osmhyENYtYgi3ErgS2XqSPs,20088
340
340
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
341
341
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
342
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=VWyCbr0kLi4SUdXbnKyEb3rjqAPIF1HnGynaP6lA_js,368151
342
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=8oDXECFzR5h_HHLu9e_kNpwiweDfnLrTpS65FcU2920,374234
343
343
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
344
344
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
345
345
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -386,7 +386,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
386
386
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
387
387
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
388
388
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
389
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=5JsvuWJgAz8ewLdAFGFfUpIAKFGeYk10lRbL323TZ18,165
389
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=0h4rkorAoflVy3YLLKGTy_E-UdVAqh1I2yFGo3le6Js,165
390
390
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
391
391
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
392
392
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -411,7 +411,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
411
411
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
412
412
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
413
413
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
414
- radboy-0.0.353.dist-info/METADATA,sha256=0PwJMjTphoDVaGw0VrhMcGqVBne_siIcf9rBPMatjzA,794
415
- radboy-0.0.353.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
- radboy-0.0.353.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
- radboy-0.0.353.dist-info/RECORD,,
414
+ radboy-0.0.355.dist-info/METADATA,sha256=SusWRth57pcnnu-GhF3Ulic7o4cfHC4zqL2sMz4lb64,794
415
+ radboy-0.0.355.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
+ radboy-0.0.355.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
+ radboy-0.0.355.dist-info/RECORD,,