radboy 0.0.566__py3-none-any.whl → 0.0.568__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.

@@ -0,0 +1,37 @@
1
+ from . import *
2
+
3
+
4
+
5
+ '''
6
+ $PB=number selected from internal storage
7
+
8
+ sendlist pn - scan through Entries and send list data for selected list fields with inList==True to phonenumber
9
+ sendlist pb - scan through Entries and send list data for selected list fields with inList==True to $PB
10
+
11
+ send msg pn - send text msg to phonenumber
12
+ send msg pb - send text msg to $PB
13
+
14
+ process app text msg - process textual data recieved from texting app into useable data for radboy
15
+ -ask if user wants to save to system or just view data sent
16
+
17
+ enable and init twilio api,eaita -enable twilio api and save api key
18
+
19
+ '''
20
+ class c2cm:
21
+ def __init__(self):
22
+ pass
23
+
24
+
25
+ def sendmsg(self):
26
+ FROM=Control(func=FormBuilderMkText,ptext="Phone Number FROM?",helpText="10 digit",data="string")
27
+ if FROM is None:
28
+ return
29
+ to=Control(func=FormBuilderMkText,ptext="Phone Number to Send Msg to?",helpText="10 digit",data="string")
30
+ if to is None:
31
+ return
32
+
33
+ msg=Control(func=FormBuilderMkText,ptext="Msg To Send: ",helpText="text message",data="string")
34
+ if msg is None:
35
+ return
36
+
37
+
@@ -0,0 +1,28 @@
1
+ from radboy.DB.db import *
2
+ #from radboy.DB.RandomStringUtil import *
3
+ #import radboy.Unified.Unified as unified
4
+ #import radboy.possibleCode as pc
5
+ from radboy.DB.Prompt import *
6
+ from radboy.DB.Prompt import prefix_text
7
+ #from radboy.TasksMode.ReFormula import *
8
+ #from radboy.TasksMode.SetEntryNEU import *
9
+ from radboy.FB.FormBuilder import *
10
+ from radboy.FB.FBMTXT import *
11
+ #from radboy.RNE.RNE import *
12
+ #from radboy.Lookup2.Lookup2 import Lookup as Lookup2
13
+ #from radboy.DayLog.DayLogger import *
14
+ #from radboy.DB.masterLookup import *
15
+ from collections import namedtuple,OrderedDict
16
+ import nanoid,qrcode,io
17
+ #from password_generator import PasswordGenerator
18
+ import random
19
+ from pint import UnitRegistry
20
+ import pandas as pd
21
+ import numpy as np
22
+ from datetime import *
23
+ from colored import Style,Fore
24
+ import json,sys,math,re,calendar,hashlib,haversine
25
+ from time import sleep
26
+ import itertools
27
+
28
+ from .Comm2Common import *
radboy/DB/Prompt.py CHANGED
@@ -949,6 +949,11 @@ class Prompt(object):
949
949
  esblb- bldls(bldlse=True,sbld=True,minus=True)
