radboy 0.0.438__py3-none-any.whl → 0.0.440__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
@@ -30,6 +30,18 @@ from decimal import Decimal
30
30
  import biip
31
31
  import radboy.Orders.MilkWaterOrder as MWR
32
32
  import itertools
33
+ from inputimeout import inputimeout, TimeoutOccurred
34
+
35
+ def timedout(ptext):
36
+ try:
37
+ t=5
38
+ past=datetime.now()
39
+ user_input = inputimeout(prompt=f"{ptext}({t} Seconds Passed='timeout' returned from {past.strftime("%I:%M:%S %p(12H)/%H:%M:%S(24H)")}):", timeout=t)
40
+ return user_input
41
+ except TimeoutOccurred:
42
+ print("Time's up! No input received.")
43
+ user_input = "timeout"
44
+ return user_input
33
45
 
34
46
  def orderQuery(query,orderBy):
35
47
  LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
@@ -843,7 +855,7 @@ class Prompt(object):
843
855
  return out
844
856
 
845
857
 
846
- def __init2__(self,func,ptext='do what',helpText='',data={},noHistory=False,qc=None,replace_ptext=None):
858
+ def __init2__(self,func,ptext='do what',helpText='',data={},noHistory=False,qc=None,replace_ptext=None,alt_input=None):
847
859
  '''
848
860
  lsbld - bldls()
849
861
  lsbld- - bldls(minus=True)
@@ -1105,7 +1117,10 @@ class Prompt(object):
1105
1117
  {m}{Fore.black}{Back.grey_70} P_CMDS SncLstCmd:{str(duration).split(".")[0]} {Style.reset}|{Fore.black}{Back.grey_50} TmInShl:{str(InShellElapsed).split(".")[0]}|DT:{now.ctime()}| {Fore.dark_blue}{Style.bold}{Style.underline}Week {datetime.now().strftime("%W")} {Style.reset}|{Fore.light_magenta}#RPLC#={Fore.tan}rplc {Fore.light_magenta}#RPLC#{Fore.tan} frm {Fore.light_red}CB{Fore.orange_3}.{Fore.light_green}default={Fore.light_yellow}True{Fore.light_steel_blue} or by {Fore.light_red}CB{Fore.orange_3}.{Fore.light_green}doe={Fore.light_yellow}Newest{Style.reset}|{Fore.light_salmon_1}c2c=calc2cmd={Fore.sky_blue_2}clctr rslt to inpt{Style.reset}|b={color2}back|{Fore.light_red}h={color3}help{color4}|{Fore.light_red}h+={color3}help+{color4}|{Fore.light_magenta}i={color3}info|{Fore.light_green}{Fore.light_steel_blue}CMD#c2cb[{Fore.light_red}e{Fore.light_steel_blue}]{Fore.light_green}{Fore.light_red}|{Fore.orange_3}c2cb[{Fore.light_red}e{Fore.orange_3}]#CMD{Fore.light_green} - copy CMD to cb and set default | Note: optional [{Fore.light_red}e{Fore.light_green}] executes after copy{Style.reset} {Fore.light_steel_blue}NTE: cmd ends/start-swith [{Fore.light_red}#clr|clr#{Fore.light_green}{Fore.light_steel_blue}] clrs crnt ln 4 a rtry{Style.reset} {Fore.orange_red_1}|c{Fore.light_steel_blue}=calc|{Fore.spring_green_3a}cb={Fore.light_blue}clipboard{Style.reset}|{Fore.light_salmon_1}cdp={Fore.green_yellow}paste cb dflt {Fore.green}|q={Fore.green_yellow}Quit Menu (qm)
1106
1118
  {Fore.light_red+os.get_terminal_size().columns*'.'}
1107
1119
  {Fore.rgb(55,191,78)}HFL:{Fore.rgb(55,130,191)}{lineTotal()}{Fore.light_red}{Fore.light_green}{Back.grey_15}'''
