radboy 0.0.634__py3-none-any.whl → 0.0.636__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
@@ -34,9 +34,7 @@ from uuid import uuid1
34
34
  import zipfile,pydoc
35
35
  import math
36
36
  import enum
37
-
38
-
39
-
37
+ from radboy.DB.types import *
40
38
 
41
39
  try:
42
40
  import resource
@@ -191,23 +189,23 @@ def getExtras(entryId,extras):
191
189
  def getSuperTotal(results,location_fields,colormapped):
192
190
  with db.Session(db.ENGINE) as session:
193
191
  ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
194
- master_total=Decimal("0.00")
195
- master_total_crv=Decimal("0.00")
196
- master_total_tax=Decimal("0.00")
197
- master_total_tax_crv=Decimal("0.00")
192
+ master_total=decR("0.00")
193
+ master_total_crv=decR("0.00")
194
+ master_total_tax=decR("0.00")
195
+ master_total_tax_crv=decR("0.00")
198
196
  for num,i in enumerate(results):
199
- total=Decimal("0.00")
200
- crv=Decimal("0.00")
201
- tax=Decimal("0.00")
202
- tax_crv=Decimal("0.00")
203
- i.Tax=Decimal(i.Tax)
204
- i.CRV=Decimal(i.CRV)
205
- i.Price=Decimal(i.Price)
197
+ total=decR("0.00")
198
+ crv=decR("0.00")
199
+ tax=decR("0.00")
200
+ tax_crv=decR("0.00")
201
+ i.Tax=decR(i.Tax)
202
+ i.CRV=decR(i.CRV)
203
+ i.Price=decR(i.Price)
206
204
  session.commit()
207
205
  for n2,f in enumerate(location_fields):
208
206
  try:
209
207
  if getattr(i,f) > 0:
210
- total+=Decimal(getattr(i,f))
208
+ total+=decR(getattr(i,f))
211
209
  except Exception as e:
212
210
  print(e)
213
211
 
@@ -947,6 +945,7 @@ class Prompt(object):
947
945
 
948
946
 
949
947
  def __init2__(self,func,ptext='do what',helpText='',data={},noHistory=False,qc=None,replace_ptext=None,alt_input=None):
