radboy 0.0.635__py3-none-any.whl → 0.0.637__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=decc("0.00",cf=ROUNDTO)
193
+ master_total_crv=decc("0.00",cf=ROUNDTO)
194
+ master_total_tax=decc("0.00",cf=ROUNDTO)
195
+ master_total_tax_crv=decc("0.00",cf=ROUNDTO)
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=decc("0.00",cf=ROUNDTO)
198
+ crv=decc("0.00",cf=ROUNDTO)
199
+ tax=decc("0.00",cf=ROUNDTO)
200
+ tax_crv=decc("0.00",cf=ROUNDTO)
201
+ i.Tax=decc(i.Tax,cf=ROUNDTO)
202
+ i.CRV=decc(i.CRV,cf=ROUNDTO)
203
+ i.Price=decc(i.Price,cf=ROUNDTO)
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+=decc(getattr(i,f),cf=ROUNDTO)
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,12 @@ 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
+
1139
+ master_total=decc("0.0000",cf=ROUNDTO)
1140
+ master_total_crv=decc("0.00",cf=ROUNDTO)
1141
+ master_total_tax=decc("0.0000",cf=ROUNDTO)
1142
+ master_total_tax_crv=decc("0.0000",cf=ROUNDTO)
1143
+
1143
1144
  reRunRequired=False
1144
1145
  for num,i in enumerate(results):
1145
1146
  getExtras(i.EntryId,extras)
@@ -1171,38 +1172,39 @@ class Prompt(object):
1171
1172
  Fore.orange_3,
1172
1173
  ]
1173
1174
  #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)
1175
+ total=decc("0.0000",cf=ROUNDTO)
1176
+ crv=decc("0.0000",cf=ROUNDTO)
1177
+ tax=decc("0.0000",cf=ROUNDTO)
1178
+ tax_crv=decc("0.0000",cf=ROUNDTO)
1179
+ i.Tax=decc(i.Tax,cf=ROUNDTO)
1180
+ i.CRV=decc(i.CRV,cf=ROUNDTO)
1181
+ i.Price=decc(i.Price,cf=ROUNDTO)
1181
1182
  try:
1182
1183
  if (i.Price+i.CRV) > 0:
1183
- taxRate=Decimal(i.Tax/(i.Price+i.CRV))
1184
+ taxRate=decc(i.Tax/(i.Price+i.CRV),cf=ROUNDTO)
1184
1185
  else:
1185
- taxRate=Decimal('0.00000')
1186
+ taxRate=decc('0.00000',cf=ROUNDTO)
1186
1187
 
1187
1188
  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')
1189
+ taxRate=decc('0.00000',cf=ROUNDTO)
1190
+ i.Tax=decc('0.0000',cf=ROUNDTO)
1191
+ i.Price=decc('0.0000',cf=ROUNDTO)
1192
+ i.CRV=decc('0.0000',cf=ROUNDTO)
1192
1193
  session.commit()
1193
1194
  session.refresh(i)
1194
1195
 
1195
1196
  #print("#1")
1197
+
1196
1198
  if not minus:
1197
1199
  for n2,f in enumerate(location_fields):
1198
1200
  try:
1199
1201
  if getattr(i,f) > 0:
1200
- total+=Decimal(getattr(i,f))
1202
+ total+=decc(getattr(i,f),cf=ROUNDTO)
1201
1203
  except Exception as e:
1202
1204
  print(e)
1203
1205
  for n2,f in enumerate(location_fields):
1204
1206
  if getattr(i,f) > 0:
1205
- msg2=f'{colormapped[n2]}{f} = {Decimal(getattr(i,f))}{Style.reset}'
1207
+ msg2=f'{colormapped[n2]}{f} = {decc(getattr(i,f),cf=ROUNDTO)}{Style.reset}'
1206
1208
  if n2 < len(location_fields):
1207
1209
  msg2+=","
1208
1210
  msg+=msg2
@@ -1210,19 +1212,20 @@ class Prompt(object):
1210
1212
  for n2,f in enumerate(location_fields):