950
950
  '''
951
951
  def bldls(bldlse=False,sbld=False,minus=False,justCount=False,justTotal=False):
952
+ simple=Control(func=FormBuilderMkText,ptext="plain and simple y/n:",helpText="yes or no to absolute minimal output",data="boolean")
953
+ if simple is None:
954
+ return
955
+ elif simple in ['d',]:
956
+ simple=False
952
957
  def cse(code):
953
958
  with Session(db.ENGINE) as session:
954
959
  query=session.query(db.Entry).filter(db.Entry.InList==True,or_(db.Entry.Code.icontains(code),db.Entry.Barcode.icontains(code),db.Entry.Name.icontains(code)))
@@ -1009,11 +1014,20 @@ class Prompt(object):
1009
1014
  TTLQtyCrvItem=0
1010
1015
  TotalLines=0
1011
1016
  if (not justCount and not justTotal):
1012
- page=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Page Results?",helpText="wait for user input before displaying next item in list;yes or no",data="boolean")
1013
- if page in [None,'d',False]:
1017
+ if not simple:
1018
+ page=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Page Results?",helpText="wait for user input before displaying next item in list;yes or no",data="boolean")
1019
+ if page is None:
1020
+ return
1021
+ elif page in ['d',False]:
1022
+ page=False
1023
+ extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
1024
+ if extras is None:
1025
+ return
1026
+ elif extras in ['d',False]:
1027
+ extras=False
1028
+
1029
+ else:
1014
1030
  page=False
1015
- extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
1016
- if extras in [None,'d',False]:
1017
1031
  extras=False
1018
1032
  else:
1019
1033
  page=False
@@ -1073,7 +1087,14 @@ class Prompt(object):
1073
1087
  reRunRequired=False
1074
1088
  for num,i in enumerate(results):
1075
1089
  getExtras(i.EntryId,extras)
1076
- 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}|-| '
1090
+ if not simple:
1091
+ chart="*"
1092
+ else:
1093
+ chart=''
1094
+ if not simple:
1095
+ msg=f'{f"{chart}"*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}|-| '
1096
+ else:
1097
+ msg=f'{num+1}/{ct} [Name] "{i.Name}" [Product Barcode] "{'-'.join(db.stre(i.Barcode)/6)}" [Product Barcode Processed] "{i.rebar()}" [Order Code] "{'-'.join(db.stre(i.Code)/4)}" '
1077
1098
  colormapped=[
1078
1099
  Fore.deep_sky_blue_4c,
1079
1100
  Fore.spring_green_4,
@@ -1172,24 +1193,29 @@ class Prompt(object):
1172
1193
  #print("#exegen2")
1173
1194
  super_total=Decimal(super_total)
1174
1195
  #print(super_total)
1175
- msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{total}
1176
- {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}
1177
- {Fore.grey_70}+CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1178
- {Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*Decimal(i.Price):.{getcontext().prec}f})
1179
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
1180
- {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}
1181
- {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxNoCRVTotal({tax:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1182
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
1183
- {Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/ CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1184
- {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxCRVTotal({tax_crv:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1185
- {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
1186
- {Fore.medium_violet_red}PercentOfTotal({super_total:.{getcontext().prec}f}%) of FinalTotal({getSuperTotal(results,location_fields,colormapped)['final total']})
1187
- {Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={Decimal(taxRate*100):.{getcontext().prec}f}%{Style.reset}
1188
- {'*'*os.get_terminal_size().columns}{Style.reset}"""
1196
+ if simple:
1197
+ msg+=f""" Total = {total}"""
1198
+ print(db.strip_colors(msg))
1199
+ else:
1200
+ msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{total}
1201
+ {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}
1202
+ {Fore.grey_70}+CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1203
+ {Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*Decimal(i.Price):.{getcontext().prec}f})
1204
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
1205
+ {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}
1206
+ {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxNoCRVTotal({tax:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1207
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
1208
+ {Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/ CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
1209
+ {Fore.medium_spring_green}= {Fore.slate_blue_1}TaxCRVTotal({tax_crv:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
1210
+ {Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
1211
+ {Fore.medium_violet_red}PercentOfTotal({super_total:.{getcontext().prec}f}%) of FinalTotal({getSuperTotal(results,location_fields,colormapped)['final total']})
1212
+ {Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={Decimal(taxRate*100):.{getcontext().prec}f}%{Style.reset}
1213
+ {'*'*os.get_terminal_size().columns}{Style.reset}"""
1189
1214
  if bldlse:
1190
1215
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
1191
1216
  if not justCount and not justTotal:
1192
- print(msg)
1217
+ if not simple:
1218
+ print(msg)
1193
1219
 
1194
1220
  if i.CRV is not None:
1195
1221
  if i.CRV != 0:
@@ -1237,7 +1263,8 @@ class Prompt(object):
1237
1263
  {Fore.light_blue}'Total Lines' + 'CRV Items'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
1238
1264
  {Fore.light_blue}'Total Lines' + 'CRV Items QTY Purchased'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
1239
1265
  {Style.reset}"""
1240
- print(msg)
1266
+ if not simple:
1267
+ print(msg)
1241
1268
  return
1242
1269
  if justTotal:
1243
1270
  msg=f"""{Fore.light_green}Total Product Value
@@ -1249,7 +1276,8 @@ class Prompt(object):
1249
1276
  {Fore.light_green}Total Product Value Taxed({master_total_tax}) w/ CRV({master_total_crv})
1250
1277
  {Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{actual}{Style.reset}
1251
1278
  """
1252
- print(msg)
1279
+ if not simple:
1280
+ print(msg)
1253
1281
  return
1254
1282
 
1255
1283
 
@@ -1288,7 +1316,8 @@ class Prompt(object):
1288
1316
  msg=f"{Fore.orange_red_1}You need to re-run lsbld to recalculate properly!{Style.reset}"
1289
1317
  if bldlse:
1290
1318
  db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
1291
- print(msg)
1319
+ if not simple:
1320
+ print(msg)
1292
1321
  except Exception as e:
1293
1322
  print(e,"you might try and re-run the cmd")
1294
1323
 
Binary file
radboy/DB/db.py CHANGED
@@ -4921,6 +4921,7 @@ def saveHistory(cmd,ageLimit,executed,data):
4921
4921
 
4922
4922
  max_file_lines=detectGetOrSet("MAX_HFL",500)
4923
4923
  def logInput(text,max_hfl=None,maxed_hfl=True,user=True,filter_colors=False,ofile=None,clear_only=False):
4924
+ print(f"Logging Data to: {Fore.spring_green_3a}{ofile}{Style.reset}")
4924
4925
  if ofile:
4925
4926
  master_f=Path(ofile)
4926
4927
  else:
radboy/TasksMode/Tasks.py CHANGED
@@ -43,7 +43,7 @@ from radboy.CookBook import *
43
43
  from radboy.PhoneBook import *
44
44
  from radboy.Occurances import *
45
45
  from radboy.preloader import preloader
46
-
46
+ from radboy.Comm2Common import *
47
47
  def today():
48
48
  dt=datetime.now()
49
49
  return date(dt.year,dt.month,dt.day)
@@ -56,6 +56,21 @@ RATE*RATE|int|float=RATE
56
56
  RATE*timedelta = RATE.GROSS(float)
57
57
  '''