948
+ ROUNDTO=int(db.detectGetOrSet("TotalSpent ROUNDTO default",4,setValue=False,literal=True))
950
949
  '''
951
950
  lsbld - bldls()
952
951
  lsbld- - bldls(minus=True)
@@ -1136,10 +1135,10 @@ class Prompt(object):
1136
1135
  return
1137
1136
  #start
1138
1137
  ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",3,setValue=False,literal=True))
1139
- master_total=Decimal("0.0000")
1140
- master_total_crv=Decimal("0.00")
1141
- master_total_tax=Decimal("0.0000")
1142
- master_total_tax_crv=Decimal("0.0000")
1138
+ master_total=decc("0.0000",cf=ROUNDTO)
1139
+ master_total_crv=decc("0.00",cf=ROUNDTO)
1140
+ master_total_tax=decc("0.0000",cf=ROUNDTO)
1141
+ master_total_tax_crv=decc("0.0000",cf=ROUNDTO)
1143
1142
  reRunRequired=False
1144
1143
  for num,i in enumerate(results):
1145
1144
  getExtras(i.EntryId,extras)
@@ -1171,24 +1170,24 @@ class Prompt(object):
1171
1170
  Fore.orange_3,
1172
1171
  ]
1173
1172
  #print("#0")
1174
- total=Decimal("0.0000")
1175
- crv=Decimal("0.0000")
1176
- tax=Decimal("0.0000")
1177
- tax_crv=Decimal("0.0000")
1178
- i.Tax=Decimal(i.Tax)
1179
- i.CRV=Decimal(i.CRV)
1180
- i.Price=Decimal(i.Price)
1173
+ total=decc("0.0000",cf=ROUNDTO)
1174
+ crv=decc("0.0000",cf=ROUNDTO)
1175
+ tax=decc("0.0000",cf=ROUNDTO)
1176
+ tax_crv=decc("0.0000",cf=ROUNDTO)
1177
+ i.Tax=decc(i.Tax,cf=ROUNDTO)
1178
+ i.CRV=decc(i.CRV,cf=ROUNDTO)
1179
+ i.Price=decc(i.Price,cf=ROUNDTO)
1181
1180
  try:
1182
1181
  if (i.Price+i.CRV) > 0:
1183
- taxRate=Decimal(i.Tax/(i.Price+i.CRV))
1182
+ taxRate=decc(i.Tax/(i.Price+i.CRV),cf=ROUNDTO)
1184
1183
  else:
1185
- taxRate=Decimal('0.00000')
1184
+ taxRate=decc('0.00000',cf=ROUNDTO)
1186
1185
 
1187
1186
  except Exception as e:
1188
- taxRate=Decimal('0.00000')
1189
- i.Tax=Decimal('0.0000')
1190
- i.Price=Decimal('0.0000')
1191
- i.CRV=Decimal('0.0000')
1187
+ taxRate=decc('0.00000',cf=ROUNDTO)
1188
+ i.Tax=decc('0.0000',cf=ROUNDTO)
1189
+ i.Price=decc('0.0000',cf=ROUNDTO)
1190
+ i.CRV=decc('0.0000',cf=ROUNDTO)
1192
1191
  session.commit()
1193
1192
  session.refresh(i)
1194
1193
 
@@ -1197,12 +1196,12 @@ class Prompt(object):
1197
1196
  for n2,f in enumerate(location_fields):
1198
1197
  try:
1199
1198
  if getattr(i,f) > 0:
1200
- total+=Decimal(getattr(i,f))
1199
+ total+=decR(getattr(i,f))
1201
1200
  except Exception as e:
1202
1201
  print(e)
1203
1202
  for n2,f in enumerate(location_fields):
1204
1203
  if getattr(i,f) > 0:
1205
- msg2=f'{colormapped[n2]}{f} = {Decimal(getattr(i,f))}{Style.reset}'
1204
+ msg2=f'{colormapped[n2]}{f} = {decR(getattr(i,f))}{Style.reset}'
1206
1205
  if n2 < len(location_fields):
1207
1206
  msg2+=","
1208
1207
  msg+=msg2
@@ -1210,19 +1209,19 @@ class Prompt(object):
1210
1209
  for n2,f in enumerate(location_fields):
1211
1210
  try:
1212
1211
  if getattr(i,f) != 0:
1213
- total+=Decimal(getattr(i,f))
1212
+ total+=decc(getattr(i,f),cf=ROUNDTO)
1214
1213
  except Exception as e:
1215
1214
  print(e)
1216
1215
  for n2,f in enumerate(location_fields):
1217
1216
  if getattr(i,f) != 0:
1218
- msg2=f'{colormapped[n2]}{f} = {Decimal(str(getattr(i,f)))}{Style.reset}'
1217
+ msg2=f'{colormapped[n2]}{f} = {decc(str(getattr(i,f)),cf=ROUNDTO)}{Style.reset}'
1219
1218
  if n2 < len(location_fields):
1220
1219
  msg2+=","
1221
1220
  msg+=msg2
1222
- master_total+=total*Decimal(i.Price)
1221
+ master_total+=total*decc(i.Price,cf=ROUNDTO)
1223
1222
 
1224
- crv+=(Decimal(i.CRV)*total)
1225
- tax+=(Decimal(i.Tax)*total)
1223
+ crv+=(decc(i.CRV,cf=ROUNDTO)*total)
1224
+ tax+=(decc(i.Tax,cf=ROUNDTO)*total)
1226
1225
 
1227
1226
  tax_crv=(crv+tax)
1228
1227
  master_total_tax+=tax
@@ -1230,42 +1229,42 @@ class Prompt(object):
1230
1229
  master_total_tax_crv+=tax_crv
1231
1230
  #print("#exegen",type(total),type(tax_crv))
1232
1231
  try:
1233
- #print((total*Decimal(i.Price)+tax_crv),"s1")
1234
- #print(Decimal(getSuperTotal(results,location_fields,colormapped)['final total']).quantize(Decimal("00.00")),"s2")
1232
+ #print((total*decR(i.Price)+tax_crv),"s1")
1233
+ #print(decR(getSuperTotal(results,location_fields,colormapped)['final total']).quantize(decR("00.00")),"s2")
1235
1234
  #print(tax_crv,"s3")
1236
1235
  #super_total=(round(round(round(total*i.Price,ROUNDTO)+tax_crv,ROUNDTO)/getSuperTotal(results,location_fields,colormapped)['final total'],ROUNDTO))*100
1237
- if (total*Decimal(i.Price)+tax+crv) > 0:
1238
- super_total=(total*Decimal(i.Price)+tax+crv)/Decimal(getSuperTotal(results,location_fields,colormapped)['final total'])
1236
+ if (total*decc(i.Price,cf=ROUNDTO)+tax+crv) > 0:
1237
+ super_total=(total*decc(i.Price)+tax+crv)/decc(getSuperTotal(results,location_fields,colormapped)['final total'],cf=ROUNDTO)
1239
1238
  super_total=super_total*100
1240
1239
  else:
1241
1240
  super_total=0
1242
1241
  except Exception as e:
1243
- p1=total*Decimal(i.Price)+tax_crv
1244
- p2=Decimal(getSuperTotal(results,location_fields,colormapped)['final total'])
1242
+ p1=total*decc(i.Price,cf=ROUNDTO)+tax_crv
1243
+ p2=decc(getSuperTotal(results,location_fields,colormapped)['final total'],cf=ROUNDTO)
1245
1244
  print(e)
1246
1245
  print(p1,"p1")
1247
1246
  print(p2,"p2")
1248
1247
  super_total=0
1249
1248
  #print("#exegen2")
1250
- super_total=Decimal(super_total)
1249
+ super_total=decR(super_total)
1251
1250
  #print(super_total)
1252
1251
  if simple:
1253
1252
  msg+=f""" Total = {total}"""
1254
1253
  print(db.strip_colors(msg))
1255
1254
  else:
1256
1255
  msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{total}
1257
- {Fore.light_magenta}Price({Decimal(i.Price):.{getcontext().prec}f}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({total}):{Decimal(i.Price)*total:.{getcontext().prec}f}
1258
- {Fore.grey_70}+CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1259
- {Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*Decimal(i.Price):.{getcontext().prec}f})
1260
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
1261
- {Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/o CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1256
+ {Fore.light_magenta}Price({decR(i.Price):.{getcontext().prec}f}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({total}):{decR(i.Price)*total:.{getcontext().prec}f}
1257
+ {Fore.grey_70}+CRV({decR(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1258
+ {Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*decR(i.Price):.{getcontext().prec}f})
1259
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decR(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
1260
+ {Fore.grey_70}+Tax({decR(i.Tax):.{getcontext().prec}f}) w/o CRV({decR(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1262
1261
  {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxNoCRVTotal({tax:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1263
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
1264
- {Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/ CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1262
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decR(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
1263
+ {Fore.grey_70}+Tax({decR(i.Tax):.{getcontext().prec}f}) w/ CRV({decR(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1265
1264
  {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxCRVTotal({tax_crv:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1266
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
1265
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decR(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
1267
1266
  {Fore.medium_violet_red}PercentOfTotal({super_total:.{getcontext().prec}f}%) of FinalTotal({getSuperTotal(results,location_fields,colormapped)['final total']})
1268
- {Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={Decimal(taxRate*100):.{getcontext().prec}f}%{Style.reset}
1267
+ {Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={decR(taxRate*100):.{getcontext().prec}f}%{Style.reset}
1269
1268
  {'*'*os.get_terminal_size().columns}{Style.reset}"""
1270
1269
  if bldlse:
1271
1270
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
@@ -1297,10 +1296,10 @@ class Prompt(object):
1297
1296
  cse(i.Barcode)
1298
1297
  continue
1299
1298
 
1300
- master_total=Decimal(str(master_total))
1301
- master_total_crv=Decimal(str(master_total_crv))
1302
- master_total_tax=Decimal(str(master_total_tax))
1303
- master_total_tax_crv=Decimal(str(master_total_tax_crv))
1299
+ master_total=decR(str(master_total))
1300
+ master_total_crv=decR(str(master_total_crv))
1301
+ master_total_tax=decR(str(master_total_tax))
1302
+ master_total_tax_crv=decR(str(master_total_tax_crv))
1304
1303
 
1305
1304
  actual=(master_total_crv+master_total)+master_total_tax
1306
1305
 
Binary file
radboy/DB/db.py CHANGED
@@ -5779,6 +5779,10 @@ def check_rob(self):
5779
5779
  return ROBS,ROBE
5780
5780
  except Exception as e:
5781
5781
  print(e)
5782
- ROBS,ROBE=check_rob(None)
5782
+ try:
5783
+ ROBS,ROBE=check_rob(None)
5784
+ except Exception as e:
5785
+ print(e,"Rebooting may fix this!")
5786
+ ROBS,ROBE=['','']
5783
5787
 
5784
5788
  #'''