1211
1213
  try:
1212
1214
  if getattr(i,f) != 0:
1213
- total+=Decimal(getattr(i,f))
1215
+ total+=decc(getattr(i,f),cf=ROUNDTO)
1214
1216
  except Exception as e:
1215
1217
  print(e)
1216
1218
  for n2,f in enumerate(location_fields):
1217
1219
  if getattr(i,f) != 0:
1218
- msg2=f'{colormapped[n2]}{f} = {Decimal(str(getattr(i,f)))}{Style.reset}'
1220
+ msg2=f'{colormapped[n2]}{f} = {decc(str(getattr(i,f)),cf=ROUNDTO)}{Style.reset}'
1219
1221
  if n2 < len(location_fields):
1220
1222
  msg2+=","
1221
1223
  msg+=msg2
1222
- master_total+=total*Decimal(i.Price)
1223
1224
 
1224
- crv+=(Decimal(i.CRV)*total)
1225
- tax+=(Decimal(i.Tax)*total)
1225
+ master_total+=total*decc(i.Price,cf=ROUNDTO)
1226
+
1227
+ crv+=(decc(i.CRV,cf=ROUNDTO)*total)
1228
+ tax+=(decc(i.Tax,cf=ROUNDTO)*total)
1226
1229
 
1227
1230
  tax_crv=(crv+tax)
1228
1231
  master_total_tax+=tax
@@ -1230,42 +1233,43 @@ class Prompt(object):
1230
1233
  master_total_tax_crv+=tax_crv
1231
1234
  #print("#exegen",type(total),type(tax_crv))
1232
1235
  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")
1236
+ #print((total*decc(i.Price)+tax_crv),"s1")
1237
+ #print(decc(getSuperTotal(results,location_fields,colormapped)['final total']).quantize(decc("00.00")),"s2")
1235
1238
  #print(tax_crv,"s3")
1236
1239
  #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'])
1240
+ if (total*decc(i.Price,cf=ROUNDTO)+tax+crv) > 0:
1241
+ super_total=(total*decc(i.Price)+tax+crv)/decc(getSuperTotal(results,location_fields,colormapped)['final total'],cf=ROUNDTO)
1239
1242
  super_total=super_total*100
1240
1243
  else:
1241
1244
  super_total=0
1242
1245
  except Exception as e:
1243
- p1=total*Decimal(i.Price)+tax_crv
1244
- p2=Decimal(getSuperTotal(results,location_fields,colormapped)['final total'])
1246
+ p1=total*decc(i.Price,cf=ROUNDTO)+tax_crv
1247
+ p2=decc(getSuperTotal(results,location_fields,colormapped)['final total'],cf=ROUNDTO)
1245
1248
  print(e)
1246
1249
  print(p1,"p1")
1247
1250
  print(p2,"p2")
1248
1251
  super_total=0
1249
1252
  #print("#exegen2")
1250
- super_total=Decimal(super_total)
1253
+ super_total=decc(super_total,cf=ROUNDTO)
1251
1254
  #print(super_total)
1255
+
1252
1256
  if simple:
1253
1257
  msg+=f""" Total = {total}"""
1254
1258
  print(db.strip_colors(msg))
1255
1259
  else:
1256
1260
  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}