58
58
 
59
+ def totalDBItems():
60
+ with Session(ENGINE) as session:
61
+ total=0
62
+ crv_items=0
63
+ q=session.query(Entry).filter(Entry.InList==True)
64
+ a=q.all()
65
+
66
+ for i in a:
67
+ if i.CRV not in [0,None]:
68
+ total+=1
69
+ crv_items+=1
70
+ total+=1
71
+ return f"(TTL ITM:{Fore.light_red}{total}{Fore.light_yellow},CRV ITM :{Fore.light_red}{crv_items}{Fore.light_yellow})"
72
+
73
+
59
74
  def check_back_ups():
60
75
  backup_dir=detectGetOrSet("Backup Directory",f"RadBoy Backups/{VERSION}",setValue=False,literal=True)
61
76
  if backup_dir == None:
@@ -2563,6 +2578,7 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
2563
2578
  code=result.Barcode
2564
2579
  mkTextStore=deepcopy(result)
2565
2580
  total_price=0
2581
+ taxRate=Decimal(0)
2566
2582
  if result.Tax == 0:
2567
2583
  total_price=round(result.Price+result.CRV,3)
2568
2584
  else:
@@ -2651,7 +2667,7 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
2651
2667
 
2652
2668
  def mkT(text,self):
2653
2669
  return str(text)
2654
- code=Prompt.__init2__(None,func=mkT,ptext=f"{Fore.grey_70}[{Fore.light_steel_blue}ListMode{Fore.medium_violet_red}@{Fore.light_green}{fieldname}{Fore.grey_70}]{Style.reset}{Fore.light_yellow} Barcode|Code",helpText=self.helpText_barcodes,data=self)
2670
+ code=Prompt.__init2__(None,func=mkT,ptext=f"{totalDBItems()}{Fore.grey_70}[{Fore.light_steel_blue}ListMode{Fore.medium_violet_red}@{Fore.light_green}{fieldname}{Fore.grey_70}]{Style.reset}{Fore.light_yellow} Barcode|Code",helpText=self.helpText_barcodes,data=self)
2655
2671
  if code in [None,]:
2656
2672
  break
2657
2673
  elif code in ['',]:
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.566'
1
+ VERSION='0.0.568'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.566
3
+ Version: 0.0.568
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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=myNSmmkApVD8UR0tw84vVNKgLk-BFmKYO87fTu4vIaM,17
8
+ radboy/__init__.py,sha256=_1hV0RPiJeKab7GO5UnAwQY-2ErL5VddCOLtU_JF66g,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
@@ -50,6 +50,8 @@ radboy/Comm/__pycache__/RxTx.cpython-312.pyc,sha256=S_1Kf5_EwO1X4blYwIMPlrBs_hD8
50
50
  radboy/Comm/__pycache__/RxTx.cpython-313.pyc,sha256=3N9SXi-jBtf6liyYI0D1m1dpBoLCUUtuy7uDM6L958Q,34985
51
51
  radboy/Comm/__pycache__/__init__.cpython-312.pyc,sha256=jxT5gYVdAKG2X7WED7LoHwmiHsC8BxOtz0YxIdtsBtw,267
52
52
  radboy/Comm/__pycache__/__init__.cpython-313.pyc,sha256=-hKMf6R71_1VkbAEpQ4HJOJF0RUxDSpuUHS0kXShyIw,146