1108
- cmd=input(f"{Fore.light_yellow}{'.'*os.get_terminal_size().columns}\n{Back.grey_15}{Fore.light_yellow}{ptext}{Fore.light_steel_blue}\n[{Fore.light_green}cheat/cht=brief cmd helpt{Fore.light_steel_blue}] ({Fore.orange_red_1}Exec{Fore.light_steel_blue})\n ->{Style.reset}")
1120
+ if alt_input is not None and callable(alt_input):
1121
+ cmd=alt_input(f"{Fore.light_yellow}{'.'*os.get_terminal_size().columns}\n{Back.grey_15}{Fore.light_yellow}{ptext}{Fore.light_steel_blue}\n[{Fore.light_green}cheat/cht=brief cmd helpt{Fore.light_steel_blue}] ({Fore.orange_red_1}Exec{Fore.light_steel_blue})\n ->{Style.reset}")
1122
+ else:
1123
+ cmd=input(f"{Fore.light_yellow}{'.'*os.get_terminal_size().columns}\n{Back.grey_15}{Fore.light_yellow}{ptext}{Fore.light_steel_blue}\n[{Fore.light_green}cheat/cht=brief cmd helpt{Fore.light_steel_blue}] ({Fore.orange_red_1}Exec{Fore.light_steel_blue})\n ->{Style.reset}")
1109
1124
 
1110
1125
  def strip_null(text):
1111
1126
  if '\0' in text:
Binary file
radboy/DB/db.py CHANGED
@@ -130,7 +130,7 @@ str(uuid1()):{
130
130
 
131
131
 
132
132
  try:
133
- t=15
133
+ t=5
134
134
  past=datetime.now()
135
135
  user_input = inputimeout(prompt=f"Boot CMDS({t} Seconds Passed=autoboot from {past.strftime("%I:%M:%S %p(12H)/%H:%M:%S(24H)")}):", timeout=t)
136
136
  print(f"You entered: {user_input}")
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,group=True):
463
+ def search_expo(self,returnable=False,code=None,group=True,past_due_only=False):
464
464
  with Session(ENGINE) as session:
465
465
  while True:
466
466
  if code != None:
@@ -503,6 +503,13 @@ class Expiration:
503
503
  else:
504
504
  results=query.order_by(Expiry.DTOE.asc()).order_by(Expiry.BB_Expiry.asc())
505
505
 
506
+ print(past_due_only)
507
+ #exit()
508
+ if past_due_only == True:
509
+ tdy=datetime.today()
510
+ tdy=datetime(tdy.year,tdy.month,tdy.day)
511
+ results=results.filter(Expiry.BB_Expiry<=tdy)
512
+
506
513
  state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
507
514
  if state == True:
508
515
  results=results.order_by(Expiry.BB_Expiry.asc())
@@ -521,7 +528,19 @@ class Expiration:
521
528
  print(msg)
522
529
 
523
530
  def rm_expo(self,short=True):
524
- toRm=self.search_expo(returnable=True)
531
+ group=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Group results by Barcode[default=True/Yes]?",helpText="results will be grouped by barcode",data="boolean")
532
+ if group is None:
533
+ return
534
+ elif group in ['d',]:
535
+ group=True
536
+
537
+ protect_unexpired=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Do not delete/'display for delete' non-past-due expiry's?",helpText="if its not expired, dont show it",data="boolean")
538
+ if protect_unexpired is None:
539
+ return
540
+ elif protect_unexpired in ['d',True]:
541
+ protect_unexpired=True
542
+
543
+ toRm=self.search_expo(group=group,returnable=True,past_due_only=protect_unexpired)
525
544
  if toRm is None:
526
545
  print(f"{Fore.orange_red_1}User Cancelled Early{Style.reset}")
527
546
  return
@@ -562,6 +581,11 @@ class Expiration:
562
581
  session.flush()
563
582
 
564
583
  def rm_expo_bar(self):
584
+ protect_unexpired=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Do not delete/'display for delete' non-past-due expiry's?",helpText="if its not expired, dont show it",data="boolean")
585
+ if protect_unexpired is None:
586
+ return
587
+ elif protect_unexpired in ['d',True]:
588
+ protect_unexpired=True
565
589
  while True:
566
590
  try:
567
591
  fieldname='Remove Expiry by Barcode'
@@ -574,7 +598,12 @@ class Expiration:
574
598
  continue
575
599
  else:
576
600
  with Session(ENGINE) as session:
577
- done=session.query(Expiry).filter(Expiry.Barcode==barcode).delete()
601
+ done=session.query(Expiry).filter(Expiry.Barcode==barcode)
602
+ if protect_unexpired:
603
+ tdy=datetime.today()
604
+ tdy=datetime(tdy.year,tdy.month,tdy.day)
605
+ done=done.filter(Expiry.BB_Expiry<=tdy)
606
+ done.delete()
578
607
  session.commit()
579
608
  session.flush()
580
609
  print(f"{Fore.light_red}Done Deleting {Fore.cyan}{done}{Fore.light_red} Expiration Barcodes!{Style.reset}")
Binary file
radboy/RecordMyCodes.py CHANGED
@@ -146,7 +146,7 @@ async def protect():
146
146
  x_year=new_date.year
147
147
  new_cleared_date=detectGetOrSet("cleared_date",f"{x_month}/{x_day}/{x_year}",setValue=True,literal=True)
148
148
  cleared_times=detectGetOrSet("cleared_times",0,setValue=True)
149
- graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean")
149
+ graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean",alt_input=timedout)
150
150
  print(graveyard,"x",type(graveyard))
151
151
  if graveyard in ['d',True]:
152
152
  graveyard=True
@@ -164,7 +164,7 @@ async def protect():
164
164
  bu=detectGetOrSet("daily_backups_count",1,setValue=False,literal=False)
165
165
  cleared_times=detectGetOrSet("cleared_times",0,setValue=False)
166
166
  if cleared_times >= bu:
167
- graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean")
167
+ graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean",alt_input=timedout)
168
168
  if graveyard in ['d',True]:
169
169
  graveyard=True
170
170
  return
@@ -178,7 +178,7 @@ async def protect():
178
178
  print(f"{Fore.grey_70}cleared at {Fore.green_3a}{cleared_date}{Fore.grey_70}for a duration of {Fore.green_3a}{dur}{Fore.light_blue} :{Fore.light_cyan} clear protection is enabled and you have to wait ({Fore.light_steel_blue}to alter use the following cmd set {Fore.cyan}`sysset`;`se`;$INDEX_FOR==bypass_clear_time_clear_protection;`true` or `false`{Fore.light_cyan}) {Fore.light_cyan}{waiting}{Fore.orange_red_1} or @ {tomorrow} to clear data to zero to {Fore.light_yellow}prevent {Fore.light_red}duplicate logs!{Style.reset}")
179
179
  return
180
180
  else:
181
- graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean")
181
+ graveyard=Prompt.__init2__(None,func=lambda text,data,passThru=[],PassThru=False:FormBuilderMkText(text,data,passThru=[],PassThru=PassThru),ptext="Are working overnight?/skip backup==True.",helpText="type a boolean yes or no",data="boolean",alt_input=timedout)
182
182
  if graveyard in ['d']:
183
183
  graveyard=True
184
184
  return
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.438'
1
+ VERSION='0.0.440'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.438
3
+ Version: 0.0.440
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>
@@ -3,9 +3,9 @@ radboy/1-2024-04-02.png_04022024.jpg,sha256=4DFsTncCfbqEp2136jFathURUQuu3zpe1Jnh
3
3
  radboy/Default.TTF,sha256=lXZrWPfYabD6LPbm_rJsGyHN8mMfHFhj_JvSBtXG6O4,915212
4
4
  radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
5
5
  radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
