radboy 0.0.425__py3-none-any.whl → 0.0.427__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
@@ -2055,6 +2055,7 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
2055
2055
  {Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['frozen','Frozen','fzn']))}{Fore.light_green} print hard-coded order dates frozen load{Style.reset}
2056
2056
  {Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['gm','lqr','general merchandise','liquor','totes','green totes','grn tts','grntts']))}{Fore.light_green} print hard-coded order dates GM Load/Liquor Load{Style.reset}
2057
2057
  {Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddts','ordts','loads','lds','orders','loads','rxdates'],endCmd=['','all','all dates','all dts','aldts','*']))}{Fore.light_green} print all load dates {Style.reset}
2058
+ {Fore.grey_70}**{Fore.light_green}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['units',],endCmd=['']))}{Fore.light_steel_blue} list supported units{Style.reset}
2058
2059
  '''
2059
2060
  print(extra)
2060
2061
  print(helpText)
@@ -2145,6 +2146,8 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
2145
2146
  dta=MWR.WaterMilkOrder(today=today,department="General Merchandise[GM]/Liquor[LQR]",noMilkDays=['saturday','monday','wednesday','friday'])
2146
2147
  print(dta.orderMsg)
2147
2148
  continue
2149
+ elif cmd.lower() in generate_cmds(startcmd=['units',],endCmd=['']):
2150
+ TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).listSystemUnits()
2148
2151
  elif cmd.lower() in ['rllo','reverse list lookup order']:
2149
2152
  try:
2150
2153
  state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
@@ -2329,6 +2332,11 @@ last month = today-30d
2329
2332
  {Fore.light_red}Tax=(({Fore.cyan}CRV+{Fore.light_blue}Price)*{Fore.light_magenta}(Sales Tax Rate(0.0925))){Style.reset}
2330
2333
  '''
2331
2334
  print(sales_tax_msg)
2335
+ ConversionUnitsMSg=f"""
2336
+ degress celcius - degC
2337
+ degress fahrenheite - degF
2338
+
2339
+ """
2332
2340
  continue
2333
2341
  elif cmd.lower() in ['sftu','search for text universal',]:
2334
2342
  result=global_search_for_text()
Binary file
radboy/DB/db.py CHANGED
@@ -676,9 +676,19 @@ class EntryExtras:
676
676
  def __neg__(self):
677
677
  return -self.Price
678
678
 
679
+ def std_colorize(m,n,c):
680
+ if ((n % 2) != 0) and n > 0:
681
+ msg=f'{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}'
682
+ else:
683
+ msg=f'{Fore.light_cyan}{n}/{Fore.green_yellow}{n+1}{Fore.orange_red_1} of {c} {Fore.light_salmon_1}{m}{Style.reset}'
684
+ return msg
685
+
679
686
  class Template:
680
687
  def colorize(self,m,n,c):
681
- msg=f'{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}'
688
+ if ((n % 2) == 0) and n > 0:
689
+ msg=f'{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}'
690
+ else:
691
+ msg=f'{Fore.light_cyan}{n}/{Fore.green_yellow}{n+1}{Fore.orange_red_1} of {c} {Fore.light_salmon_1}{m}{Style.reset}'
682
692
  return msg
683
693
 
684
694
  def cfmt(self,line,n=4):
radboy/RNE/RNE.py CHANGED
@@ -460,7 +460,7 @@ class Expiration:
460
460
  except Exception as e:
461
461
  print(e)
462
462
 
463
- def search_expo(self,returnable=False,code=None):
463
+ def search_expo(self,returnable=False,code=None,group=True):
464
464
  with Session(ENGINE) as session:
465
465
  while True:
466
466
  if code != None:
@@ -498,7 +498,18 @@ class Expiration:
498
498
  Expiry.BB_Expiry==dt,
499
499
  )
500
500
  )
501
- results=query.order_by(Expiry.DTOE.asc()).order_by(Expiry.BB_Expiry.asc()).all()
501
+ if group:
502
+ results=query.order_by(Expiry.DTOE.asc()).order_by(Expiry.BB_Expiry.asc()).group_by(Expiry.Barcode)
503
+ else:
504
+ results=query.order_by(Expiry.DTOE.asc()).order_by(Expiry.BB_Expiry.asc())
505
+
506
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
507
+ if state == True:
508
+ results=results.order_by(Expiry.BB_Expiry.asc())
509
+ else:
510
+ results=results.order_by(Expiry.BB_Expiry.desc())
511
+
512
+ results=results.all()
502
513
  ct=len(results)
503
514
  if returnable:
504
515
  return results
@@ -574,15 +585,34 @@ class Expiration:
574
585
  return
575
586
 
576
587
  async def show_warnings_async(self):
577
- await asyncio.to_thread(self.show_warnings)
588
+ await asyncio.to_thread(lambda self=self:self.show_warnings(boot=True))
578
589
 
579
590
 
580
- def show_warnings(self,barcode=None,export=False,regardless=False,code=None):
591
+ def show_warnings(self,barcode=None,export=False,regardless=False,code=None,boot=False):
581
592
  with Session(ENGINE) as session:
593
+ if not boot:
594
+ group=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Group results by Barcode[default=True/Yes]?",helpText="results will be grouped by barcode",data="boolean")
595
+ if group is None:
596
+ return
597
+ elif group in ['d',]:
598
+ group=True
599
+ else:
600
+ group=True
601
+
582
602
  if barcode == None:
583
- results=session.query(Expiry).all()
603
+ if group:
604
+ results=session.query(Expiry).group_by(Expiry.Barcode)
605
+ else:
606
+ results=session.query(Expiry)
607
+ state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
608
+ if state == True:
609
+ results=results.order_by(Expiry.BB_Expiry.asc())
610
+ else:
611
+ results=results.order_by(Expiry.BB_Expiry.desc())
612
+
613
+ results=results.all()
584
614
  else:
585
- results=self.search_expo(returnable=True,code=code)
615
+ results=self.search_expo(returnable=True,code=code,group=group)
586
616
  if results in [None,]:
587
617
  return
588
618
  ct=len(results)
Binary file
radboy/TasksMode/Tasks.py CHANGED
@@ -679,6 +679,69 @@ class TasksMode:
679
679
  {Fore.medium_violet_red}A {Style.bold}{Fore.light_green}Honey Well Voyager 1602g{Style.reset}{Fore.medium_violet_red} was connected and transmitted a '{Fore.light_sea_green}^@{Fore.medium_violet_red}'{Style.reset}
