radboy 0.0.424__py3-none-any.whl → 0.0.426__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
@@ -31,6 +31,16 @@ import biip
31
31
  import radboy.Orders.MilkWaterOrder as MWR
32
32
  import itertools
33
33
 
34
+ def orderQuery(query,orderBy):
35
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
36
+ if not isinstance(LookUpState,bool):
37
+ LookUpState=db.detectGetOrSet('list maker lookup order',False,setValue=True,literal=False)
38
+ if LookUpState == True:
39
+ query=query.order_by(orderBy.asc())
40
+ else:
41
+ query=query.order_by(orderBy.desc())
42
+ return query
43
+
34
44
  def generate_cmds(startcmd,endCmd):
35
45
  cmd=(startcmd,endCmd)
36
46
  cmds=[]
@@ -2045,6 +2055,7 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
2045
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}
2046
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}
2047
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}
2048
2059
  '''
2049
2060
  print(extra)
2050
2061
  print(helpText)
@@ -2135,6 +2146,8 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
2135
2146
  dta=MWR.WaterMilkOrder(today=today,department="General Merchandise[GM]/Liquor[LQR]",noMilkDays=['saturday','monday','wednesday','friday'])
2136
2147
  print(dta.orderMsg)
2137
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()
2138
2151
  elif cmd.lower() in ['rllo','reverse list lookup order']:
2139
2152
  try:
2140
2153
  state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
@@ -2319,6 +2332,11 @@ last month = today-30d
2319
2332
  {Fore.light_red}Tax=(({Fore.cyan}CRV+{Fore.light_blue}Price)*{Fore.light_magenta}(Sales Tax Rate(0.0925))){Style.reset}
2320
2333
  '''
2321
2334
  print(sales_tax_msg)
2335
+ ConversionUnitsMSg=f"""
2336
+ degress celcius - degC
2337
+ degress fahrenheite - degF
2338
+
2339
+ """
2322
2340
  continue
2323
2341
  elif cmd.lower() in ['sftu','search for text universal',]:
2324
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):
@@ -58,17 +58,23 @@ class HealthLogUi:
58
58
  entry=None
59
59
  if 'EntryBarcode' in useColumns:
60
60
  h=f'{Fore.light_red}HealthLog{Fore.light_yellow}@{Style.bold}{Fore.deep_sky_blue_3b}AHS{Fore.light_yellow} : '
61
- barcode=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{h}Barcode|Code|Name: ",helpText="what was consumed?",data="string")
61
+ barcode=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{h}Barcode|Code|Name[b=skips search]: ",helpText="what was consumed?",data="string")
62
62
  if barcode not in [None,]:
63
63
  while True:
64
64
  try:
65
- entry=session.query(Entry).filter(or_(Entry.Barcode==barcode,Entry.Barcode.icontains(barcode),Entry.Name.icontains(barcode),Entry.Code==barcode,Entry.Code.icontains(barcode))).all()
65
+ entry=session.query(Entry).filter(or_(Entry.Barcode==barcode,Entry.Barcode.icontains(barcode),Entry.Name.icontains(barcode),Entry.Code==barcode,Entry.Code.icontains(barcode)))
66
+
67
+ entry=orderQuery(entry,Entry.Timestamp)
68
+ entry=entry.all()
66
69
  ct=len(entry)
67
- if ct >= 0:
70
+ if ct > 0:
71
+ htext=[]
68
72
  for num, i in enumerate(entry):
69
73
  msg=f"{Fore.light_red}{num}/{Fore.medium_violet_red}{num+1} of {Fore.light_sea_green}{ct} -> {i.seeShort()}"
74
+ htext.append(msg)
70
75
  print(msg)
71
- which=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"Which {Fore.light_red}index?{Fore.light_yellow}",helpText=f"{Fore.light_red}number{Fore.light_yellow} farthest to left of screen{Style.reset}",data="integer")
76
+ htext='\n'.join(htext)
77
+ which=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"Which {Fore.light_red}index?{Fore.light_yellow}",helpText=f"{htext}\n{Fore.light_red}number{Fore.light_yellow} farthest to left of screen{Style.reset}",data="integer")
72
78
  if which not in [None,]:
73
79
  excludes.extend(["EntryBarcode","EntryName","EntryId"])
74
80
  if which == 'd':
@@ -76,8 +82,26 @@ class HealthLogUi:
76
82
  else:
77
83
  entry=entry[which]
78
84
  else:
79
- entry=None
85
+ htext=f"{Fore.orange_red_1}No Results for '{Fore.cyan}{barcode}{Fore.orange_red_1}'{Style.reset}"
86
+ again=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Try another search?[yes/no=default]",helpText=htext,data="boolean")
87
+ if again is None:
88
+ return
89
+ elif again in [False,'d']:
90
+ entry=None
91
+ break
92
+ else:
93
+ barcode=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{h}Barcode|Code|Name[b=skips search]: ",helpText="what was consumed?",data="string")
94
+ continue
95
+
96
+ else:
97
+ htext=f"{Fore.orange_red_1}No Results for '{Fore.cyan}{barcode}{Fore.orange_red_1}'{Style.reset}"
98
+ again=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Try another search?[yes/no=default]",helpText=htext,data="boolean")
99
+ if again is None:
100
+ return
101
+ elif again in [False,'d']:
80
102
  break
103
+ else:
104
+ continue
81
105
  break
82
106
  except Exception as e:
83
107
  print(e)
@@ -184,7 +208,9 @@ class HealthLogUi:
184
208
  def showAll(self):
185
209
  try:
186
210
  with Session(ENGINE) as session:
187
- results=session.query(HealthLog).order_by(HealthLog.DTOE.asc()).all()
211
+ results=session.query(HealthLog)
212
+ results=orderQuery(results,HealthLog.DTOE)
213
+ results=results.all()
188
214
  ct=len(results)
189
215
  for num,i in enumerate(results):
190
216
  view=[]
@@ -200,6 +226,7 @@ class HealthLogUi:
200
226
  output=Path("HealthLogAll.xlsx")
201
227
  with Session(ENGINE) as session:
202
228
  query=session.query(HealthLog)
229
+ query=orderQuery(query,HealthLog.DTOE)
203
230
  df=pd.read_sql(query.statement,session.bind)
204
231
  df.to_excel(output,index=False)
205
232
  print(output.absolute())
@@ -213,6 +240,7 @@ class HealthLogUi:
213
240
  not_none=[i for i in HealthLog.__table__.columns if str(i.name) in not_none]
214
241
  with Session(ENGINE) as session:
215
242
  query=session.query(HealthLog).filter(or_(*[i!=None for i in not_none]))
243
+ query=orderQuery(query,HealthLog.DTOE)
216
244
  df=pd.read_sql(query.statement,session.bind)
217
245
  df=df[fields]
218
246
  df.to_excel(output,index=False)
@@ -229,7 +257,9 @@ class HealthLogUi:
229
257
  fields=[i for i in HealthLog.__table__.columns if str(i.name) in fields]
230
258
  not_none=[i for i in HealthLog.__table__.columns if str(i.name) in not_none]
231
259
  with Session(ENGINE) as session:
232
- results=session.query(HealthLog).filter(or_(*[i!=None for i in not_none])).order_by(HealthLog.DTOE.asc()).all()
260
+ results=session.query(HealthLog).filter(or_(*[i!=None for i in not_none]))
261
+ results=orderQuery(results,HealthLog.DTOE)
262
+ results=results.all()
233
263
  ct=len(results)
234
264
  for num,i in enumerate(results):
235
265
  view=[]
@@ -301,7 +331,7 @@ class HealthLogUi:
301
331
  },