radboy/DB/types.py CHANGED
@@ -96,3 +96,5 @@ class stre(str):
96
96
  else:
97
97
  raise NotImplemented
98
98
 
99
+
100
+ decR=lambda x,ROUNDTO=4:decc(x,cf=ROUNDTO)
@@ -1097,19 +1097,19 @@ fxtbl - update table with correct columns
1097
1097
  try:
1098
1098
  if i.EntryId not in totals:
1099
1099
  #total from fields not occurances
1100
- totals[i.EntryId]=0
1101
- totals_dl[i.EntryId]=i
1100
+ totals[i.EntryId]=decc(0,cf=ROUNDTO)
1101
+ totals_dl[i.EntryId]=decc(i,cf=ROUNDTO)
1102
1102
 
1103
- total_crv[i.EntryId]=i.CRV*0
1104
- total_tax[i.EntryId]=i.Tax*0
1105
- total_price[i.EntryId]=i.Price*0
1103
+ total_crv[i.EntryId]=decc(i.CRV)*decc(0,cf=ROUNDTO)
1104
+ total_tax[i.EntryId]=decc(i.Tax)*decc(0,cf=ROUNDTO)
1105
+ total_price[i.EntryId]=decc(i.Price)*decc(0,cf=ROUNDTO)
1106
1106
  for x in fields_for_total:
1107
1107
  try:
1108
1108
 
1109
- totals[i.EntryId]+=round(getattr(i,x),ROUNDTO)
1110
- crv=round(i.CRV*getattr(i,x),ROUNDTO)
1111
- tax=round(i.Tax*getattr(i,x),ROUNDTO)
1112
- price=round(i.Price*getattr(i,x),ROUNDTO)
1109
+ totals[i.EntryId]+=decc(getattr(i,x),cf=ROUNDTO)
1110
+ crv=decc(i.CRV*getattr(i,x),cf=ROUNDTO)
1111
+ tax=decc(i.Tax*getattr(i,x),cf=ROUNDTO)
1112
+ price=decc(i.Price*getattr(i,x),cf=ROUNDTO)
1113
1113
  msg=f"{num}/{num+1} of {len(query)}{i.seeShort()}\t{Fore.light_sea_green}CRV:{Fore.light_steel_blue}{crv}\n\t{Fore.light_sea_green}TAX:{Fore.light_steel_blue}{tax}\n\t{Fore.light_sea_green}Price:{Fore.light_steel_blue}{price}\n\t{Fore.light_green}Total:{Fore.light_steel_blue}{round(crv+tax+price,ROUNDTO)}\n{Fore.light_sea_green}For Date:{Fore.dark_goldenrod}{i.DayLogDate}({datetime(i.DayLogDate.year,i.DayLogDate.month,i.DayLogDate.day).strftime('%B[Mnth]/%A[DayNm]/%V[WK#]')}){Style.reset}"
1114
1114
  print(msg)
1115
1115
  if export:
@@ -1121,15 +1121,13 @@ fxtbl - update table with correct columns
1121
1121
  logInput(msg2,user=False,filter_colors=True,maxed_hfl=False,ofile=text_cr_export)
1122
1122
 
1123
1123
  total_crv[i.EntryId]+=crv
1124
- total_crv[i.EntryId]=round(total_crv[i.EntryId],ROUNDTO)
1125
1124
 
1126
1125
  total_tax[i.EntryId]+=tax
1127
- total_tax[i.EntryId]=round(total_tax[i.EntryId],ROUNDTO)
1128
1126
 
1129
1127
  total_price[i.EntryId]+=price
1130
- total_price[i.EntryId]=round(total_price[i.EntryId],ROUNDTO)
1128
+
1131
1129
  total_expense+=(tax+price+crv)