680
680
  '''
681
681
 
682
+
683
+ def listSystemUnits(self):
684
+ ureg = UnitRegistry()
685
+ units = ureg._units.keys()
686
+ suffixes = ureg._suffixes.keys()
687
+ prefixes = ureg._prefixes.keys()
688
+ search=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Search text?",helpText="filter by",data="string")
689
+ if search is None:
690
+ return
691
+ elif search in ['d',]:
692
+ search=''
693
+ def uni(str,num,ct):
694
+ return std_colorize('"'+str+'"',num,ct)
695
+
696
+ # Print all possible units by joining
697
+ # {prefix}{unit}{suffix}
698
+ print('# All Units in Pint')
699
+ print('All suffixes, prefixes, and units in which are used to define all available units.')
700
+
701
+
702
+ ct=len(prefixes)
703
+ if ct > 0:
704
+ print('## Prefixes')
705
+
706
+ for num,p in enumerate(prefixes):
707
+ if search != '':
708
+ if search in p:
709
+ print(uni(p,num,ct))
710
+ else:
711
+ continue
712
+
713
+ if p == '':
714
+ p = ' '
715
+ print(uni(p,num,ct))
716
+
717
+
718
+ ct=len(units)
719
+ if ct > 0:
720
+ print('## Units')
721
+ for num,u in enumerate(units):
722
+ if search != '':
723
+ if search in u:
724
+ print(uni(u,num,ct))
725
+ else:
726
+ continue
727
+ print(uni(u,num,ct))
728
+
729
+
730
+ ct=len(suffixes)
731
+ if ct > 0:
732
+ print('## Suffixes')
733
+ for num,s in enumerate(suffixes):
734
+ if search != '':
735
+ if search in s:
736
+ print(uni(s,num,ct))
737
+ else:
738
+ continue
739
+ if s == '':
740
+ s = ' '
741
+ print(uni(s,num,ct))
742
+
743
+
744
+
682
745
  def getTotalwithBreakDownForScan(self,short=False,nonZero=False):
683
746
  while True:
684
747
  color1=Fore.light_red
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.425'
1
+ VERSION='0.0.427'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.425
3
+ Version: 0.0.427
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=0qFnt3gEk58-8S1uCmVBbtOItFJ0zp0Yt7RqXsF0ksY,41364
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=-qGaiDL3RC6OjP3dDI7attgZyIF5FnFJmjo4xNHGEYA,17
8
+ radboy/__init__.py,sha256=Jkzro4aJK5rrIOueZ3G0yhUR_QRm8M9CHrb3yMGudEw,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,14 +83,14 @@ 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=cOIE6EiUiUZ5a9Myosc7h1zBsn0Q6dy8H5tl2eGxsNA,137036
86
+ radboy/DB/Prompt.py,sha256=jkimTnBxb2iYwzabB83bCFf3PTCka8tAQdwJPG42QHI,137547
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
90
90
  radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
91
91
  radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
92
92
  radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
93
- radboy/DB/db.py,sha256=MG_FJEUHA9UN3TyU_oCwbb8P9yMCmiGwabFapS__I7c,234757
93
+ radboy/DB/db.py,sha256=UN7ubXA5GebocuRHUw6DUSrrqjSxn0pETe49stm_g3w,235286
94
94
  radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
95
95
  radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
96
96
  radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
@@ -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=z6EYrFIbvSmHk_KV1x5KEYGM50x-1YEA_YITLr3tVM4,209967
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=Sr9ru3zWYhtl-XxuwPThwqdc2oMuvMFnK-rXieb3aM8,210894
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
@@ -125,7 +125,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
125
125
  radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
126
126
  radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
127
127
  radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
128
- radboy/DB/__pycache__/db.cpython-313.pyc,sha256=XEv-Dw3HL7JIkYg1FCYfcJL8qabsNw9qpOf_QUIeWfM,371593
128
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=kmxlgYDMyb7n9Mtki-vpfx3oNopwKTEKu2wmawL0tRk,372667
129
129
  radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
130
130
  radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
131
131
  radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
@@ -292,11 +292,11 @@ radboy/PunchCard/__pycache__/PunchCard.cpython-313.pyc,sha256=N8L4cP6iQldfDcYZNx
292
292
  radboy/PunchCard/__pycache__/__init__.cpython-311.pyc,sha256=Off5ltCdLUEhm2xHBufyQYZn3cmJ0FHMb5ZiZpzi6cI,234
293
293
  radboy/PunchCard/__pycache__/__init__.cpython-312.pyc,sha256=Y6qJWX7nupibrd15D5ZkcLV2B9QucwyIu6Mz3YFv-Bw,272
294
294
  radboy/PunchCard/__pycache__/__init__.cpython-313.pyc,sha256=aa7buQA_iDOOynayLa8DRx1TYsKRpB9VkhwoL1n8LDU,151
295
- radboy/RNE/RNE.py,sha256=Z1LRxvw44Sz34jORWdQsu3BIRpmlcC6RyvpGENk21Nc,36201
295
+ radboy/RNE/RNE.py,sha256=Nmsq6QXWRgd73hexkYpGxPj1_UKyrc3gWAz06_MOASI,37278
296
296
  radboy/RNE/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
297
  radboy/RNE/dateAhead.py,sha256=g5pp84vteEkYlxRi5rgo6p2Z6PyoBmozljlnWx8twMs,1594
298
298
  radboy/RNE/__pycache__/RNE.cpython-312.pyc,sha256=TCmgh08Ac9MDZgJZwb-_cpCATcLu04wp_HPNtXBrwFw,54377
299
- radboy/RNE/__pycache__/RNE.cpython-313.pyc,sha256=NW6XQJCa83rw6VG1YPIzpC6_UrGfEv0k-u1rxDvnAJ0,71970
299
+ radboy/RNE/__pycache__/RNE.cpython-313.pyc,sha256=Ha-9e9GM9P0RnWsLW8Fx9dpHz5FdRfGPY--opgCh2jM,73725
300
300
  radboy/RNE/__pycache__/__init__.cpython-312.pyc,sha256=uV2pHPbmeCebUp_7Fx1oOhe0ccQGsOtaCzVRFmj6IAg,266
301
301
  radboy/RNE/__pycache__/__init__.cpython-313.pyc,sha256=7J11knluwp7WjdVRcd4526_Y1LJo_nH4Kg3rNKIc77U,145
302
302
  radboy/Repack/Repack.py,sha256=JmGpsVWUIW71dwARwcuG_L2PP6puYbwRjVy1NJ9tYH8,42593
@@ -334,7 +334,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
334
334
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
335
335
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
336
336
  radboy/TasksMode/SetEntryNEU.py,sha256=TTzlAT5rNXvXUAy16BHBq0hJOKhONYpPhdAfQKdTfGw,17364
337
- radboy/TasksMode/Tasks.py,sha256=lMI6NUjUGvIJ8CzGwojIVX3n576jwrZypRiNrc5yQxc,306978
337
+ radboy/TasksMode/Tasks.py,sha256=15wzmTxrISKoi0g7nGxnzutOw3M7Q-GlbeczNUB6U2g,308820
338
338
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
339
339
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
340
340
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -343,7 +343,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
343
343
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=eSWkYvfm5RuRE5rbO5wI7XxzFyKnp6KlbphSqPAF2z4,20133
344
344
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
345
345
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
346
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=uD-IBoUwEwGcqayy9z5oPJqazzmr-p_wsjHS23egCUg,377020
346
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=hMhN_ApV1KJh1WgOqe219t0d2uk52ZmHJcjH3sWbh28,379040
347
347
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
348
348
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
349
349
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -390,7 +390,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
390
390
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
391
391
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
392
392
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
393
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=7CI6I-PXacEkcq6XUzaKnaVeq6z1mK4LnYWdnJJmeog,165
393
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=BwcQNDVYLxRdh8j74FBcW2jaOZ404ezZG92jUhJjo1g,165
394
394
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
395
395
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
396
396
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -415,7 +415,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
415
415
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
416
416
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
417
417
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
418
- radboy-0.0.425.dist-info/METADATA,sha256=bYaDa_CyvwK-3XczUYa7IBv0v9J3bK4bZBUqs_dd5H4,794
419
- radboy-0.0.425.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
- radboy-0.0.425.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
- radboy-0.0.425.dist-info/RECORD,,
418
+ radboy-0.0.427.dist-info/METADATA,sha256=KJkIU15XGFXwDXGwYlZ6yWsqbLx3ezTz-1cZlHfFzqM,794
419
+ radboy-0.0.427.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
+ radboy-0.0.427.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
+ radboy-0.0.427.dist-info/RECORD,,