radboy 0.0.349__py3-none-any.whl → 0.0.350__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,22 @@ from decimal import Decimal
30
30
  import biip
31
31
  import signal
32
32
 
33
+ def getExtras(entryId,extras):
34
+ if not extras:
35
+ return
36
+ with db.Session(db.ENGINE) as session:
37
+ msg=f'{Fore.light_green}-----------|{Fore.light_yellow}For EntryId: {entryId} {Fore.light_green}|-----------{Style.reset}\n'
38
+ extras_items=session.query(db.EntryDataExtras).filter(db.EntryDataExtras.EntryId==entryId).all()
39
+ extras_ct=len(extras_items)
40
+ mtext=[]
41
+ for n,e in enumerate(extras_items):
42
+ mtext.append(f"\t- {Fore.orange_red_1}{e.field_name}:{Fore.light_steel_blue}{e.field_type}={Fore.light_yellow}{e.field_value} {Fore.cyan}ede_id={e.ede_id} {Fore.light_magenta}doe={e.doe}{Style.reset}")
43
+ mtext='\n'.join(mtext)
44
+ msg+=mtext
45
+
46
+ print(msg)
47
+ return msg
48
+
33
49
  def getSuperTotal(results,location_fields,colormapped):
34
50
  with db.Session(db.ENGINE) as session:
35
51
  ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
@@ -866,9 +882,18 @@ class Prompt(object):
866
882
  {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)
867
883
  {Fore.light_red+os.get_terminal_size().columns*'.'}