1132
- total_expense=round(total_expense,ROUNDTO)
1130
+ total_expense=decc(total_expense,cf=ROUNDTO)
1133
1131
  except Exception as ee:
1134
1132
  print(ee,repr(ee),x,i.seeShort())
1135
1133
  except Exception as e:
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.634'
1
+ VERSION='0.0.636'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.634
3
+ Version: 0.0.636
4
4
  Summary: A Retail Calculator for Android/Linux
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=KI7Jmf3MX0Zng_YUvcjVKN2siyUOhaMAHQGzpPuX8KQ,41373
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=YkWF0-YJBL2gNdQzi8jKDc1PK-1rRudOYLbfcFpSlpw,17
8
+ radboy/__init__.py,sha256=UBvy7HCgsGul5Ygf6DQL0WGNElYxRnoILhDl_fDhCMk,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
@@ -87,20 +87,20 @@ radboy/DB/OrderedAndRxd.py,sha256=PZ_Rbm0H3DFhHuN1SZEnd1RhEnKOU_L0X0MHXwYN3-s,23
87
87
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
88
88
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
89
89
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- radboy/DB/Prompt.py,sha256=oG8ebY-mfW2qwN4Fdyzy2u4FcwTI6YnWUupnW0Menjs,166506
90
+ radboy/DB/Prompt.py,sha256=lkCxjs3W5pZyKj0FCV8td5pVUpGtH-cEbvt3gk3gAXM,166735
91
91
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
92
92
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
93
93
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
94
94
  radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
95
95
  radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
96
96
  radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
97
- radboy/DB/db.py,sha256=L95R7pTjbk6HDkSuYX-xKFWxEqHTSJ3UgBH6qMH0XpI,257935
97
+ radboy/DB/db.py,sha256=-IlZb3HB-2IODdX0k6DD8pnm8A1OP-Urx-U6QvZghWw,258028
98
98
  radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
99
99
  radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
100
100
  radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
101
101
  radboy/DB/renderText2Png.py,sha256=PWnTicLTfOPg9UlQYia3wMpjM9rh7MIyDVsmcsDRUBo,5678
102
102
  radboy/DB/testClass.py,sha256=t3zT1gbvReUncnPY8R9JUfKXQ5UEB2wmQx8DNeds0hI,310
103
- radboy/DB/types.py,sha256=BjlUUgbvlB7QoZMzsET0Myj8_z4OGUlW5--Rl-lCszs,3258
103
+ radboy/DB/types.py,sha256=X9UI3Opx3Bv-VEi3MOi3h9sG6wdQbxr78YjN-q-8OPU,3302
104
104
  radboy/DB/__pycache__/DatePicker.cpython-311.pyc,sha256=VMJnJ7scb4VHMQi1HDZCF67KVYfb9m-fZK96IAoJzTQ,19676
105
105
  radboy/DB/__pycache__/DatePicker.cpython-312.pyc,sha256=cc5XWJ6Sbtcg0xWPz3SOP93VceIqr1pH42kjkLl5iYs,30294
106
106
  radboy/DB/__pycache__/DatePicker.cpython-313.pyc,sha256=jV__j5ER1oshsenGPynR0UNHWMI7VStgyw73-iLKxzg,33993
@@ -112,7 +112,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
112
112
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
113
113
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
114
114
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
115
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=KUYBQ23xP0FBz-0csvGFniDtl4sgLcmdRXTjWQAHVNc,252035
115
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=ZVOclt9s8KSalBsgBsWG3TN5v0JS81nxaQVzqJDR6mE,251934
116
116
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
117
117
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
118
118
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -130,7 +130,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
130
130
  radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
131
131
  radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
132
132
  radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
133
- radboy/DB/__pycache__/db.cpython-313.pyc,sha256=Qhp2ANnX5Mg2PQGx1Ivgg8MhevmjYK_3tvCLHNYuohY,403994
133
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=bI1sY0NnJUtO7U_7Klvn2JcApVo6r-OUX1ZmNKCyRiE,404160
134
134
  radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
135
135
  radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
136
136
  radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