53
+ radboy/Comm2Common/Comm2Common.py,sha256=3MOe_RHcD1mhiLJIBBa_j1YbyKZr8pyOyqB-7hMoHoM,1141
54
+ radboy/Comm2Common/__init__.py,sha256=ww6HxD8dFaQcDIS5zWnr-uts4T1YJBEs40nCdqQK7Q8,907
53
55
  radboy/Compare/Compare.py,sha256=ORgqwl5rApbXLxTihJ-N4rBYoCOd3iL6rEb4VExAk20,4571
54
56
  radboy/Compare/__init__.py,sha256=9-ltkiSIu7k_397e3_eBETX88CxEwzEBA-HDixi59o4,903
55
57
  radboy/Compare/__pycache__/Compare.cpython-312.pyc,sha256=YHZHBuJKjEGi207YOgzOW2mf3yked9uVabjfqkcnq1M,3618
@@ -84,14 +86,14 @@ radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,
84
86
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
85
87
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
86
88
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- radboy/DB/Prompt.py,sha256=wfZ7rXPbAZBfHo4zszCaVObM3fMK6symyhyMnyJhSzQ,163048
89
+ radboy/DB/Prompt.py,sha256=_03NS0dJ__wR0GnujqWgKpPfLFFVkMUhHy0VHzkp0Dc,164461
88
90
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
89
91
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
90
92
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
91
93
  radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
92
94
  radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
93
95
  radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
94
- radboy/DB/db.py,sha256=ejrLQU_vfmc3lXk1dK1GOuix7WwKWNeGnR2Fz_1TInI,254848
96
+ radboy/DB/db.py,sha256=iwqnxc0woh0ZBit9Dk-WLzQNxCNLS8ja16U54db24u0,254926
95
97
  radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
96
98
  radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
97
99
  radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
@@ -108,7 +110,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
108
110
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
109
111
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
110
112
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
111
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=vAjLn__-JOjScb06JtOAvnymbXJTNMpvDtq0wC8aOB8,244355
113
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=JP3Dnu-vENM3oGvktN1OsnAAabixBTvxpRZNDTjFtoA,245580
112
114
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
113
115
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
114
116
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -126,7 +128,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
126
128
  radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
127
129
  radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
128
130
  radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
129
- radboy/DB/__pycache__/db.cpython-313.pyc,sha256=Eh1TXQQlOW-k_kvfUePMmmZcUHw3gLObNWThtaRThfg,402731
131
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=k6GSe4i6OJc94p641GMVve4Su7oZLWbjDztnohxlTVQ,402888
130
132
  radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
131
133
  radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
132
134
  radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
@@ -341,7 +343,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
341
343
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
342
344
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
343
345
  radboy/TasksMode/SetEntryNEU.py,sha256=Gu0Z677tjpc7-9AQtLbIr7yzPx6ZJXGK33lOIgU0IRM,17432
344
- radboy/TasksMode/Tasks.py,sha256=yOB_uyMfCTN196vZZiq-n2pGcqOLsz60xDXN_Rb4BqU,341130
346
+ radboy/TasksMode/Tasks.py,sha256=tSzAjarH7jIrrdlXiw5SuQpRINuBMg4ASGP0HZrwQ38,341665
345
347
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
348
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
347
349
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -350,7 +352,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
350
352
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=UExwr8dN2STFEDE5t_YnQFMUX-wGv7JH10I1OyBDRtM,20212
351
353
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
352
354
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
353
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=dAefYkT-r8E29ya24YuIWXcs0LBC83Wk1F8G-DiDf0M,413771
355
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=A65bcUxQba9forVqkj9vX9y_0-RGuBec55KO-G8ktJs,414775
354
356
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
355
357
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
356
358
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -397,7 +399,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
397
399
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
398
400
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
399
401
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
400
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=9sPSC-fwOtjqW_fc7FvwaZhsz0Gdp02SglXsRirPee4,165
402
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=QA6EBcjueQnavLSUP52udwsxXh4OrPTs5BvMlT285d4,165
401
403
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
402
404
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
403
405
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -424,7 +426,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
424
426
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
425
427
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
426
428
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
427
- radboy-0.0.566.dist-info/METADATA,sha256=vRtozR2GGkVm0AH-Uy5EEUBI0zL4kq4_tDYsrDZMDas,1636
428
- radboy-0.0.566.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
429
- radboy-0.0.566.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
430
- radboy-0.0.566.dist-info/RECORD,,
429
+ radboy-0.0.568.dist-info/METADATA,sha256=i5-Pz8MMsPsXlTs55mjDtDesLokO31WaYVr7UUjWQ-c,1636
430
+ radboy-0.0.568.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
431
+ radboy-0.0.568.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
432
+ radboy-0.0.568.dist-info/RECORD,,