radboy 0.0.653__py3-none-any.whl → 0.0.655__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/LetterWriter.py +69 -0
- radboy/DB/Prompt.py +88 -1
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/DB/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +1 -9
- radboy/DB/{types.py → rad_types.py} +8 -0
- radboy/FB/FBMTXT.py +4 -1
- radboy/FB/FormBuilder.py +5 -1
- radboy/FB/__pycache__/FBMTXT.cpython-313.pyc +0 -0
- radboy/FB/__pycache__/FormBuilder.cpython-313.pyc +0 -0
- radboy/TasksMode/Tasks.py +4 -0
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc +0 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.653.dist-info → radboy-0.0.655.dist-info}/METADATA +1 -1
- {radboy-0.0.653.dist-info → radboy-0.0.655.dist-info}/RECORD +18 -17
- {radboy-0.0.653.dist-info → radboy-0.0.655.dist-info}/WHEEL +0 -0
- {radboy-0.0.653.dist-info → radboy-0.0.655.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import dataclasses as DC
|
|
2
|
+
from dataclasses import dataclass
|
|
3
|
+
from hashlib import sha512
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from radboy.DB.rad_types import *
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from uuid import uuid1
|
|
8
|
+
import base64,calendar
|
|
9
|
+
from colored import Fore,Style,Back
|
|
10
|
+
from radboy.FB.FormBuilder import *
|
|
11
|
+
@dataclass
|
|
12
|
+
class MSG:
|
|
13
|
+
DTOE:datetime=datetime.now()
|
|
14
|
+
Title:str=''
|
|
15
|
+
Salutations:str=''
|
|
16
|
+
BODY:str=''
|
|
17
|
+
ComplimentaryClose:str=''
|
|
18
|
+
Signature:str=''
|
|
19
|
+
PostScript:str=''
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def WriteLetter():
|
|
23
|
+
page=Control(func=FormBuilderMkText,ptext="Page The Letter?",helpText="page?",data="boolean")
|
|
24
|
+
if page is None:
|
|
25
|
+
return
|
|
26
|
+
elif page in ['NAN',]:
|
|
27
|
+
return
|
|
28
|
+
elif page in ['d',True]:
|
|
29
|
+
page=True
|
|
30
|
+
else:
|
|
31
|
+
page=False
|
|
32
|
+
letter=MSG()
|
|
33
|
+
|
|
34
|
+
d={}
|
|
35
|
+
for k in DC.asdict(letter):
|
|
36
|
+
d[k]={}
|
|
37
|
+
d[k]['default']=DC.asdict(letter)[k]
|
|
38
|
+
d[k]['type']=str(type(DC.asdict(letter)[k]).__name__)
|
|
39
|
+
print(d)
|
|
40
|
+
fd=FormBuilder(data=d)
|
|
41
|
+
if fd is None:
|
|
42
|
+
return
|
|
43
|
+
|
|
44
|
+
ct=len(fd)
|
|
45
|
+
for num,i in enumerate(fd):
|
|
46
|
+
if fd[i] is not None:
|
|
47
|
+
if (num%2)!=0:
|
|
48
|
+
color_1=Fore.pale_violet_red_1
|
|
49
|
+
color_2=Fore.light_steel_blue
|
|
50
|
+
else:
|
|
51
|
+
color_1=Fore.medium_purple_3a
|
|
52
|
+
color_2=Fore.cyan
|
|
53
|
+
|
|
54
|
+
dms=f"""{color_1}{i}:{color_2}\n\t{fd[i]}\n"""
|
|
55
|
+
msg=std_colorize(dms,num,ct)
|
|
56
|
+
if page:
|
|
57
|
+
while True:
|
|
58
|
+
print(msg)
|
|
59
|
+
nxt=Control(func=FormBuilderMkText,ptext="Next?",helpText="next?",data="boolean")
|
|
60
|
+
if nxt is None:
|
|
61
|
+
return
|
|
62
|
+
elif nxt in ['NAN',]:
|
|
63
|
+
return
|
|
64
|
+
elif nxt in ['d',True]:
|
|
65
|
+
break
|
|
66
|
+
else:
|
|
67
|
+
continue
|
|
68
|
+
continue
|
|
69
|
+
print(msg)
|
radboy/DB/Prompt.py
CHANGED
|
@@ -34,8 +34,9 @@ from uuid import uuid1
|
|
|
34
34
|
import zipfile,pydoc
|
|
35
35
|
import math
|
|
36
36
|
import enum
|
|
37
|
-
from radboy.DB.
|
|
37
|
+
from radboy.DB.rad_types import *
|
|
38
38
|
import asyncio
|
|
39
|
+
import hashlib
|
|
39
40
|
|
|
40
41
|
try:
|
|
41
42
|
import resource
|
|
@@ -52,6 +53,7 @@ except Exception as e:
|
|
|
52
53
|
ru_maxrss=0
|
|
53
54
|
return use()
|
|
54
55
|
|
|
56
|
+
'''
|
|
55
57
|
def std_colorize(m,n,c,start=f'',end=''):
|
|
56
58
|
#start=f"[Prompt]{Back.black}{Fore.pale_turquoise_1} Start {'*'*(os.get_terminal_size().columns-(len(Fore.pale_turquoise_1)+(len(Fore.grey_27)*2)+len(Style.reset)))}{Style.reset}\n",end=f"\n{Back.black}{Fore.dark_red_1}{'-'*(os.get_terminal_size().columns-(len(Fore.dark_red_1)+(len(Fore.grey_50)*2)+len(Style.reset)))} Stop {Style.reset}"):
|
|
57
59
|
if ((n % 2) != 0) and n > 0:
|
|
@@ -59,6 +61,7 @@ def std_colorize(m,n,c,start=f'',end=''):
|
|
|
59
61
|
else:
|
|
60
62
|
msg=f'{start}{Fore.light_cyan}i{n}/{Fore.green_yellow}L{n+1}{Fore.orange_red_1} of {c}T {Fore.light_salmon_1}{m}{Style.reset}{end}'
|
|
61
63
|
return msg
|
|
64
|
+
'''
|
|
62
65
|
'''Formula/Price menu options'''
|
|
63
66
|
PRICE=['quick price','qprc','price','prc']
|
|
64
67
|
FMLA=['fmlau','formulae-u','pre-formula','formulas']
|
|
@@ -2444,10 +2447,84 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2444
2447
|
{Fore.grey_70}** {Fore.light_steel_blue}'si-reference','si-ref','si ref','si reference'{Fore.light_green}print si reference chart and continue prompt{Style.reset}
|
|
2445
2448
|
{Fore.grey_70}** {Fore.light_steel_blue}{','.join(generate_cmds(startcmd=['fake',],endCmd=['phone','ph#','ph. no.','phone number']))}{Fore.light_green}fake phone number{Style.reset}
|
|
2446
2449
|
{Fore.grey_70}** {Fore.light_steel_blue}{','.join(generate_cmds(startcmd=['util',],endCmd=['tags','tgs']))}{Fore.light_green}tags utility from TaskMode{Style.reset}
|
|
2450
|
+
{Fore.grey_70}** {Fore.light_steel_blue}'None'{Fore.light_red} return None{Style.reset}
|
|
2451
|
+
{Fore.grey_70}** {Fore.light_steel_blue}'NAN'{Fore.light_red} return 'NAN' for 'Not a Number'{Style.reset}
|
|
2452
|
+
{Fore.grey_70}** {Fore.light_steel_blue}{generate_cmds(startcmd=['util','checksum','cksm'],endCmd=['sha512 ','sha512'])} {Fore.light_green}generate a checksum for TEXT from user{Style.reset}
|
|
2453
|
+
{Fore.grey_70}** {Fore.light_steel_blue}{generate_cmds(startcmd=['util','diff','eq'],endCmd=['text ','txt'])} {Fore.light_green}compare 2 strings/text and return True or False{Style.reset}
|
|
2454
|
+
{Fore.grey_70}** {Fore.light_steel_blue}{generate_cmds(startcmd=['util','diff','rules'],endCmd=['encounter-verify','ev'])} {Fore.light_green}confirm an encounter rules{Style.reset}
|
|
2447
2455
|
'''
|
|
2448
2456
|
print(extra)
|
|
2449
2457
|
print(helpText)
|
|
2450
2458
|
continue
|
|
2459
|
+
elif cmd.lower() in generate_cmds(startcmd=['util','checksum','cksm'],endCmd=['sha512 ','sha512']):
|
|
2460
|
+
text=Control(func=FormBuilderMkText,ptext="Text: ",helpText="text for a checksum",data="str")
|
|
2461
|
+
if text is None:
|
|
2462
|
+
continue
|
|
2463
|
+
elif text in ['NAN',]:
|
|
2464
|
+
continue
|
|
2465
|
+
returnIt=Control(func=FormBuilderMkText,ptext=f"Return '{hashlib.sha512(text.encode()).hexdigest()}': ",helpText="text for a checksum",data="boolean")
|
|
2466
|
+
if returnIt in [None,'NAN']:
|
|
2467
|
+
return func(None,data)
|
|
2468
|
+
elif returnIt in [True,]:
|
|
2469
|
+
return func(hashlib.sha512(text.encode()).hexdigest(),data)
|
|
2470
|
+
else:
|
|
2471
|
+
continue
|
|
2472
|
+
elif cmd.lower() in generate_cmds(startcmd=['util','diff','rules'],endCmd=['encounter-verify','ev']):
|
|
2473
|
+
rule=['Think of a passphrase that you will tell the messenger/courier',
|
|
2474
|
+
'execute `text2file` to send output to textfile',
|
|
2475
|
+
'''execute `util sha512` and type your passphrase
|
|
2476
|
+
into the prompt for sha512 checksum of the passphrase and hit enter when you are done''',
|
|
2477
|
+
'type one of `1/y/True/t` to return the hashsum to for writing to file.',
|
|
2478
|
+
'tell your passphrase to the messenger/courier whom will tell the passphrase to the target, ',
|
|
2479
|
+
'as well as provide the hashsum for the passphrase provided by the target to the courier',
|
|
2480
|
+
'the target will checksum the messenger/courier provided phrase exactly.'
|
|
2481
|
+
'the messenger/courier will checksum the phrase provided by the target exactly.'
|
|
2482
|
+
'if the checksum\'s match on both sides:'
|
|
2483
|
+
'then the transaction is confirmed to proceed',
|
|
2484
|
+
'execute `diff txt`',
|
|
2485
|
+
'execute `c2c`',
|
|
2486
|
+
'execute `Path("TextOut.txt").open("r"").read()` to the hashsum provided for the opposing parties passphrase',
|
|
2487
|
+
'execute `util sha512`',
|
|
2488
|
+
'type the passphrase exactly provided by the opposing party',
|
|
2489
|
+
'type `yes` or `1` or `t` to return the hashsum for the phrase provided by the opposing party for comparison',
|
|
2490
|
+
'against the pre-determined hashsum exchanged by file.',
|
|
2491
|
+
f'return "{Fore.light_green}True{Style.reset}" if they match',
|
|
2492
|
+
f'return "{Fore.light_red}False{Style.reset}" if they DO NOT match',
|
|
2493
|
+
'passphrases must be exchanged in person but are not restricted',
|
|
2494
|
+
'to how they are remitted for verification;',
|
|
2495
|
+
'each party is given the hashum of the opposing party\'s passphrase by file or must be written to TextOut.txt',
|
|
2496
|
+
'if the passphrase fails to match the checksum after a pre-determined number of fails(on either side),',
|
|
2497
|
+
'then the transaction is NOT to be completed and begin to',
|
|
2498
|
+
'follow appropriate procedures to handle the appropriate Severity of the failure; treat it as a threat under all circumstances.'
|
|
2499
|
+
]
|
|
2500
|
+
ct=len(rule)
|
|
2501
|
+
for num,i in enumerate(rule):
|
|
2502
|
+
print(std_colorize(i,num,ct))
|
|
2503
|
+
continue
|
|
2504
|
+
elif cmd.lower() in generate_cmds(startcmd=['util','diff','eq'],endCmd=['text ','txt']):
|
|
2505
|
+
text1=Control(func=FormBuilderMkText,ptext="Text 1: ",helpText="text 1",data="str")
|
|
2506
|
+
if text1 is None:
|
|
2507
|
+
continue
|
|
2508
|
+
elif text1 in ['NAN',]:
|
|
2509
|
+
continue
|
|
2510
|
+
text2=Control(func=FormBuilderMkText,ptext="Text 2: ",helpText="text 2",data="str")
|
|
2511
|
+
if text2 is None:
|
|
2512
|
+
continue
|
|
2513
|
+
elif text2 in ['NAN',]:
|
|
2514
|
+
continue
|
|
2515
|
+
|
|
2516
|
+
if text1 == text2:
|
|
2517
|
+
color=Fore.light_green
|
|
2518
|
+
else:
|
|
2519
|
+
color=Fore.light_red
|
|
2520
|
+
|
|
2521
|
+
returnIt=Control(func=FormBuilderMkText,ptext=f"Return '\001{color}{text1==text2}{Style.reset}\002': ",helpText="text1 == text2",data="str")
|
|
2522
|
+
if returnIt in [None,'NAN']:
|
|
2523
|
+
return func(None,data)
|
|
2524
|
+
elif returnIt in [True,]:
|
|
2525
|
+
return func(str(text1==text2),data)
|
|
2526
|
+
else:
|
|
2527
|
+
continue
|
|
2451
2528
|
elif cmd.lower() in generate_cmds(startcmd=['util',],endCmd=['tags','tgs']):
|
|
2452
2529
|
TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).setFieldInList("Tags",load=True,only_select_qty=True)
|
|
2453
2530
|
continue
|
|
@@ -2459,6 +2536,13 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2459
2536
|
return func(r,data)
|
|
2460
2537
|
elif cmd.lower() in generate_cmds(startcmd=["set inlist","sil"],endCmd=["qtyu","u"]):
|
|
2461
2538
|
TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).set_inList()
|
|
2539
|
+
elif cmd.lower() in ['None','none']:
|
|
2540
|
+
return func(None,data)
|
|
2541
|
+
elif cmd.lower() in ['NAN',]:
|
|
2542
|
+
return func('NAN',data)
|
|
2543
|
+
elif cmd.lower() in ['letter','message']:
|
|
2544
|
+
TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).WriteLetter()
|
|
2545
|
+
continue
|
|
2462
2546
|
elif cmd.lower() in ['rllo','reverse list lookup order']:
|
|
2463
2547
|
try:
|
|
2464
2548
|
state=db.detectGetOrSet('list maker lookup order',False,setValue=False,literal=False)
|
|
@@ -2484,7 +2568,10 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2484
2568
|
otext=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f'Text to Dump to {outfile}',helpText='saveable text',data="string")
|
|
2485
2569
|
if otext in [None,'d','']:
|
|
2486
2570
|
print("nothing was saved!")
|
|
2571
|
+
if otext is None:
|
|
2572
|
+
continue
|
|
2487
2573
|
x.write(otext)
|
|
2574
|
+
print(f"wrote '{otext}' to '{outfile}'")
|
|
2488
2575
|
elif cmd.lower() in ['known','known devices','known dev','knwn dev']:
|
|
2489
2576
|
disp=KNOWN_DEVICES
|
|
2490
2577
|
disp.append('')
|
|
Binary file
|
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -49,7 +49,7 @@ from barcode.writer import ImageWriter
|
|
|
49
49
|
import hashlib
|
|
50
50
|
import base64
|
|
51
51
|
from decimal import Decimal as TDecimal,getcontext
|
|
52
|
-
from radboy.DB.
|
|
52
|
+
from radboy.DB.rad_types import *
|
|
53
53
|
from dataclasses import dataclass
|
|
54
54
|
import dataclasses as DC
|
|
55
55
|
import contextlib as CTXLB
|
|
@@ -923,14 +923,6 @@ class EntryExtras:
|
|
|
923
923
|
def __neg__(self):
|
|
924
924
|
return -self.Price
|
|
925
925
|
|
|
926
|
-
def std_colorize(m,n,c,start=f'',end=''):
|
|
927
|
-
#start=f"[Prompt]{Back.black}{Fore.pale_turquoise_1} Start {'*'*(os.get_terminal_size().columns-(len(Fore.pale_turquoise_1)+(len(Fore.grey_27)*2)+len(Style.reset)))}{Style.reset}\n",end=f"\n{Back.black}{Fore.dark_red_1}{'-'*(os.get_terminal_size().columns-(len(Fore.dark_red_1)+(len(Fore.grey_50)*2)+len(Style.reset)))} Stop {Style.reset}"):
|
|
928
|
-
if ((n % 2) != 0) and n > 0:
|
|
929
|
-
msg=f'{start}{Fore.cyan}i{n}/{Fore.light_yellow}L{n+1}{Fore.light_red} of {c}T {Fore.dark_goldenrod}{m}{Style.reset}{end}'
|
|
930
|
-
else:
|
|
931
|
-
msg=f'{start}{Fore.light_cyan}i{n}/{Fore.green_yellow}L{n+1}{Fore.orange_red_1} of {c}T {Fore.light_salmon_1}{m}{Style.reset}{end}'
|
|
932
|
-
return msg
|
|
933
|
-
|
|
934
926
|
class Template:
|
|
935
927
|
def colorize(self,m,n,c):
|
|
936
928
|
if ((n % 2) == 0) and n > 0:
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from decimal import Decimal as TDecimal,getcontext
|
|
2
2
|
import string,random,re
|
|
3
|
+
from colored import Fore,Back,Style
|
|
3
4
|
class decc(TDecimal):
|
|
4
5
|
''' defines a decimal of 'cf\''''
|
|
5
6
|
def __new__(self,value,cf=3):
|
|
@@ -111,3 +112,10 @@ class stre(str):
|
|
|
111
112
|
else:
|
|
112
113
|
raise NotImplemented
|
|
113
114
|
|
|
115
|
+
def std_colorize(m,n,c,start=f'',end=''):
|
|
116
|
+
#start=f"[Prompt]{Back.black}{Fore.pale_turquoise_1} Start {'*'*(os.get_terminal_size().columns-(len(Fore.pale_turquoise_1)+(len(Fore.grey_27)*2)+len(Style.reset)))}{Style.reset}\n",end=f"\n{Back.black}{Fore.dark_red_1}{'-'*(os.get_terminal_size().columns-(len(Fore.dark_red_1)+(len(Fore.grey_50)*2)+len(Style.reset)))} Stop {Style.reset}"):
|
|
117
|
+
if ((n % 2) != 0) and n > 0:
|
|
118
|
+
msg=f'{start}{Fore.cyan}i{n}/{Fore.light_yellow}L{n+1}{Fore.light_red} of {c}T {Fore.dark_goldenrod}{m}{Style.reset}{end}'
|
|
119
|
+
else:
|
|
120
|
+
msg=f'{start}{Fore.light_cyan}i{n}/{Fore.green_yellow}L{n+1}{Fore.orange_red_1} of {c}T {Fore.light_salmon_1}{m}{Style.reset}{end}'
|
|
121
|
+
return msg
|
radboy/FB/FBMTXT.py
CHANGED
|
@@ -144,7 +144,10 @@ def FormBuilderHelpText():
|
|
|
144
144
|
|
|
145
145
|
|
|
146
146
|
def FormBuilderMkText(text,data,passThru=[],PassThru=True,alternative_false=None,alternative_true=None):
|
|
147
|
-
|
|
147
|
+
if text is None:
|
|
148
|
+
return None
|
|
149
|
+
if text.lower() in ['na','not_a_number','nan']:
|
|
150
|
+
return 'NaN'
|
|
148
151
|
try:
|
|
149
152
|
#if text in passThru:
|
|
150
153
|
# return text
|
radboy/FB/FormBuilder.py
CHANGED
|
@@ -147,7 +147,9 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
|
|
|
147
147
|
{Fore.grey_70}*{Fore.light_yellow}goto{Fore.light_cyan}k{Fore.light_yellow},goto {Fore.light_cyan}k{Fore.light_green} goto {Fore.light_cyan}key{Fore.light_green} for field in Form {Style.reset}
|
|
148
148
|
{Fore.grey_70}*{Fore.light_yellow}showkeys{Fore.light_green} to see indexes refering to form keys{Style.reset}
|
|
149
149
|
{Fore.grey_70}*{Fore.light_yellow}'schk','search keys','sch ky{Fore.light_green} to search select and goto key{Style.reset}
|
|
150
|
-
{Fore.grey_70}* {Fore.grey_50}These cmds only work with fields that return str/VARCHAR/TEXT/str+/list of str's, i.e. [str,]
|
|
150
|
+
{Fore.grey_70}* {Fore.grey_50}These cmds only work with fields that return str/VARCHAR/TEXT/str+/list of str's, i.e. [str,]
|
|
151
|
+
{Fore.grey_70}*{Fore.grey_50}['na','not_a_number','nan']{Fore.light_green}set a field to None{Style.reset}
|
|
152
|
+
{Style.reset}"""
|
|
151
153
|
print(ht2)
|
|
152
154
|
FormBuilderHelpText()
|
|
153
155
|
cmd=None
|
|
@@ -312,6 +314,8 @@ def FormBuilder(data,extra_tooling=False,passThruText=None):
|
|
|
312
314
|
finalize=True
|
|
313
315
|
finish=True
|
|
314
316
|
break
|
|
317
|
+
elif cmd.lower() in ['na','not_a_number','nan']:
|
|
318
|
+
item[k]=None
|
|
315
319
|
elif cmd.lower() in ['m',]:
|
|
316
320
|
print(f"Not changing User set value '{k}':'{item.get(k)}'")
|
|
317
321
|
pass
|
|
Binary file
|
|
Binary file
|
radboy/TasksMode/Tasks.py
CHANGED
|
@@ -45,6 +45,8 @@ from radboy.Occurances import *
|
|
|
45
45
|
from radboy.preloader import preloader
|
|
46
46
|
from radboy.Comm2Common import *
|
|
47
47
|
import radboy.DB.OrderedAndRxd as OAR
|
|
48
|
+
import radboy.DB.LetterWriter as LW
|
|
49
|
+
|
|
48
50
|
def today():
|
|
49
51
|
dt=datetime.now()
|
|
50
52
|
return date(dt.year,dt.month,dt.day)
|
|
@@ -1066,6 +1068,8 @@ SALES TAX ON APPLICABLE TANGIBLE ITEMS = (PRICE + CRV) * TTL TAX RATE
|
|
|
1066
1068
|
print(e,str(e),repr(e))
|
|
1067
1069
|
|
|
1068
1070
|
class TasksMode:
|
|
1071
|
+
def WriteLetter(self):
|
|
1072
|
+
LW.WriteLetter()
|
|
1069
1073
|
def setPrec(self):
|
|
1070
1074
|
print("WAS: ",getcontext().prec)
|
|
1071
1075
|
operator=Prompt.__init2__(None,func=FormBuilderMkText,ptext="How many decimals?",helpText="how many places behind the decimal floating point",data="integer")
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.655'
|
|
Binary file
|
|
@@ -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=
|
|
8
|
+
radboy/__init__.py,sha256=fAb4ZwmPGdGKo_LuLm0bNOFibDqyjrMynuC0qVnKbPA,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,24 +83,25 @@ radboy/DB/DatePicker.py,sha256=B75mDtXQrkHRCpoU9TJsaBVvkK37ykMaJyaiqGOo4dM,18334
|
|
|
83
83
|
radboy/DB/DisplayItemDb.py,sha256=uVvrNyFyBuKvrw-BEPXKYvfa-QWyFN5ahESi2l6vUUA,52046
|
|
84
84
|
radboy/DB/EstimatedPayCalendarWorkSheet.txt,sha256=GOjRSmGxFoNTdAnpPe2kGv7CkXDrh0Mee01HslamGbo,17173
|
|
85
85
|
radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,27809
|
|
86
|
+
radboy/DB/LetterWriter.py,sha256=oj-3MQwFIR6Iy-p6zoFwf-0KE6g9ymDnluEDBRPqNyk,1906
|
|
86
87
|
radboy/DB/OrderedAndRxd.py,sha256=PZ_Rbm0H3DFhHuN1SZEnd1RhEnKOU_L0X0MHXwYN3-s,23004
|
|
87
88
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
88
89
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
89
90
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
-
radboy/DB/Prompt.py,sha256=
|
|
91
|
+
radboy/DB/Prompt.py,sha256=j2rlv2If4YGDNAE_wakkunnHMF3atpYcU_WzqOoyhUQ,173587
|
|
91
92
|
radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
|
|
92
93
|
radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
|
|
93
94
|
radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
|
|
94
95
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
95
96
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
96
97
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
97
|
-
radboy/DB/db.py,sha256=
|
|
98
|
+
radboy/DB/db.py,sha256=3Ui1IIdTMRWAitlSX2cgXgxpBslkuLYtxFsyw5ic9_8,257577
|
|
98
99
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
99
100
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
100
101
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
102
|
+
radboy/DB/rad_types.py,sha256=kb6jjsMs2s2X4sG7knsbMkS1IhyP_ocd6snBQNYrMiU,4600
|
|
101
103
|
radboy/DB/renderText2Png.py,sha256=PWnTicLTfOPg9UlQYia3wMpjM9rh7MIyDVsmcsDRUBo,5678
|
|
102
104
|
radboy/DB/testClass.py,sha256=t3zT1gbvReUncnPY8R9JUfKXQ5UEB2wmQx8DNeds0hI,310
|
|
103
|
-
radboy/DB/types.py,sha256=rts_pkiYzAi7sH66LhIz0q6R4e6qCDKyqDaQNxAs_eM,3827
|
|
104
105
|
radboy/DB/__pycache__/DatePicker.cpython-311.pyc,sha256=VMJnJ7scb4VHMQi1HDZCF67KVYfb9m-fZK96IAoJzTQ,19676
|
|
105
106
|
radboy/DB/__pycache__/DatePicker.cpython-312.pyc,sha256=cc5XWJ6Sbtcg0xWPz3SOP93VceIqr1pH42kjkLl5iYs,30294
|
|
106
107
|
radboy/DB/__pycache__/DatePicker.cpython-313.pyc,sha256=jV__j5ER1oshsenGPynR0UNHWMI7VStgyw73-iLKxzg,33993
|
|
@@ -112,7 +113,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
|
|
|
112
113
|
radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
|
|
113
114
|
radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
|
|
114
115
|
radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
|
|
115
|
-
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=
|
|
116
|
+
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=5zsxCWzGtOTCofQBHZowyBcEq4-IX6It2qvUDhCGdz0,258046
|
|
116
117
|
radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
|
|
117
118
|
radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
|
|
118
119
|
radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
|
|
@@ -130,7 +131,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
130
131
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
131
132
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
132
133
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
133
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
134
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=yDVnb2UX2KZptG2TT5J8gkWFzopbDKrFVqFiPe1ftMc,403681
|
|
134
135
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
135
136
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
136
137
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -195,13 +196,13 @@ radboy/ExtractPkg/__pycache__/ExtractPkg2.cpython-313.pyc,sha256=bgw-00G_ouurOtO
|
|
|
195
196
|
radboy/ExtractPkg/__pycache__/__init__.cpython-311.pyc,sha256=62yPgrgPZffZFLr6FscOqCdo45vfhScJ8aZbLTbD7I4,235
|
|
196
197
|
radboy/ExtractPkg/__pycache__/__init__.cpython-312.pyc,sha256=Ll1iKcG0MDtoCIloQ_frcihvCSe1HPtyERzcAoXwQT0,273
|
|
197
198
|
radboy/ExtractPkg/__pycache__/__init__.cpython-313.pyc,sha256=kL3Y3KxCTaGNg3aq5fhf2fsnQHZolGfvniEUfsx2bwY,152
|
|
198
|
-
radboy/FB/FBMTXT.py,sha256=
|
|
199
|
-
radboy/FB/FormBuilder.py,sha256=
|
|
199
|
+
radboy/FB/FBMTXT.py,sha256=6PodraQPmIsEcbvYv-AR0AIoK630kjF50raPgqiCuvI,42230
|
|
200
|
+
radboy/FB/FormBuilder.py,sha256=BoZQsGmB-SHDZkV8qm2WMkvoEn0PU-8nPwSn0as1qdQ,18730
|
|
200
201
|
radboy/FB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
202
|
radboy/FB/__pycache__/FBMTXT.cpython-312.pyc,sha256=XCVFa7Mo83LGIdRrTvcK73siUpcVIEQfXKCH2QHeViw,9626
|
|
202
|
-
radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=
|
|
203
|
+
radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=lPsj5ps9SqSccQuZKFuaAVkQT-3uma68J3FSPKHA_cc,56574
|
|
203
204
|
radboy/FB/__pycache__/FormBuilder.cpython-312.pyc,sha256=lNQdB-zApsXM7OQF9MIi0zRZD1SAL6stKEN-AyQiIKg,18873
|
|
204
|
-
radboy/FB/__pycache__/FormBuilder.cpython-313.pyc,sha256=
|
|
205
|
+
radboy/FB/__pycache__/FormBuilder.cpython-313.pyc,sha256=bsKUoqWBN0nWRQo0P1iJnS_2NvMZDHNyLw387bGcuSU,25042
|
|
205
206
|
radboy/FB/__pycache__/__init__.cpython-312.pyc,sha256=ULEL8Au_CxcYpNAcSoSbI65M7-av1W6Zuy6kQJUu-Mw,265
|
|
206
207
|
radboy/FB/__pycache__/__init__.cpython-313.pyc,sha256=Mp4kqFJa86-gyUu1vr9rubcUHUDr-O75hevV5IQdSFw,144
|
|
207
208
|
radboy/GDOWN/GDOWN.py,sha256=Z5q6TR92I4eQpxhsJpOwhH__f1tK2IcGctPRw8OAEr8,798
|
|
@@ -345,7 +346,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
|
|
|
345
346
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
346
347
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
347
348
|
radboy/TasksMode/SetEntryNEU.py,sha256=mkV9zAZe0lfpu_3coMuIILEzh6PgCNi7g9lJ4yDUpYM,20596
|
|
348
|
-
radboy/TasksMode/Tasks.py,sha256=
|
|
349
|
+
radboy/TasksMode/Tasks.py,sha256=ZWpREXoV3hyagjgqJw7M2PdsBhLhcWrijbd2ivEBbO0,350384
|
|
349
350
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
351
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
351
352
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
@@ -354,7 +355,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
|
|
|
354
355
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=jMSrUX9pvEhf67uVwrPE2ZlBCems8V7tHJ1LcC15ovU,24603
|
|
355
356
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
356
357
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
357
|
-
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=
|
|
358
|
+
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=iSzmD16ufRWcI65LTTikznZFG3i5CWSG734dMEaCJ_8,424150
|
|
358
359
|
radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
|
|
359
360
|
radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
|
|
360
361
|
radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
|
|
@@ -401,7 +402,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
401
402
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
402
403
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
403
404
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
404
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
405
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=2GyLIUy-tQmBARq9RAwUUnJ7NDkeilKEjLq3yZv2JHQ,165
|
|
405
406
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
406
407
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
407
408
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -429,7 +430,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
429
430
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
430
431
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
431
432
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
432
|
-
radboy-0.0.
|
|
433
|
-
radboy-0.0.
|
|
434
|
-
radboy-0.0.
|
|
435
|
-
radboy-0.0.
|
|
433
|
+
radboy-0.0.655.dist-info/METADATA,sha256=Loc6gpH8vhmxuIzv6I1Pvii1yvi2JdhFo8IqnMmxOU4,1891
|
|
434
|
+
radboy-0.0.655.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
435
|
+
radboy-0.0.655.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
436
|
+
radboy-0.0.655.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|