@@ -139,7 +139,7 @@ radboy/DB/__pycache__/renderText2Png.cpython-311.pyc,sha256=ivSzvyAeWhsS-a_RcFF8
139
139
  radboy/DB/__pycache__/renderText2Png.cpython-312.pyc,sha256=1CUGjOhJw_vC4DNMQ-W5jBXEKp7HzDrq7--x9VyBTo8,8991
140
140
  radboy/DB/__pycache__/renderText2Png.cpython-313.pyc,sha256=LDJOo7uFztlxw3ptN8QuHrLkr0GKiAArBu34QiE15iQ,9096
141
141
  radboy/DB/__pycache__/testClass.cpython-311.pyc,sha256=nkWap8RuBsWWOB_ZhGbR3ELbnL1F1CHZCi0dpepqw-0,1225
142
- radboy/DayLog/DayLogger.py,sha256=cdBae7g6ko2BEfVlb1vkXS8vnwpoBFQkRfdRYS4t_Sg,102711
142
+ radboy/DayLog/DayLogger.py,sha256=lCmx3zRpbN1u2TpOKgt3KY4vCEF0C1JbyGeogzPq8jE,102566
143
143
  radboy/DayLog/TaxiFares.py,sha256=3slYjtBcTnRe8IeneJ-_iZJJ3E7alW09f6GWYXPxhOo,10882
144
144
  radboy/DayLog/Wavelength4Freq.py,sha256=MfN2EATrN3bbEDgP1qOPjV1Fk8sVnkc_4tgX6sKfSE0,2054
145
145
  radboy/DayLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -147,7 +147,7 @@ radboy/DayLog/BhTrSa/__init__.py,sha256=q6xDsXAiWpQR2QWILKZKf--D3apR_KOE1CRbZaP7
147
147
  radboy/DayLog/BhTrSa/bhtrsaa.py,sha256=3ECYU_2yMNS_zsN0ZD6BbiIwbWcJ9mokUwOt_hkTAYs,18233
148
148
  radboy/DayLog/__pycache__/DayLogger.cpython-311.pyc,sha256=TmRnRZHp5tMTokSEB8hWTxnasi-iJdh6TmYcb_nXGoY,29557
149
149
  radboy/DayLog/__pycache__/DayLogger.cpython-312.pyc,sha256=bfDCQZrIhgQYzoUle7roicRE_bhGPYZtIbCRIiDrsxU,68240
150
- radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=gitldqReXV97m3GaZaqbIDw29gZPVieZ3kI6j4d8gXM,152037
150
+ radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=hU_gGXyb802t5kR6AELpA7Ix2juDgbnNytaDrLalGnA,151894
151
151
  radboy/DayLog/__pycache__/__init__.cpython-311.pyc,sha256=Z5Y4DdVF77LZf6-Of92MDGFdi-IXik1ASQd4AdLNNfQ,231
152
152
  radboy/DayLog/__pycache__/__init__.cpython-312.pyc,sha256=lP_GHzSPt5JTrT1jLWiRMFGPmSdJYBn4eRV__OxgJ6s,269
153
153
  radboy/DayLog/__pycache__/__init__.cpython-313.pyc,sha256=UQw5v4r7yismC9qcqP0dEme6h-lawbOA5pXYpkqUwFk,148
@@ -401,7 +401,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
401
401
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
402
402
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
403
403
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
404
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=c160hB8jJZB23K0CX8TwMzEYExRy6MK1khBOFnmD7Sg,165
404
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=WL1GTbbZWZ2upB5RCQ9ERY8PlezI5jy3udI6FUCEh2w,165
405
405
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
406
406
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
407
407
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -429,7 +429,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
429
429
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
430
430
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
431
431
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
432
- radboy-0.0.634.dist-info/METADATA,sha256=fiWU1oJ4ThrUOX0uMbovKBG2Uck40FF3eylJy2JiapU,1891
433
- radboy-0.0.634.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
434
- radboy-0.0.634.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
435
- radboy-0.0.634.dist-info/RECORD,,
432
+ radboy-0.0.636.dist-info/METADATA,sha256=zQdfICJ_bgDNlyM5FFPlLkhE4RYKtK0jZxjdCaP-iX4,1891
433
+ radboy-0.0.636.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
434
+ radboy-0.0.636.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
435
+ radboy-0.0.636.dist-info/RECORD,,