1261
+ {Fore.light_magenta}Price({decc(i.Price):.{getcontext().prec}f}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({total}):{decc(i.Price)*total:.{getcontext().prec}f}
1262
+ {Fore.grey_70}+CRV({decc(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1263
+ {Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*decc(i.Price):.{getcontext().prec}f})
1264
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decc(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
1265
+ {Fore.grey_70}+Tax({decc(i.Tax):.{getcontext().prec}f}) w/o CRV({decc(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1262
1266
  {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}
1267
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decc(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
1268
+ {Fore.grey_70}+Tax({decc(i.Tax):.{getcontext().prec}f}) w/ CRV({decc(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1265
1269
  {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}
1270
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*decc(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
1267
1271
  {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}
1272
+ {Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={decc(taxRate*100):.{getcontext().prec}f}%{Style.reset}
1269
1273
  {'*'*os.get_terminal_size().columns}{Style.reset}"""
1270
1274
  if bldlse:
1271
1275
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
@@ -1297,10 +1301,11 @@ class Prompt(object):
1297
1301
  cse(i.Barcode)
1298
1302
  continue
1299
1303
 
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))
1304
+ #exit(f"here {master_total} {master_total_crv} {master_total_tax} {master_total_tax_crv}")
1305
+ master_total=decc(str(master_total),cf=ROUNDTO)
1306
+ master_total_crv=decc(str(master_total_crv),cf=ROUNDTO)
1307
+ master_total_tax=decc(str(master_total_tax),cf=ROUNDTO)
1308
+ master_total_tax_crv=decc(str(master_total_tax_crv),cf=ROUNDTO)
1304
1309
 
1305
1310
  actual=(master_total_crv+master_total)+master_total_tax
1306
1311
 
radboy/DB/types.py CHANGED
@@ -1,5 +1,5 @@
1
1
  from decimal import Decimal as TDecimal,getcontext
2
- import string,random
2
+ import string,random,re
3
3
  class decc(TDecimal):
4
4
  ''' defines a decimal of 'cf\''''
5
5
  def __new__(self,value,cf=3):
@@ -14,8 +14,23 @@ class decc(TDecimal):
14
14
  value=f"{value:.{cf}f}"
15
15
  print(value)
16
16
  '''
17
-
18
- value=f"{value:.{cf}f}"
17
+ print(value,type(value))
18
+ if isinstance(value,str):
19
+ scientific=re.findall(r'[-+]?[0-9]+\.?[0-9]*[Ee](?:\ *[-+]?\ *[0-9]+)?',value)
20
+ if len(scientific) < 1:
21
+ try:
22
+ whole,part=value.split(".")
23
+ except Exception as e:
24
+ whole,part=value,"0"*cf
25
+ if len(part) > cf:
26
+ part=part[:cf-1]
27
+ value=f"{whole}.{part}"
28
+ print(value)
29
+ else:
30
+ pass
31
+
32
+ else:
33
+ value=f"{value:.{cf}f}"
19
34
  return super().__new__(self,value)
20
35
 
21
36
  class dec3(TDecimal):
@@ -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.635'
1
+ VERSION='0.0.637'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.635
3
+ Version: 0.0.637
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=T7T2pzTj5E9MKJIKP_fEZBxprI9smmGTa4RfKwo-eBY,17
8
+ radboy/__init__.py,sha256=KpbRErXmwbZBx529_08OhxumP8psv-2FE57sL0bjdLo,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,7 +87,7 @@ 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=P8cQg9bxU5q13G2UScsmzOrBIR2Far4923eBwz0WVo4,167060
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
@@ -100,7 +100,7 @@ radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,456
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=uxDpJDHa9TPUDz9kbMvfFham0fDbLKwk88fkpmQravk,3825
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=J6mKv__62KSvmzb7RoO6JPd5tvux4oH12RLz9zqAYMU,251947
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
@@ -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=zltEK0XsVJmEjZAULQ-EwKM1DC-1apkR2FsRJ_0XdO0,165
404
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=cPpgtLvEWNhEH38L-_7yNl4am9LRN4EWwHueMx9A7i8,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.635.dist-info/METADATA,sha256=2yEgY4IZ2w6_8mPI6rnnzaAdrBthFZSXYEcfp8lDdOo,1891
433
- radboy-0.0.635.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
434
- radboy-0.0.635.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
435
- radboy-0.0.635.dist-info/RECORD,,
432
+ radboy-0.0.637.dist-info/METADATA,sha256=ViD4OzEs0y5YrZN4FwxTPmoblnBHaBMLKRPJkl8sJSM,1891
433
+ radboy-0.0.637.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
434
+ radboy-0.0.637.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
435
+ radboy-0.0.637.dist-info/RECORD,,