302
332
  'add consumed':{
303
333
  'cmds':['afd','add fd','add food','adfd','add fuel','ad fl','afl'],
304
- 'desc':'Create a NEW HealthLog for JUST Weight',
334
+ 'desc':'Create a NEW HealthLog for JUST food',
305
335
  'exec':lambda self=self:self.add_healthlog_specific(
306
336
  useColumns=["EntryBarcode",
307
337
  "EntryName",
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.424'
1
+ VERSION='0.0.426'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.424
3
+ Version: 0.0.426
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=eWRwXh30bewcqmMMkNNhaddpF_Y_YjjXl28VNLA6d8s,17
8
+ radboy/__init__.py,sha256=hq5nNR68tNgPiC_M7R1sBOKY2mt1K70PEUkjLKXR8Aw,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=M2MQ6v804AIVRIqVp4h1PN1CylUInCh0mr0ivXs4VdI,136624
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=JynnaLme0RWWPvcEiFPYZmNKdsR8F29jyYCSnAgWixk,209403
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
@@ -208,10 +208,10 @@ radboy/GeoTools/__pycache__/GeoClass.cpython-313.pyc,sha256=eZ6hpLKoic1XCb7BKKg-
208
208
  radboy/GeoTools/__pycache__/OSMClass.cpython-312.pyc,sha256=5RoT8_wiI8R7yb_B9FWIC7mALdGNoqyWtkzsjM2pbh0,40387
209
209
  radboy/GeoTools/__pycache__/__init__.cpython-312.pyc,sha256=Y7Xtrzwm44-xuY_4NK8aDjYfVmXIzUFWOyexJu9le8A,1238
210
210
  radboy/GeoTools/__pycache__/__init__.cpython-313.pyc,sha256=-bk9eEIxWZgHYZHtNJbrpubDRWkbdYNkGr5J7sVhyIE,1238
211
- radboy/HealthLog/HealthLog.py,sha256=2NI3z_Hd_m18NlSSMgtBa30egWNRUmE638vzmgbWr4E,18438
211
+ radboy/HealthLog/HealthLog.py,sha256=CXumO1N_XXzn7kpynxTqfScQ-rxU4DFHp41VvXa8uL0,19659
212
212
  radboy/HealthLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
213
  radboy/HealthLog/__pycache__/HealthLog.cpython-312.pyc,sha256=hTo4o7jo9L2yqPZgzuKUw_kon_PVcCuTRguELTuLrIo,27946
214
- radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=2gYPxOf9Do08btaPkYvl-_xg_VdZ4QxOjwDpmZOmGJA,30847
214
+ radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=WFH3UTIWisG7eq1YeffnfCwHGg0Pc6aPStWWrtyuhmE,32187
215
215
  radboy/HealthLog/__pycache__/__init__.cpython-312.pyc,sha256=yZrYKBk31pGSjCRqmqzpX409iw-muC1zsNO2ObqkGlY,272
216
216
  radboy/HealthLog/__pycache__/__init__.cpython-313.pyc,sha256=cqdZbEJKq9XVoVqDAwsW0pwwBBGSerJNWGlST3YVR3g,151
217
217
  radboy/InListRestore/ILR.py,sha256=s8fbbHLKQSVJX1VaeyGE-vdIUGBEbOPX29kRIG2j2WY,16847
@@ -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=X6wC9RpI_0TUKpOBbCcdl4mN57yXM2yz3vYX3agSL-A,165
393
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=NSJDnWfSFiVgdTB96PYASq_vDbVpQI60Qw1tqt9v8RE,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.424.dist-info/METADATA,sha256=Wx1BKjZMF605zihg3Ds3tI1wERjLsV9bFFEHBcnybQQ,794
419
- radboy-0.0.424.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
- radboy-0.0.424.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
- radboy-0.0.424.dist-info/RECORD,,
418
+ radboy-0.0.426.dist-info/METADATA,sha256=tl8QrVKCNV45nh2j2tGqiJgTjGDd7hlYj-F20oBIVWw,794
419
+ radboy-0.0.426.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
420
+ radboy-0.0.426.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
421
+ radboy-0.0.426.dist-info/RECORD,,