radboy 0.0.418__py3-none-any.whl → 0.0.420__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 +35 -4
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/Orders/MilkWaterOrder.py +71 -3
- 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.418.dist-info → radboy-0.0.420.dist-info}/METADATA +1 -1
- {radboy-0.0.418.dist-info → radboy-0.0.420.dist-info}/RECORD +11 -11
- {radboy-0.0.418.dist-info → radboy-0.0.420.dist-info}/WHEEL +0 -0
- {radboy-0.0.418.dist-info → radboy-0.0.420.dist-info}/top_level.txt +0 -0
radboy/DB/Prompt.py
CHANGED
|
@@ -2038,7 +2038,7 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2038
2038
|
continue
|
|
2039
2039
|
elif cmd.lower() in ['order date cw/mlk','ord dt cw/mlk','orddt cw/mlk','ordt cw/mlk','or dt cw/mlk']:
|
|
2040
2040
|
tmp=datetime.today()
|
|
2041
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the
|
|
2041
|
+
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
2042
|
if today in [None,]:
|
|
2043
2043
|
continue
|
|
2044
2044
|
elif today in ['d',]:
|
|
@@ -2049,7 +2049,7 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2049
2049
|
continue
|
|
2050
2050
|
elif cmd.lower() in ['order date grocery','ord dt grcry','orddt grcry','ordt grcry','or dt grcry']:
|
|
2051
2051
|
tmp=datetime.today()
|
|
2052
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the
|
|
2052
|
+
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
2053
|
if today in [None,]:
|
|
2054
2054
|
continue
|
|
2055
2055
|
elif today in ['d',]:
|
|
@@ -2060,7 +2060,7 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2060
2060
|
continue
|
|
2061
2061
|
elif cmd.lower() in ['order date frozen','ord dt fzn','orddt fzn','ordt fzn','or dt fzn']:
|
|
2062
2062
|
tmp=datetime.today()
|
|
2063
|
-
today=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"What is the
|
|
2063
|
+
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")
|
|
2064
2064
|
if today in [None,]:
|
|
2065
2065
|
continue
|
|
2066
2066
|
elif today in ['d',]:
|
|
@@ -2068,7 +2068,38 @@ CMD's are not final until ended with {Fore.magenta}{hw_delim}{Style.reset}""")
|
|
|
2068
2068
|
if isinstance(today,datetime):
|
|
2069
2069
|
|
|
2070
2070
|
#["saturday","tuesday","thursday"]
|
|
2071
|
-
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=
|
|
2071
|
+
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=False)
|
|
2072
|
+
print(dta.orderMsg)
|
|
2073
|
+
continue
|
|
2074
|
+
elif cmd.lower() in ['orders','loads','rxdates']:
|
|
2075
|
+
tmp=datetime.today()
|
|
2076
|
+
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")
|
|
2077
|
+
if today in [None,]:
|
|
2078
|
+
continue
|
|
2079
|
+
elif today in ['d',]:
|
|
2080
|
+
today=tmp
|
|
2081
|
+
if isinstance(today,datetime):
|
|
2082
|
+
dta=MWR.WaterMilkOrder(today=today)
|
|
2083
|
+
print(dta.orderMsg)
|
|
2084
|
+
|
|
2085
|
+
tmp=datetime.today()
|
|
2086
|
+
if today in [None,]:
|
|
2087
|
+
continue
|
|
2088
|
+
elif today in ['d',]:
|
|
2089
|
+
today=tmp
|
|
2090
|
+
if isinstance(today,datetime):
|
|
2091
|
+
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["monday","wednesday"],department="Grocery")
|
|
2092
|
+
print(dta.orderMsg)
|
|
2093
|
+
|
|
2094
|
+
tmp=datetime.today()
|
|
2095
|
+
if today in [None,]:
|
|
2096
|
+
continue
|
|
2097
|
+
elif today in ['d',]:
|
|
2098
|
+
today=tmp
|
|
2099
|
+
if isinstance(today,datetime):
|
|
2100
|
+
|
|
2101
|
+
#["saturday","tuesday","thursday"]
|
|
2102
|
+
dta=MWR.WaterMilkOrder(today=today,noMilkDays=["sunday","monday","wednesday","friday"],department="Frozen",frozen=False)
|
|
2072
2103
|
print(dta.orderMsg)
|
|
2073
2104
|
continue
|
|
2074
2105
|
elif cmd.lower() in ['rllo','reverse list lookup order']:
|
|
Binary file
|
radboy/Orders/MilkWaterOrder.py
CHANGED
|
@@ -19,13 +19,43 @@ class WaterMilkOrder:
|
|
|
19
19
|
|
|
20
20
|
def nextOrderDate(self):
|
|
21
21
|
rxd=self.nextRxDate()
|
|
22
|
-
if (rxd-self.today)
|
|
22
|
+
if (rxd-self.today) <= timedelta(days=1.999):
|
|
23
23
|
if not self.frozen:
|
|
24
24
|
return True
|
|
25
25
|
else:
|
|
26
26
|
pass
|
|
27
27
|
return False
|
|
28
28
|
|
|
29
|
+
def odays(self,offDays=['monday','sunday','wednesday','friday']):
|
|
30
|
+
tdy=self.today
|
|
31
|
+
count=0
|
|
32
|
+
limit=7
|
|
33
|
+
while True:
|
|
34
|
+
count+=1
|
|
35
|
+
name=tdy.strftime("%A").lower()
|
|
36
|
+
if name not in offDays:
|
|
37
|
+
yield name,tdy,tdy.ctime()
|
|
38
|
+
|
|
39
|
+
tdy=tdy+timedelta(days=1)
|
|
40
|
+
if count >= 7:
|
|
41
|
+
break
|
|
42
|
+
|
|
43
|
+
def order_gap(self,offDays=['monday','sunday','wednesday','friday'],next_day=False):
|
|
44
|
+
tdy=self.today
|
|
45
|
+
nextD=[i for i in self.odays(offDays=offDays)][0]
|
|
46
|
+
gap=nextD[1]-tdy
|
|
47
|
+
if gap <= timedelta(0):
|
|
48
|
+
nextD=[i for i in self.odays(offDays=offDays)][1]
|
|
49
|
+
tdy=datetime(self.today.year,self.today.month,self.today.day)
|
|
50
|
+
gap=nextD[1]-tdy
|
|
51
|
+
if next_day == True:
|
|
52
|
+
return tdy+timedelta(days=gap.days)
|
|
53
|
+
return gap
|
|
54
|
+
else:
|
|
55
|
+
if next_day == True:
|
|
56
|
+
return nextD[1]
|
|
57
|
+
return gap
|
|
58
|
+
|
|
29
59
|
def __init__(self,noMilkDays=['wednesday','friday','monday'],today=TDY,department="Dairy",frozen=False):
|
|
30
60
|
if frozen:
|
|
31
61
|
self.orderMsg="[FROZEN Flag]Under RND! Do not use YET!!!"
|
|
@@ -40,17 +70,55 @@ class WaterMilkOrder:
|
|
|
40
70
|
self.dayString=today.strftime('%A').lower()
|
|
41
71
|
self.frozen=frozen
|
|
42
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
|
+
'''
|
|
43
82
|
self.WaterRx={
|
|
44
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],
|
|
45
84
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Crate Water"/Milk Today? -> ':orderLang[self.nextOrderDate()],
|
|
46
|
-
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)'),
|
|
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
|
+
}'''
|
|
87
|
+
elif department.lower() in ['frozen',]:
|
|
88
|
+
nxt=self.order_gap(offDays=self.noMilkDays)
|
|
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)
|
|
99
|
+
self.WaterRx={
|
|
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)')}',
|
|
103
|
+
|
|
47
104
|
}
|
|
48
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
|
+
'''
|
|
49
116
|
self.WaterRx={
|
|
50
117
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] "Load" RX\'d Today? ->':orderLang[self.dayString not in self.noMilkDays],
|
|
51
118
|
f'{Fore.light_yellow}[{Fore.orange_red_1}{department}{Fore.light_yellow}] Order "Load" Today? -> ':orderLang[self.nextOrderDate()],
|
|
52
|
-
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)'),
|
|
53
120
|
}
|
|
121
|
+
'''
|
|
54
122
|
self.orderMsg=[]
|
|
55
123
|
ct=len(self.WaterRx)
|
|
56
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.420'
|
|
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=jxtzy0nwbOeUi20n2KZ0HIlZiQLZ-2Wf_CFQpccUKQQ,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=oSyfcrHLJ4Nty5cDQEUBVXBVH66Q2EAyRV58iE4wHRo,133880
|
|
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=7isMqNiXiW17jpXWwebOcb6JpOqEnUdtK9LVaGdXp5I,206469
|
|
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=QN0WB4CnfxREYA_SGUlYTiGU6PTqv0gdXHxIAARk5Yg,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.420.dist-info/METADATA,sha256=pyrssjnJ6uLczhHHd1EktRObNSkDW5mAjZ4tGikSCB4,794
|
|
419
|
+
radboy-0.0.420.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
420
|
+
radboy-0.0.420.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
421
|
+
radboy-0.0.420.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|