6
- radboy/RecordMyCodes.py,sha256=0qFnt3gEk58-8S1uCmVBbtOItFJ0zp0Yt7RqXsF0ksY,41364
6
+ radboy/RecordMyCodes.py,sha256=dOm24buf-rWC4FGLQLDjL5obdxOKF3D01t6Qkkit-R0,41421
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=VLQXQy3pGlFlWg4nVtu_uMyBmh2hoaeoN_lXRVCX5Is,17
8
+ radboy/__init__.py,sha256=HYJ9_tQ9sViRYUVRalsOxb4uEvhCvuUe4Xph3qjFWYM,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=jkimTnBxb2iYwzabB83bCFf3PTCka8tAQdwJPG42QHI,137547
86
+ radboy/DB/Prompt.py,sha256=AGeqHu9Xo-HSPub2cf_4YxRPcKAfEZE83fFh4M6RdXk,138402
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=giTrfWSjS3DVfuG6Z23vrv9KModGuK8yZI_AsUyvsQo,236190
93
+ radboy/DB/db.py,sha256=ENbRHrUKdmwYstFUYHVHrrzh5_PtKLuUZj_HjREqT44,236189
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=Sr9ru3zWYhtl-XxuwPThwqdc2oMuvMFnK-rXieb3aM8,210894
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=4Csf7rdfPGjfSP6NwmnuwWrUJV8lYdCnst3KfZ3bC0w,212356
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=dtIn83o0Fmb4ZZfsw0Vqq9oJRaff_bX0QUP92WdMN78,373650
128
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=rkrkyJZnDo71yPUqPr4c_d1Se86efBqlkQaMJYgS3QY,373650
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=KerxZGyKlPOhwmMV9DNn_TxdHimY5_QmjQ6H82powxA,37762
295
+ radboy/RNE/RNE.py,sha256=CVvdGbmfGHwhafGSxtSBq2hgRCMqVj0tmurS0xwwQao,39014
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=-P9Ob65csLEsAEhI6vGC8f1WJDot21jQPFjpGmlnElA,74235
299
+ radboy/RNE/__pycache__/RNE.cpython-313.pyc,sha256=-IIlNgmW-7T5ArSDnc-DTqnZvzOy-0nnBZBmIecmrHc,75540
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
@@ -384,13 +384,13 @@ radboy/WebSearchFrameWork/__pycache__/__init__.cpython-311.pyc,sha256=6iaqOS6i1n
384
384
  radboy/__pycache__/MainAssist.cpython-312.pyc,sha256=5mbMrRFcqRZ-1etrlvlsW8aJhMjNPUB2Vh7azstgBuE,12399
385
385
  radboy/__pycache__/RecordMyCodes.cpython-311.pyc,sha256=q-JqnspEHoJhg1VMsEMz3vry5KqY4xGjtr6akm8hvU0,47367
386
386
  radboy/__pycache__/RecordMyCodes.cpython-312.pyc,sha256=o71KtEcm_u2fD7qLWDRTSNy5PQDb3lXJ-xa1ENmojL4,56063
387
- radboy/__pycache__/RecordMyCodes.cpython-313.pyc,sha256=emDZEJTJSoHWu6XONHCTHW_WZYtQ3pwOxQXazUF7Tos,64044
387
+ radboy/__pycache__/RecordMyCodes.cpython-313.pyc,sha256=_ci1-U9ugS-xoNGWoKUWGw41UnIqvz7OyZdzlDshsxw,64118
388
388
  radboy/__pycache__/RecordMyCodes.cpython-39.pyc,sha256=FiF2P5zp8mhydS5Cgn-Yx5behEyFANnqI1G0x5KqUq8,21916
389
389
  radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9KZUr6A8Dk,411
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=6Y7QMR9AhPAlQwrFLuIyQxrd6lylkrwLx0wC3JyPAgQ,165
393
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=HgbadCWFA2OSAvYpfAwovAG68_aFGh8zTI30XWW4Fxc,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.438.dist-info/METADATA,sha256=-uDLvG5PtDG2OYMExj-xg5_yO9uWbTO2rey-VSZNb9k,1574
419
- radboy-0.0.438.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
- radboy-0.0.438.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
- radboy-0.0.438.dist-info/RECORD,,
418
+ radboy-0.0.440.dist-info/METADATA,sha256=L-4qSEpkqUUBKqDYAOKu6ZOk5lQp-JaYs5T_FcPKaoY,1574
419
+ radboy-0.0.440.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
+ radboy-0.0.440.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
+ radboy-0.0.440.dist-info/RECORD,,