radboy 0.0.419__py3-none-any.whl → 0.0.421__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 +76 -12
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/Orders/MilkWaterOrder.py +41 -16
- radboy/RecordMyCodes.py +1 -13
- radboy/__init__.py +1 -1
- radboy/__pycache__/RecordMyCodes.cpython-313.pyc +0 -0
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.419.dist-info → radboy-0.0.421.dist-info}/METADATA +1 -1
- {radboy-0.0.419.dist-info → radboy-0.0.421.dist-info}/RECORD +11 -11
- {radboy-0.0.419.dist-info → radboy-0.0.421.dist-info}/WHEEL +0 -0
- {radboy-0.0.419.dist-info → radboy-0.0.421.dist-info}/top_level.txt +0 -0
radboy/DB/Prompt.py
CHANGED
|
@@ -29,6 +29,18 @@ from Crypto.Util.Padding import pad, unpad
|
|
|
29
29
|
from decimal import Decimal
|
|
30
30
|
import biip
|
|
31
31
|
import radboy.Orders.MilkWaterOrder as MWR
|
|
32
|
+
import itertools
|
|
33
|
+
|
|
34
|
+
def generate_cmds(startcmd,endCmd):
|
|
35
|
+
cmd=(startcmd,endCmd)
|
|
36
|
+
cmds=[]
|
|
37
|
+
for i in itertools.product(startcmd,endCmd):
|
|
38
|
+
if ''.join(i) not in cmds:
|
|
39
|
+
cmds.append(''.join(i))
|
|
40
|
+
if ' '.join(i) not in cmds:
|
|
41
|
+
cmds.append(' '.join(i))
|
|
42
|
+
return cmds
|
|
43
|
+
|
|
32
44
|
|
|
33
45
|
def MEM():
|
|
34
46
|
try:
|
|
@@ -2027,18 +2039,19 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2027
2039
|
{Fore.grey_70}**{Fore.light_green}'exe-print','pxr','print exe result'{Fore.light_steel_blue} print result of inline script from save without returning{Style.reset}
|
|
2028
2040
|
{Fore.grey_70}{llo_modes} Modes ONLY **{Fore.light_green}'rllo','reverse list lookup order'{Fore.light_green}Reverse the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
|
|
2029
2041
|
{Fore.grey_70}{llo_modes} Modes ONLY **{Fore.light_green}'vllo','view list lookup order'{Fore.light_green}View the ordering used by the List Maker's listing modes for Entry Lookup, i.e. set Shelf,mksl,qsl{Style.reset}
|
|
2030
|
-
{Fore.
|
|
2031
|
-
{Fore.
|
|
2032
|
-
{Fore.
|
|
2033
|
-
{Fore.
|
|
2034
|
-
|
|
2035
|
-
|
|
2042
|
+
{Fore.grey_85}** {Fore.light_steel_blue}'fbht','fmbh','formbuilder help','form helptext'{Fore.light_green}FormBuilderHelpText; extra keywords when asked for time and date{Style.reset}
|
|
2043
|
+
{Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['crate water','cw','crates','milk','create milk','crt mlk','crt wtr','mlk']))}'{Fore.light_green} print hard-coded order dates for cw/mlk{Style.reset}
|
|
2044
|
+
{Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['grocery','Grocery','grcry']))}{Fore.light_green} print hard-coded order dates grocery load{Style.reset}
|
|
2045
|
+
{Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['frozen','Frozen','fzn']))}{Fore.light_green} print hard-coded order dates frozen load{Style.reset}
|
|
2046
|
+
{Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['gm','lqr','general merchandise','liquor','totes','green totes','grn tts','grntts']))}{Fore.light_green} print hard-coded order dates GM Load/Liquor Load{Style.reset}
|
|
2047
|
+
{Fore.grey_85}** {Fore.light_steel_blue}{f'{Fore.light_red},{Fore.light_steel_blue}'.join(generate_cmds(startcmd=['orddts','ordts','loads','lds','orders','loads','rxdates'],endCmd=['','all','all dates','all dts','aldts','*']))}{Fore.light_green} print all load dates {Style.reset}
|
|
2048
|
+
'''
|
|
2036
2049
|
print(extra)
|
|
2037
2050
|
print(helpText)
|
|
2038
2051
|
continue
|
|
2039
|
-
elif cmd.lower() in ['
|
|
2052
|
+
elif cmd.lower() in generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['crate water','cw','crates','milk','create milk','crt mlk','crt wtr','mlk']):
|
|
2040
2053
|
tmp=datetime.today()
|
|
2041
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the
|
|
2054
|
+
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the current datetime for 'Crate Water'/'Milk'[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2042
2055
|
if today in [None,]:
|
|
2043
2056
|
continue
|
|
2044
2057
|
elif today in ['d',]:
|
|
@@ -2047,9 +2060,21 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2047
2060
|
dta=MWR.WaterMilkOrder(today=today)
|
|
2048
2061
|
print(dta.orderMsg)
|
|
2049
2062
|
continue
|
|
2050
|
-
elif cmd.lower() in ['
|
|
2063
|
+
elif cmd.lower() in generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['gm','lqr','general merchandise','liquor','totes','green totes','grn tts','grntts']):
|
|
2064
|
+
|
|
2051
2065
|
tmp=datetime.today()
|
|
2052
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the
|
|
2066
|
+
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the current datetime for GM/LQR[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2067
|
+
if today in [None,]:
|
|
2068
|
+
continue
|
|
2069
|
+
elif today in ['d',]:
|
|
2070
|
+
today=tmp
|
|
2071
|
+
if isinstance(today,datetime):
|
|
2072
|
+
dta=MWR.WaterMilkOrder(today=today,department="General Merchandise[GM]/Liquor[LQR]",noMilkDays=['saturday','monday','wednesday','friday'])
|
|
2073
|
+
print(dta.orderMsg)
|
|
2074
|
+
continue
|
|
2075
|
+
elif cmd.lower() in generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['grocery','Grocery','grcry']):
|
|
2076
|
+
tmp=datetime.today()
|
|
2077
|
+
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the current datetime for 'Grocery'[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2053
2078
|
if today in [None,]:
|
|
2054
2079
|
continue
|
|
2055
2080
|
elif today in ['d',]:
|
|
@@ -2058,9 +2083,40 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2058
2083
|
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["monday","wednesday"],department="Grocery")
|
|
2059
2084
|
print(dta.orderMsg)
|
|
2060
2085
|
continue
|
|
2061
|
-
elif cmd.lower() in ['
|
|
2086
|
+
elif cmd.lower() in generate_cmds(startcmd=['orddt','ordt','loads','lds'],endCmd=['frozen','Frozen','fzn']):
|
|
2087
|
+
tmp=datetime.today()
|
|
2088
|
+
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the current datetime for 'Frozen'[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2089
|
+
if today in [None,]:
|
|
2090
|
+
continue
|
|
2091
|
+
elif today in ['d',]:
|
|
2092
|
+
today=tmp
|
|
2093
|
+
if isinstance(today,datetime):
|
|
2094
|
+
|
|
2095
|
+
#["saturday","tuesday","thursday"]
|
|
2096
|
+
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=False)
|
|
2097
|
+
print(dta.orderMsg)
|
|
2098
|
+
continue
|
|
2099
|
+
elif cmd.lower() in generate_cmds(startcmd=['orddts','ordts','loads','lds','orders','loads','rxdates'],endCmd=['','all','all dates','all dts','aldts','*']):
|
|
2100
|
+
tmp=datetime.today()
|
|
2101
|
+
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the current datetime for for all Loads[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2102
|
+
if today in [None,]:
|
|
2103
|
+
continue
|
|
2104
|
+
elif today in ['d',]:
|
|
2105
|
+
today=tmp
|
|
2106
|
+
if isinstance(today,datetime):
|
|
2107
|
+
dta=MWR.WaterMilkOrder(today=today)
|
|
2108
|
+
print(dta.orderMsg)
|
|
2109
|
+
|
|
2110
|
+
tmp=datetime.today()
|
|
2111
|
+
if today in [None,]:
|
|
2112
|
+
continue
|
|
2113
|
+
elif today in ['d',]:
|
|
2114
|
+
today=tmp
|
|
2115
|
+
if isinstance(today,datetime):
|
|
2116
|
+
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["monday","wednesday"],department="Grocery")
|
|
2117
|
+
print(dta.orderMsg)
|
|
2118
|
+
|
|
2062
2119
|
tmp=datetime.today()
|
|
2063
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the order datetime for 'Frozen'[default={tmp}]?",helpText=f"a datetime(default={tmp})",data="datetime")
|
|
2064
2120
|
if today in [None,]:
|
|
2065
2121
|
continue
|
|
2066
2122
|
elif today in ['d',]:
|
|
@@ -2070,6 +2126,14 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2070
2126
|
#["saturday","tuesday","thursday"]
|
|
2071
2127
|
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=False)
|
|
2072
2128
|
print(dta.orderMsg)
|
|
2129
|
+
|
|
2130
|
+
if today in [None,]:
|
|
2131
|
+
continue
|
|
2132
|
+
elif today in ['d',]:
|
|
2133
|
+
today=tmp
|
|
2134
|
+
if isinstance(today,datetime):
|
|
2135
|
+
dta=MWR.WaterMilkOrder(today=today,department="General Merchandise[GM]/Liquor[LQR]",noMilkDays=['saturday','monday','wednesday','friday'])
|
|
2136
|
+
print(dta.orderMsg)
|
|
2073
2137
|
continue
|
|
2074
2138
|
elif cmd.lower() in ['rllo','reverse list lookup order']:
|
|
2075
2139
|
try:
|
|
Binary file
|
radboy/Orders/MilkWaterOrder.py
CHANGED
|
@@ -40,17 +40,20 @@ class WaterMilkOrder:
|
|
|
40
40
|
if count >= 7:
|
|
41
41
|
break
|
|
42
42
|
|
|
43
|
-
def order_gap(self,offDays=['monday','sunday','wednesday','friday']):
|
|
43
|
+
def order_gap(self,offDays=['monday','sunday','wednesday','friday'],next_day=False):
|
|
44
44
|
tdy=self.today
|
|
45
45
|
nextD=[i for i in self.odays(offDays=offDays)][0]
|
|
46
|
-
print(nextD)
|
|
47
46
|
gap=nextD[1]-tdy
|
|
48
47
|
if gap <= timedelta(0):
|
|
49
48
|
nextD=[i for i in self.odays(offDays=offDays)][1]
|
|
50
49
|
tdy=datetime(self.today.year,self.today.month,self.today.day)
|
|
51
50
|
gap=nextD[1]-tdy
|
|
51
|
+
if next_day == True:
|
|
52
|
+
return tdy+timedelta(days=gap.days)
|
|
52
53
|
return gap
|
|
53
54
|
else:
|
|
55
|
+
if next_day == True:
|
|
56
|
+
return nextD[1]
|
|
54
57
|
return gap
|
|
55
58
|
|
|
56
59
|
def __init__(self,noMilkDays=['wednesday','friday','monday'],today=TDY,department="Dairy",frozen=False):
|
|
@@ -67,33 +70,55 @@ class WaterMilkOrder:
|
|
|
67
70
|
self.dayString=today.strftime('%A').lower()
|
|
68
71
|
self.frozen=frozen
|
|
69
72
|
if department.lower() in ['dairy',]:
|
|
73
|
+
nxt=self.order_gap(offDays=self.noMilkDays)
|
|
74
|
+
nxtD=self.order_gap(offDays=self.noMilkDays,next_day=True)
|
|
75
|
+
self.WaterRx={
|
|
76
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] RX "Crate Water/Crated Milk Load" Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
77
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Crate Water/Crated Milk"? -> ':orderLang[self.today.strftime("%A").lower() in self.noMilkDays],
|
|
78
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Crate Water/Crated Milk Load" is in {Fore.orange_red_1}{nxt} hours{Fore.light_yellow}; RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':f'{nxtD.strftime('%A (%m/%d/%Y)')}',
|
|
79
|
+
|
|
80
|
+
}
|
|
81
|
+
'''
|
|
70
82
|
self.WaterRx={
|
|
71
83
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] "Crate Water"/Milk RX\'d Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
72
84
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Crate Water"/Milk Today? -> ':orderLang[self.nextOrderDate()],
|
|
73
|
-
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Crate Water"/Milk RX Date From Today({self.today.strftime("%m/%d/%Y")}) is -> ':self.nextRxDate().strftime('%A (%m/%d/%Y)'),
|
|
74
|
-
}
|
|
85
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Crate Water"/Milk RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':self.nextRxDate().strftime('%A (%m/%d/%Y)'),
|
|
86
|
+
}'''
|
|
75
87
|
elif department.lower() in ['frozen',]:
|
|
76
88
|
nxt=self.order_gap(offDays=self.noMilkDays)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
89
|
+
nxtD=self.order_gap(offDays=self.noMilkDays,next_day=True)
|
|
90
|
+
self.WaterRx={
|
|
91
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] RX "Frozen Load" Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
92
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Frozen"? -> ':orderLang[self.today.strftime("%A").lower() in self.noMilkDays],
|
|
93
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Frozen Load" is in {Fore.orange_red_1}{nxt} hours{Fore.light_yellow}; RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':f'{nxtD.strftime('%A (%m/%d/%Y)')}',
|
|
94
|
+
|
|
95
|
+
}
|
|
96
|
+
elif department.lower() in ['grocery',]:
|
|
97
|
+
nxt=self.order_gap(offDays=self.noMilkDays)
|
|
98
|
+
nxtD=self.order_gap(offDays=self.noMilkDays,next_day=True)
|
|
85
99
|
self.WaterRx={
|
|
86
|
-
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] RX
|
|
87
|
-
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order
|
|
88
|
-
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "
|
|
100
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] RX "Grocery Load" Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
101
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Grocery"? -> ':orderLang[self.today.strftime("%A").lower() in self.noMilkDays],
|
|
102
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Grocery Load" is in {Fore.orange_red_1}{nxt} hours{Fore.light_yellow}; RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':f'{nxtD.strftime('%A (%m/%d/%Y)')}',
|
|
89
103
|
|
|
90
104
|
}
|
|
91
105
|
else:
|
|
106
|
+
nxt=self.order_gap(offDays=self.noMilkDays)
|
|
107
|
+
nxtD=self.order_gap(offDays=self.noMilkDays,next_day=True)
|
|
108
|
+
self.WaterRx={
|
|
109
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] RX "{department} Load" Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
110
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "{department}"? -> ':orderLang[self.today.strftime("%A").lower() in self.noMilkDays],
|
|
111
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "{department} Load" is in {Fore.orange_red_1}{nxt} hours{Fore.light_yellow}; RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':f'{nxtD.strftime('%A (%m/%d/%Y)')}',
|
|
112
|
+
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
'''
|
|
92
116
|
self.WaterRx={
|
|
93
117
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] "Load" RX\'d Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
94
118
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Load" Today? -> ':orderLang[self.nextOrderDate()],
|
|
95
|
-
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Load" RX Date From Today({self.today.strftime("%m/%d/%Y")}) is -> ':self.nextRxDate().strftime('%A (%m/%d/%Y)'),
|
|
119
|
+
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Next "Load" RX Date From Today({self.today.strftime("%A")} {self.today.strftime("%m/%d/%Y")}) is -> ':self.nextRxDate().strftime('%A (%m/%d/%Y)'),
|
|
96
120
|
}
|
|
121
|
+
'''
|
|
97
122
|
self.orderMsg=[]
|
|
98
123
|
ct=len(self.WaterRx)
|
|
99
124
|
for num,k in enumerate(self.WaterRx):
|
radboy/RecordMyCodes.py
CHANGED
|
@@ -473,19 +473,7 @@ class Main:
|
|
|
473
473
|
st[num]=i.replace("|",f"{color1}{Style.bold}|{Style.reset}{color2}")
|
|
474
474
|
return '\n'.join(st)
|
|
475
475
|
self.modeString=printHelp(self)
|
|
476
|
-
|
|
477
|
-
x=MilkWaterOrder.WaterMilkOrder()
|
|
478
|
-
print(x.orderMsg)
|
|
479
|
-
del(x)
|
|
480
|
-
x=MilkWaterOrder.WaterMilkOrder(today=date(today().year,today().month,today().day),noMilkDays=["monday","wednesday"],department="Grocery")
|
|
481
|
-
print(x.orderMsg)
|
|
482
|
-
del(x)
|
|
483
|
-
x=MilkWaterOrder.WaterMilkOrder(today=date(today().year,today().month,today().day),noMilkDays=["monday","wednesday"],department="Grocery")
|
|
484
|
-
print(x.orderMsg)
|
|
485
|
-
del(x)
|
|
486
|
-
x=MilkWaterOrder.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=True)
|
|
487
|
-
print(x.orderMsg)
|
|
488
|
-
del(x)
|
|
476
|
+
|
|
489
477
|
while True:
|
|
490
478
|
self.currentMode=input(f"{Fore.light_green}[{Fore.light_steel_blue}Root{Style.reset}{Fore.light_green}]{Style.reset}which mode do you want to use[?/m]:{Fore.green_yellow} ").lower()
|
|
491
479
|
logInput(self.currentMode)
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.421'
|
|
Binary file
|
|
Binary file
|
|
@@ -3,9 +3,9 @@ radboy/1-2024-04-02.png_04022024.jpg,sha256=4DFsTncCfbqEp2136jFathURUQuu3zpe1Jnh
|
|
|
3
3
|
radboy/Default.TTF,sha256=lXZrWPfYabD6LPbm_rJsGyHN8mMfHFhj_JvSBtXG6O4,915212
|
|
4
4
|
radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
|
|
5
5
|
radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
|
|
6
|
-
radboy/RecordMyCodes.py,sha256=
|
|
6
|
+
radboy/RecordMyCodes.py,sha256=0qFnt3gEk58-8S1uCmVBbtOItFJ0zp0Yt7RqXsF0ksY,41364
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=IOMAKXq4cD3KfVZn5Ch0ovSHfwEc1-a6rALv8JtVzCw,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,7 +83,7 @@ radboy/DB/ExerciseTracker.py,sha256=CZ8jdKJiAE_QTAiJTRXi8ZOnS1NUiSvWVSKLHLpYVGk,
|
|
|
83
83
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
84
84
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
85
85
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
|
-
radboy/DB/Prompt.py,sha256=
|
|
86
|
+
radboy/DB/Prompt.py,sha256=hqq3uHnWpxqi38ArOtfUd_8krM8B8R5pzfJi6Qeet-o,136613
|
|
87
87
|
radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
|
|
88
88
|
radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
|
|
89
89
|
radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
|
|
@@ -107,7 +107,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
|
|
|
107
107
|
radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
|
|
108
108
|
radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
|
|
109
109
|
radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
|
|
110
|
-
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=
|
|
110
|
+
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=rJAZh1EUN6qnzuRUt4W38VaZXsEXkFHVUs0U2yZOWdY,209372
|
|
111
111
|
radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
|
|
112
112
|
radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
|
|
113
113
|
radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
|
|
@@ -270,7 +270,7 @@ radboy/Of/__pycache__/of.cpython-312.pyc,sha256=s1vd2LiqDUovNqWdCLynwVs6mfl6SMb-
|
|
|
270
270
|
radboy/Of/__pycache__/of.cpython-313.pyc,sha256=YjqLPmcUQ6vYONJGtAKVwZ-73jqvMCI5wqupV1y1zbk,3067
|
|
271
271
|
radboy/Old Schedules/schedule-template-11.01.2024.txt,sha256=1oSCydtA-9_O8Ubhd1jnP_z06cXb2_8Ej7wwe10d8hE,2808
|
|
272
272
|
radboy/Old Schedules/schedule-template-pre-11.01.2024.txt,sha256=4uF0apuI2OCC4A5v5sSJ3ustBrHSBj2GUvIGSfIFndk,2872
|
|
273
|
-
radboy/Orders/MilkWaterOrder.py,sha256=
|
|
273
|
+
radboy/Orders/MilkWaterOrder.py,sha256=PsYZf0XSWUeC1kciOqLaSXp_CK1M1MX-AmNrYbg0Svg,7473
|
|
274
274
|
radboy/Orders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
275
|
radboy/POS/POS.py,sha256=jJYwrcLHPgBkYPzDvxXIWiAXK_za56g0vY5s5Kzh3nQ,36271
|
|
276
276
|
radboy/POS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -384,13 +384,13 @@ radboy/WebSearchFrameWork/__pycache__/__init__.cpython-311.pyc,sha256=6iaqOS6i1n
|
|
|
384
384
|
radboy/__pycache__/MainAssist.cpython-312.pyc,sha256=5mbMrRFcqRZ-1etrlvlsW8aJhMjNPUB2Vh7azstgBuE,12399
|
|
385
385
|
radboy/__pycache__/RecordMyCodes.cpython-311.pyc,sha256=q-JqnspEHoJhg1VMsEMz3vry5KqY4xGjtr6akm8hvU0,47367
|
|
386
386
|
radboy/__pycache__/RecordMyCodes.cpython-312.pyc,sha256=o71KtEcm_u2fD7qLWDRTSNy5PQDb3lXJ-xa1ENmojL4,56063
|
|
387
|
-
radboy/__pycache__/RecordMyCodes.cpython-313.pyc,sha256=
|
|
387
|
+
radboy/__pycache__/RecordMyCodes.cpython-313.pyc,sha256=emDZEJTJSoHWu6XONHCTHW_WZYtQ3pwOxQXazUF7Tos,64044
|
|
388
388
|
radboy/__pycache__/RecordMyCodes.cpython-39.pyc,sha256=FiF2P5zp8mhydS5Cgn-Yx5behEyFANnqI1G0x5KqUq8,21916
|
|
389
389
|
radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9KZUr6A8Dk,411
|
|
390
390
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
391
391
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
392
392
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
393
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
393
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=oxDY7i1NoRXJwIOXrl0vUYFHZzuHt1bDEFnVKXB3j1w,165
|
|
394
394
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
395
395
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
396
396
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -415,7 +415,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
415
415
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
416
416
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
417
417
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
418
|
-
radboy-0.0.
|
|
419
|
-
radboy-0.0.
|
|
420
|
-
radboy-0.0.
|
|
421
|
-
radboy-0.0.
|
|
418
|
+
radboy-0.0.421.dist-info/METADATA,sha256=MQ43Xb0MrCKwBDOyv2lp460uXqpR_xZMl8Bq8atVtkA,794
|
|
419
|
+
radboy-0.0.421.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
420
|
+
radboy-0.0.421.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
421
|
+
radboy-0.0.421.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|