868
884
  {Fore.rgb(55,191,78)}HFL:{Fore.rgb(55,130,191)}{lineTotal()}{Fore.light_red} ->{Fore.light_green}{Back.grey_15}''')
885
+
886
+ def strip_null(text):
887
+ if '\0' in text:
888
+ return text.replace("\00","").replace("\0","")
889
+ else:
890
+ return text
891
+ cmd=strip_null(cmd)
892
+
869
893
  db.logInput(cmd)
870
894
  print(f"{Fore.medium_violet_red}{os.get_terminal_size().columns*'.'}{Style.reset}",end='')
871
895
 
896
+
872
897
  def preProcess_RPLC(cmd):
873
898
  if '#RPLC#' in cmd:
874
899
  with db.Session(db.ENGINE) as session:
@@ -1955,6 +1980,10 @@ last month = today-30d
1955
1980
  result=global_search_for_text()
1956
1981
  return func(result,data)
1957
1982
  elif cmd.lower() in ["bldls","build","buildls","build list","bld ls",'lsbld','list build','ls bld','bld']:
1983
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
1984
+ if extras in [None,'d',False]:
1985
+ extras=False
1986
+
1958
1987
  with db.Session(db.ENGINE) as session:
1959
1988
  results_query=session.query(db.Entry).filter(db.Entry.InList==True)
1960
1989
  location_fields=["Shelf","BackRoom","Display_1","Display_2","Display_3","Display_4","Display_5","Display_6","ListQty","SBX_WTR_DSPLY","SBX_CHP_DSPLY","SBX_WTR_KLR","FLRL_CHP_DSPLY","FLRL_WTR_DSPLY","WD_DSPLY","CHKSTND_SPLY","Distress"]
@@ -1978,6 +2007,7 @@ last month = today-30d
1978
2007
  master_total_tax_crv=0
1979
2008
 
1980
2009
  for num,i in enumerate(results):
2010
+ getExtras(i.EntryId,extras)
1981
2011
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
1982
2012
  colormapped=[
1983
2013
  Fore.deep_sky_blue_4c,
@@ -2063,6 +2093,9 @@ last month = today-30d
2063
2093
  if t is not None:
2064
2094
  return func(str(t),data)
2065
2095
  elif cmd.lower() in ["bldlse","builde","buildlse","build list export ","bld ls exp",'elsbld','export list build','exp ls bld','ebld']:
2096
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2097
+ if extras in [None,'d',False]:
2098
+ extras=False
2066
2099
  msg=''
2067
2100
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file,clear_only=True)
2068
2101
  with db.Session(db.ENGINE) as session:
@@ -2091,6 +2124,7 @@ last month = today-30d
2091
2124
  master_total_tax_crv=0
2092
2125
 
2093
2126
  for num,i in enumerate(results):
2127
+ getExtras(i.EntryId,extras)
2094
2128
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2095
2129
  colormapped=[
2096
2130
  Fore.deep_sky_blue_4c,
@@ -2173,6 +2207,9 @@ last month = today-30d
2173
2207
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2174
2208
  print(msg)
2175
2209
  elif cmd.lower() in ['sbld','search build','search_build','scan build','scan_bld']:
2210
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2211
+ if extras in [None,'d',False]:
2212
+ extras=False
2176
2213
  end=False
2177
2214
  while not end:
2178
2215
  with db.Session(db.ENGINE) as session:
@@ -2218,6 +2255,7 @@ last month = today-30d
2218
2255
  master_total_tax_crv=0
2219
2256
 
2220
2257
  for num,i in enumerate(results):
2258
+ getExtras(i.EntryId,extras)
2221
2259
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2222
2260
  colormapped=[
2223
2261
  Fore.deep_sky_blue_4c,
@@ -2298,6 +2336,9 @@ last month = today-30d
2298
2336
  {Style.reset}"""
2299
2337
  print(msg)
2300
2338
  elif cmd.lower() in ['esbld','export search build','export_search_build','exp scan build','exp_scan_bld']:
2339
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2340
+ if extras in [None,'d',False]:
2341
+ extras=False
2301
2342
  end=False
2302
2343
  msg=''
2303
2344
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file,clear_only=True)
@@ -2347,6 +2388,7 @@ last month = today-30d
2347
2388
  master_total_tax_crv=0
2348
2389
 
2349
2390
  for num,i in enumerate(results):
2391
+ getExtras(i.EntryId,extras)
2350
2392
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2351
2393
  colormapped=[
2352
2394
  Fore.deep_sky_blue_4c,
@@ -2429,6 +2471,9 @@ last month = today-30d
2429
2471
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2430
2472
  print(msg)
2431
2473
  elif cmd.lower() in ["bldls-","build-","buildls-","build list -","bld ls -",'lsbld-','list build -','ls bld -','bld-']:
2474
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2475
+ if extras in [None,'d',False]:
2476
+ extras=False
2432
2477
  with db.Session(db.ENGINE) as session:
2433
2478
  results_query=session.query(db.Entry).filter(db.Entry.InList==True)
2434
2479
  location_fields=["Shelf","BackRoom","Display_1","Display_2","Display_3","Display_4","Display_5","Display_6","ListQty","SBX_WTR_DSPLY","SBX_CHP_DSPLY","SBX_WTR_KLR","FLRL_CHP_DSPLY","FLRL_WTR_DSPLY","WD_DSPLY","CHKSTND_SPLY","Distress"]
@@ -2452,6 +2497,7 @@ last month = today-30d
2452
2497
  master_total_tax_crv=0
2453
2498
 
2454
2499
  for num,i in enumerate(results):
2500
+ getExtras(i.EntryId,extras)
2455
2501
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2456
2502
  colormapped=[
2457
2503
  Fore.deep_sky_blue_4c,
@@ -2529,6 +2575,9 @@ last month = today-30d
2529
2575
  {Style.reset}"""
2530
2576
  print(msg)
2531
2577
  elif cmd.lower() in ["bldlse-","builde-","buildlse-","build list export -","bld ls exp -",'elsbld-','export list build -','exp ls bld -','ebld-']:
2578
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2579
+ if extras in [None,'d',False]:
2580
+ extras=False
2532
2581
  msg=''
2533
2582
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file,clear_only=True)
2534
2583
  with db.Session(db.ENGINE) as session:
@@ -2556,6 +2605,7 @@ last month = today-30d
2556
2605
  master_total_tax_crv=0
2557
2606
 
2558
2607
  for num,i in enumerate(results):
2608
+ getExtras(i.EntryId,extras)
2559
2609
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2560
2610
  colormapped=[
2561
2611
  Fore.deep_sky_blue_4c,
@@ -2636,6 +2686,9 @@ last month = today-30d
2636
2686
  print(msg)
2637
2687
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
2638
2688
  elif cmd.lower() in ['sbld-','search build -','search_build-','scan build-','scan_bld-']:
2689
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2690
+ if extras in [None,'d',False]:
2691
+ extras=False
2639
2692
  end=False
2640
2693
  while not end:
2641
2694
  with db.Session(db.ENGINE) as session:
@@ -2679,6 +2732,7 @@ last month = today-30d
2679
2732
  master_total_tax_crv=0
2680
2733
 
2681
2734
  for num,i in enumerate(results):
2735
+ getExtras(i.EntryId,extras)
2682
2736
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2683
2737
  colormapped=[
2684
2738
  Fore.deep_sky_blue_4c,
@@ -2756,6 +2810,9 @@ last month = today-30d
2756
2810
  {Style.reset}"""
2757
2811
  print(msg)
2758
2812
  elif cmd.lower() in ['esbld-','export search build -','export_search_build-','exp scan build-','exp_scan_bld-']:
2813
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
2814
+ if extras in [None,'d',False]:
2815
+ extras=False
2759
2816
  end=False
2760
2817
  msg=''
2761
2818
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file,clear_only=True)
@@ -2803,6 +2860,7 @@ last month = today-30d
2803
2860
  master_total_tax_crv=0
2804
2861
 
2805
2862
  for num,i in enumerate(results):
2863
+ getExtras(i.EntryId,extras)
2806
2864
  msg=f'{"*"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
2807
2865
  colormapped=[
2808
2866
  Fore.deep_sky_blue_4c,
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.349'
1
+ VERSION='0.0.350'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.349
3
+ Version: 0.0.350
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=t0n9qI4V_etx69M9f11s19K3fzE645GvO1joBon4_A4,17
8
+ radboy/__init__.py,sha256=UxllezpVER4W3-s0B20FU2NVv90oU07BTQec1k5hR5k,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=fHmhlrwtWyehpsWnXWIOSE_WCJpk9i7jyYDfnjIjjVk,178666
86
+ radboy/DB/Prompt.py,sha256=-ACQTAGS11Xy-FL9HKxU42mqIXOzwyw92BewJjfDwUM,182297
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=CNQwIh4wonLvnGmaxbappAbd5S8Cv9RoQ2-M6V3S1uc,261932
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=R90E6aGMoCmgfeEQkcUIOGhKJGseXxbtsdAR8BFkDU0,265793
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
@@ -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=EfSISvhEChPd9OTxP6VXMYMWSsluIAVSs1V8ZfaCgaQ,165
389
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=RsRz4HFvfl4CaMi-UOQH9DOkgezZ-Ma6Eum40DDWHCg,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.349.dist-info/METADATA,sha256=RTZztCq1g62Ju0frTLJulBa5urq8DkYlhNJptKoMi_k,794
415
- radboy-0.0.349.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
- radboy-0.0.349.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
- radboy-0.0.349.dist-info/RECORD,,
414
+ radboy-0.0.350.dist-info/METADATA,sha256=8d6EwM0LMy5E_hyjdgzhZ2hsxvrf53U8O6NQCNQpk3o,794
415
+ radboy-0.0.350.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
+ radboy-0.0.350.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
+ radboy-0.0.350.dist-info/RECORD,,