radboy 0.0.500__py3-none-any.whl → 0.0.501__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/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +26 -8
- radboy/Lookup2/Lookup2.py +86 -0
- radboy/Lookup2/__pycache__/Lookup2.cpython-313.pyc +0 -0
- radboy/Occurances/Occurances.py +171 -16
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.500.dist-info → radboy-0.0.501.dist-info}/METADATA +1 -1
- {radboy-0.0.500.dist-info → radboy-0.0.501.dist-info}/RECORD +11 -11
- {radboy-0.0.500.dist-info → radboy-0.0.501.dist-info}/WHEEL +0 -0
- {radboy-0.0.500.dist-info → radboy-0.0.501.dist-info}/top_level.txt +0 -0
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -46,6 +46,29 @@ class BOOLEAN_ANSWERS:
|
|
|
46
46
|
self.timeout=5
|
|
47
47
|
self.long_boot_time=90
|
|
48
48
|
self.timeout_msg=f"{Fore.light_yellow}SessionOnly({Fore.light_red}lb|longboot = timeout of 90s;{Fore.light_cyan}fb|fastboot = timeout of 0s){Style.reset}\n"
|
|
49
|
+
self.math_operators={
|
|
50
|
+
'+':None,
|
|
51
|
+
'-':None,
|
|
52
|
+
'*':None,
|
|
53
|
+
'**':None,
|
|
54
|
+
'/':None,
|
|
55
|
+
'//':None,
|
|
56
|
+
'%':None,
|
|
57
|
+
'&':None,
|
|
58
|
+
'|':None,
|
|
59
|
+
}
|
|
60
|
+
self.comparison_operators={
|
|
61
|
+
'==':None,
|
|
62
|
+
'<':None,
|
|
63
|
+
'<=':None,
|
|
64
|
+
'>':None,
|
|
65
|
+
'>=':None,
|
|
66
|
+
'!=':None,
|
|
67
|
+
}
|
|
68
|
+
self.and_or={
|
|
69
|
+
'or':None,
|
|
70
|
+
'and':None,
|
|
71
|
+
}
|
|
49
72
|
|
|
50
73
|
BooleanAnswers=BOOLEAN_ANSWERS()
|
|
51
74
|
class switch_bootable:
|
|
@@ -5390,15 +5413,8 @@ class Occurances(BASE,Template):
|
|
|
5390
5413
|
max_post=Column(Float,default=sys.maxsize)
|
|
5391
5414
|
min_post=Column(Float,default=-sys.maxsize)
|
|
5392
5415
|
|
|
5393
|
-
hidden=Column(Boolean,default=False)
|
|
5394
|
-
hidden_dtoe=Column(DateTime,default=None)
|
|
5395
|
-
|
|
5396
|
-
soft_deleted=Column(Boolean,default=False)
|
|
5397
|
-
soft_deleted_dtoe=Column(DateTime,default=None)
|
|
5398
|
-
|
|
5399
5416
|
created_dtoe=Column(DateTime,default=datetime.now())
|
|
5400
|
-
|
|
5401
|
-
modified_how_many_times_since_created=Column(Integer,default=0)
|
|
5417
|
+
|
|
5402
5418
|
|
|
5403
5419
|
def as_json(self):
|
|
5404
5420
|
excludes=['cbid','DTOE']
|
|
@@ -5409,6 +5425,8 @@ class Occurances(BASE,Template):
|
|
|
5409
5425
|
return f"{self.__class__.__name__}(cbid={self.cbid})"
|
|
5410
5426
|
|
|
5411
5427
|
def __init__(self,**kwargs):
|
|
5428
|
+
if 'uid' not in kwargs:
|
|
5429
|
+
self.uid=str(uuid1())
|
|
5412
5430
|
for k in kwargs.keys():
|
|
5413
5431
|
if k in [s.name for s in self.__table__.columns]:
|
|
5414
5432
|
setattr(self,k,kwargs.get(k))
|
radboy/Lookup2/Lookup2.py
CHANGED
|
@@ -6,6 +6,82 @@ from colored import Style,Fore,Back
|
|
|
6
6
|
import qrcode
|
|
7
7
|
|
|
8
8
|
class Lookup:
|
|
9
|
+
def searchSpec(self,short=False):
|
|
10
|
+
with Session(ENGINE) as session:
|
|
11
|
+
fields={i.name:{'default':None,"type":str(i.type).lower()} for i in Entry.__table__.columns}
|
|
12
|
+
fd=FormBuilder(data=fields)
|
|
13
|
+
|
|
14
|
+
query=None
|
|
15
|
+
if fd is not None:
|
|
16
|
+
filters=[]
|
|
17
|
+
for i in fd:
|
|
18
|
+
if fd[i] is not None:
|
|
19
|
+
ct=len(BooleanAnswers.comparison_operators)
|
|
20
|
+
htext=[std_colorize(i,num,ct) for num,i in enumerate(BooleanAnswers.comparison_operators)]
|
|
21
|
+
htext='\n'.join(htext)
|
|
22
|
+
operators=[i for i in BooleanAnswers.comparison_operators]
|
|
23
|
+
|
|
24
|
+
if fields[i]['type'] in ['varchar','text','string']:
|
|
25
|
+
filters.append(getattr(Entry,i).icontains(fd[i]))
|
|
26
|
+
else:
|
|
27
|
+
print(htext)
|
|
28
|
+
operator=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"'{i}' operator? ",helpText=htext,data="integer")
|
|
29
|
+
if operator is None:
|
|
30
|
+
return
|
|
31
|
+
elif operator in ['d',]:
|
|
32
|
+
operator=0
|
|
33
|
+
operator=operators[operator]
|
|
34
|
+
|
|
35
|
+
if operator == '==':
|
|
36
|
+
filters.append(getattr(Entry,i)==fd[i])
|
|
37
|
+
elif operator == '>':
|
|
38
|
+
filters.append(getattr(Entry,i)>fd[i])
|
|
39
|
+
elif operator == '>=':
|
|
40
|
+
filters.append(getattr(Entry,i)>=fd[i])
|
|
41
|
+
elif operator == '<':
|
|
42
|
+
filters.append(getattr(Entry,i)<fd[i])
|
|
43
|
+
elif operator == '<=':
|
|
44
|
+
filters.append(getattr(Entry,i)<=fd[i])
|
|
45
|
+
elif operator == '!=':
|
|
46
|
+
filters.append(getattr(Entry,i)!=fd[i])
|
|
47
|
+
|
|
48
|
+
ct=len(BooleanAnswers.and_or)
|
|
49
|
+
htext=[std_colorize(i,num,ct) for num,i in enumerate(BooleanAnswers.and_or)]
|
|
50
|
+
htext='\n'.join(htext)
|
|
51
|
+
operators=[i for i in BooleanAnswers.and_or]
|
|
52
|
+
print(htext)
|
|
53
|
+
operator=Prompt.__init2__(None,func=FormBuilderMkText,ptext="and | or? ",helpText=htext,data="integer")
|
|
54
|
+
if operator is None:
|
|
55
|
+
return
|
|
56
|
+
elif operator in ['d',]:
|
|
57
|
+
operator=0
|
|
58
|
+
operator=operators[operator]
|
|
59
|
+
|
|
60
|
+
if operator == 'and':
|
|
61
|
+
query=session.query(Entry).filter(and_(*filters))
|
|
62
|
+
query=orderQuery(query,Entry.Timestamp)
|
|
63
|
+
elif operator == 'or':
|
|
64
|
+
query=session.query(Entry).filter(or_(*filters))
|
|
65
|
+
query=orderQuery(query,Entry.Timestamp)
|
|
66
|
+
else:
|
|
67
|
+
query=session.query(Entry).filter(or_(*filters))
|
|
68
|
+
query=orderQuery(query,Entry.Timestamp)
|
|
69
|
+
else:
|
|
70
|
+
query=session.query(Entry)
|
|
71
|
+
query=orderQuery(query,Entry.Timestamp)
|
|
72
|
+
if query is not None:
|
|
73
|
+
results=query.all()
|
|
74
|
+
cta=len(results)
|
|
75
|
+
if cta < 1:
|
|
76
|
+
print("No Results")
|
|
77
|
+
return
|
|
78
|
+
for num,i in enumerate(results):
|
|
79
|
+
if short:
|
|
80
|
+
print(std_colorize(i.seeShort(),num,cta))
|
|
81
|
+
else:
|
|
82
|
+
print(std_colorize(i,num,cta))
|
|
83
|
+
print(f"Total Results: {len(results)}")
|
|
84
|
+
|
|
9
85
|
def entrySearchBlank(self,just_code=True,fix=False):
|
|
10
86
|
print("Looking for Blank Barcode|Code")
|
|
11
87
|
with Session(ENGINE) as session:
|
|
@@ -149,6 +225,16 @@ class Lookup:
|
|
|
149
225
|
'cmds':['13.f','sch blank fx','schblnk fx','sch \'\' fx','sch "" fx','sch blnk fx'],
|
|
150
226
|
'exec':lambda self=self:self.entrySearchBlank(fix=True),
|
|
151
227
|
'desc':f'{Fore.light_blue}Search For Product by Entry Data where or_(Entry.Code=="") and set Entry.Code=="UNASSIGNED_TO_NEW_ITEM"'
|
|
228
|
+
},
|
|
229
|
+
uuid1():{
|
|
230
|
+
'cmds':['14','sch spec','schspec','spec sch','search specific','ssp','ssp+'],
|
|
231
|
+
'exec':lambda self=self:self.searchSpec(),
|
|
232
|
+
'desc':f'{Fore.light_blue}Search For Product by Entry Data using prompted fields'
|
|
233
|
+
},
|
|
234
|
+
uuid1():{
|
|
235
|
+
'cmds':['14.1','sch spec sht','schspecsht','spec sch sht','search specific short','ssps','ssp-'],
|
|
236
|
+
'exec':lambda self=self:self.searchSpec(short=True),
|
|
237
|
+
'desc':f'{Fore.light_blue}Search For Product by Entry Data using prompted fields'
|
|
152
238
|
}
|
|
153
239
|
}
|
|
154
240
|
def mehelp(self):
|
|
Binary file
|
radboy/Occurances/Occurances.py
CHANGED
|
@@ -54,6 +54,7 @@ class OccurancesUi:
|
|
|
54
54
|
|
|
55
55
|
def lst_group_names(self):
|
|
56
56
|
with Session(ENGINE) as session:
|
|
57
|
+
hs=[]
|
|
57
58
|
search={
|
|
58
59
|
'group_name':{
|
|
59
60
|
'default':None,
|
|
@@ -62,6 +63,10 @@ class OccurancesUi:
|
|
|
62
63
|
'group_uid':{
|
|
63
64
|
'default':None,
|
|
64
65
|
'type':'string',
|
|
66
|
+
},
|
|
67
|
+
'oid':{
|
|
68
|
+
'default':None,
|
|
69
|
+
'type':'integer',
|
|
65
70
|
}
|
|
66
71
|
}
|
|
67
72
|
fd=FormBuilder(data=search)
|
|
@@ -85,20 +90,65 @@ class OccurancesUi:
|
|
|
85
90
|
print(std_colorize("No Results Found",0,1))
|
|
86
91
|
return
|
|
87
92
|
for num,result in enumerate(results):
|
|
88
|
-
self.master_display(result,num,ct)
|
|
89
|
-
|
|
90
|
-
return results
|
|
91
|
-
return None
|
|
93
|
+
hs.append(self.master_display(result,num,ct))
|
|
94
|
+
helpText='\n'.join(hs)
|
|
95
|
+
return results,helpText
|
|
96
|
+
return None,None
|
|
92
97
|
def master_display(self,result,num,ct):
|
|
93
|
-
|
|
98
|
+
hstring=std_colorize(f"{Fore.light_sea_green}[group name] '{result.group_name}' {Fore.dodger_blue_3}- [guuid] '{result.group_uid}' -{Fore.green_yellow} [oid] '{result.oid}' - {Fore.light_magenta}[name] '{result.name}' - {Fore.magenta}[type] '{result.type}' - {Fore.orange_red_1}[qty] '{result.quantity}' {Fore.light_steel_blue}'{result.unit_of_measure}'{Fore.light_salmon_1} - [uid]'{result.uid}'",num,ct)
|
|
99
|
+
print(hstring)
|
|
100
|
+
return hstring
|
|
94
101
|
|
|
95
102
|
def lst_names(self):
|
|
96
|
-
|
|
103
|
+
with Session(ENGINE) as session:
|
|
104
|
+
hs=[]
|
|
105
|
+
search={
|
|
106
|
+
'name':{
|
|
107
|
+
'default':None,
|
|
108
|
+
'type':'string',
|
|
109
|
+
},
|
|
110
|
+
'uid':{
|
|
111
|
+
'default':None,
|
|
112
|
+
'type':'string',
|
|
113
|
+
},
|
|
114
|
+
'oid':{
|
|
115
|
+
'default':None,
|
|
116
|
+
'type':'integer',
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
fd=FormBuilder(data=search)
|
|
120
|
+
query=None
|
|
121
|
+
if fd is not None:
|
|
122
|
+
filters=[]
|
|
123
|
+
for i in fd:
|
|
124
|
+
if fd[i] is not None:
|
|
125
|
+
filters.append(getattr(Occurances,i).icontains(fd[i]))
|
|
126
|
+
query=session.query(Occurances).filter(or_(*filters))
|
|
127
|
+
query=orderQuery(query,Occurances.created_dtoe)
|
|
128
|
+
else:
|
|
129
|
+
query=session.query(Occurances)
|
|
130
|
+
query=orderQuery(query,Occurances.created_dtoe)
|
|
131
|
+
query=query.group_by(Occurances.uid)
|
|
97
132
|
|
|
98
|
-
|
|
133
|
+
if query is not None:
|
|
134
|
+
results=query.all()
|
|
135
|
+
ct=len(results)
|
|
136
|
+
if ct == 0:
|
|
137
|
+
print(std_colorize("No Results Found",0,1))
|
|
138
|
+
return
|
|
139
|
+
for num,result in enumerate(results):
|
|
140
|
+
hs.append(self.master_display(result,num,ct))
|
|
141
|
+
helpText='\n'.join(hs)
|
|
142
|
+
return results,helpText
|
|
143
|
+
return None,None
|
|
144
|
+
def total_by(self):
|
|
145
|
+
by=['group_name','group_uid','name','uid','type']
|
|
146
|
+
#need to select for total
|
|
147
|
+
|
|
148
|
+
def scan_create_count_save(self):
|
|
99
149
|
pass
|
|
100
150
|
|
|
101
|
-
def
|
|
151
|
+
def edit_groups(self):
|
|
102
152
|
pass
|
|
103
153
|
|
|
104
154
|
def searchAuto(self):
|
|
@@ -113,19 +163,99 @@ class OccurancesUi:
|
|
|
113
163
|
def set_max_post(self):
|
|
114
164
|
pass
|
|
115
165
|
|
|
116
|
-
#hide
|
|
117
|
-
def set_hidden(self):
|
|
118
|
-
pass
|
|
119
|
-
|
|
120
|
-
def set_soft_delete(self):
|
|
121
|
-
pass
|
|
122
166
|
def set_unit_of_measure(self):
|
|
123
167
|
pass
|
|
124
168
|
def set_qty(self):
|
|
125
169
|
pass
|
|
126
170
|
|
|
171
|
+
def delete_groups_uid(self):
|
|
172
|
+
with Session(ENGINE) as session:
|
|
173
|
+
while True:
|
|
174
|
+
search,helpText=self.lst_group_names()
|
|
175
|
+
if search is None:
|
|
176
|
+
return
|
|
177
|
+
whiches=Prompt.__init2__(None,func=FormBuilderMkText,ptext="which indexes to delete",helpText=helpText,data="list")
|
|
178
|
+
if whiches in [None,'d']:
|
|
179
|
+
return
|
|
180
|
+
cta=len(search)
|
|
181
|
+
try:
|
|
182
|
+
for which in whiches:
|
|
183
|
+
try:
|
|
184
|
+
which=int(which)
|
|
185
|
+
if which in range(0,cta):
|
|
186
|
+
guid=search[which].group_uid
|
|
187
|
+
x=session.query(Occurances).filter(Occurances.group_uid==guid).delete()
|
|
188
|
+
session.commit()
|
|
189
|
+
return
|
|
190
|
+
|
|
191
|
+
except Exception as e:
|
|
192
|
+
print(e)
|
|
193
|
+
except Exception as ee:
|
|
194
|
+
print(ee)
|
|
195
|
+
break
|
|
196
|
+
|
|
197
|
+
def delete_groups_name(self):
|
|
198
|
+
with Session(ENGINE) as session:
|
|
199
|
+
while True:
|
|
200
|
+
search,helpText=self.lst_group_names()
|
|
201
|
+
if search is None:
|
|
202
|
+
return
|
|
203
|
+
whiches=Prompt.__init2__(None,func=FormBuilderMkText,ptext="which indexes to delete",helpText=helpText,data="list")
|
|
204
|
+
if whiches in [None,'d']:
|
|
205
|
+
return
|
|
206
|
+
cta=len(search)
|
|
207
|
+
try:
|
|
208
|
+
for which in whiches:
|
|
209
|
+
try:
|
|
210
|
+
which=int(which)
|
|
211
|
+
print(which,which in range(0,cta),cta,range(0,cta))
|
|
212
|
+
if which in range(0,cta):
|
|
213
|
+
guid=search[which].group_name
|
|
214
|
+
print(guid)
|
|
215
|
+
x=session.query(Occurances).filter(Occurances.group_name==search[which].group_name).delete()
|
|
216
|
+
session.commit()
|
|
217
|
+
return
|
|
218
|
+
|
|
219
|
+
except Exception as e:
|
|
220
|
+
print(e)
|
|
221
|
+
except Exception as ee:
|
|
222
|
+
print(ee)
|
|
223
|
+
break
|
|
224
|
+
|
|
127
225
|
def delete(self):
|
|
128
|
-
|
|
226
|
+
with Session(ENGINE) as session:
|
|
227
|
+
while True:
|
|
228
|
+
search,helpText=self.lst_names()
|
|
229
|
+
if search is None:
|
|
230
|
+
return
|
|
231
|
+
whiches=Prompt.__init2__(None,func=FormBuilderMkText,ptext="which indexes to delete",helpText=helpText,data="list")
|
|
232
|
+
if whiches in [None,'d']:
|
|
233
|
+
return
|
|
234
|
+
cta=len(search)
|
|
235
|
+
try:
|
|
236
|
+
for which in whiches:
|
|
237
|
+
try:
|
|
238
|
+
which=int(which)
|
|
239
|
+
if which in range(0,cta):
|
|
240
|
+
oid=search[which].oid
|
|
241
|
+
x=session.query(Occurances).filter(Occurances.oid==oid).delete()
|
|
242
|
+
session.commit()
|
|
243
|
+
return
|
|
244
|
+
|
|
245
|
+
except Exception as e:
|
|
246
|
+
print(e)
|
|
247
|
+
except Exception as ee:
|
|
248
|
+
print(ee)
|
|
249
|
+
break
|
|
250
|
+
|
|
251
|
+
def list_all(self):
|
|
252
|
+
with Session(ENGINE) as session:
|
|
253
|
+
query=session.query(Occurances)
|
|
254
|
+
query=orderQuery(query,Occurances.created_dtoe)
|
|
255
|
+
results=query.all()
|
|
256
|
+
ct=len(results)
|
|
257
|
+
for num, i in enumerate(results):
|
|
258
|
+
self.master_display(i,num,ct)
|
|
129
259
|
|
|
130
260
|
def search_select(self,rTYPE=list,display=True):
|
|
131
261
|
'''Search for, select,
|
|
@@ -190,9 +320,34 @@ class OccurancesUi:
|
|
|
190
320
|
},
|
|
191
321
|
uuid1():{
|
|
192
322
|
'cmds':generate_cmds(startcmd=['lst','list','ls','l'],endCmd=['group names','grpnms','group-names','group_names']),
|
|
193
|
-
'desc':f"list group names and uids",
|
|
323
|
+
'desc':f"list group names and group uids",
|
|
194
324
|
'exec':self.lst_group_names,
|
|
325
|
+
},
|
|
326
|
+
uuid1():{
|
|
327
|
+
'cmds':generate_cmds(startcmd=['lst','list','ls','l'],endCmd=['names','nms','nmes']),
|
|
328
|
+
'desc':f"list names and uids, group by uid",
|
|
329
|
+
'exec':self.lst_names,
|
|
330
|
+
},
|
|
331
|
+
uuid1():{
|
|
332
|
+
'cmds':generate_cmds(startcmd=['delete','del','remove','rem','rm'],endCmd=['',' ']),
|
|
333
|
+
'desc':f"delete occurances data",
|
|
334
|
+
'exec':self.delete,
|
|
335
|
+
},
|
|
336
|
+
uuid1():{
|
|
337
|
+
'cmds':generate_cmds(startcmd=['delete','del','remove','rem','rm'],endCmd=['grps uid','groups uid','grps-uid','grpsuid']),
|
|
338
|
+
'desc':f"delete occurances data by group uid",
|
|
339
|
+
'exec':self.delete_groups_uid,
|
|
195
340
|
},
|
|
341
|
+
uuid1():{
|
|
342
|
+
'cmds':generate_cmds(startcmd=['delete','del','remove','rem','rm'],endCmd=['grps nm','groups name','grps-nm','grpsnm']),
|
|
343
|
+
'desc':f"delete occurances data by group name",
|
|
344
|
+
'exec':self.delete_groups_name,
|
|
345
|
+
},
|
|
346
|
+
uuid1():{
|
|
347
|
+
'cmds':generate_cmds(startcmd=['lst','list','ls','l'],endCmd=["all","a","*"]),
|
|
348
|
+
'desc':f"list all",
|
|
349
|
+
'exec':self.list_all,
|
|
350
|
+
},
|
|
196
351
|
}
|
|
197
352
|
|
|
198
353
|
htext=[]
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.501'
|
|
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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=PkQJnfuIp5bsvc3U6hS8hBIwanUJE5wkzIWo8MShcM0,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
|
|
@@ -92,7 +92,7 @@ radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,
|
|
|
92
92
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
93
93
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
94
94
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
95
|
-
radboy/DB/db.py,sha256=
|
|
95
|
+
radboy/DB/db.py,sha256=lOiHfXdIcMOi8GkMejpuMLubAJ0uvzj0ofrJlo0Ou_E,246602
|
|
96
96
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
97
97
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
98
98
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
@@ -127,7 +127,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
127
127
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
128
128
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
129
129
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
130
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
130
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=5GJPTLCBcrX_euyOk-5FEcWTqH7cLsWAp24cuPIPg2k,392546
|
|
131
131
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
132
132
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
133
133
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -254,17 +254,17 @@ radboy/Lookup/__pycache__/Lookup.cpython-313.pyc,sha256=XLNpbTGk4ryJSRvzf2SDzoxI
|
|
|
254
254
|
radboy/Lookup/__pycache__/__init__.cpython-311.pyc,sha256=Jm4q7Xibyc4UjYYBeYK6uBoMNTBCYoivU7FCtdX5G08,231
|
|
255
255
|
radboy/Lookup/__pycache__/__init__.cpython-312.pyc,sha256=-3XFxnbTtwL4YFln0aSCyRFd2DD-Gr2-UoBV-eOOqqs,269
|
|
256
256
|
radboy/Lookup/__pycache__/__init__.cpython-313.pyc,sha256=p5qY0NPTD_pjFDK1cIJ6qwHaJb91xspPXboIvk-dIgE,148
|
|
257
|
-
radboy/Lookup2/Lookup2.py,sha256=
|
|
257
|
+
radboy/Lookup2/Lookup2.py,sha256=IEutQYva9s5l1b74xT_ldq9qOUAVr5BTXcGeiRX57bk,25971
|
|
258
258
|
radboy/Lookup2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
259
|
radboy/Lookup2/__pycache__/Lookup2.cpython-312.pyc,sha256=Mka0F5UbDbhfF0ogsnklb8eVJz1v7H8hcm5N0yEjUjI,35474
|
|
260
|
-
radboy/Lookup2/__pycache__/Lookup2.cpython-313.pyc,sha256=
|
|
260
|
+
radboy/Lookup2/__pycache__/Lookup2.cpython-313.pyc,sha256=JDaPNWBUvdYQXJp2L71fYWp8m1TMe4uVHDKyDBxPoDk,46917
|
|
261
261
|
radboy/Lookup2/__pycache__/__init__.cpython-312.pyc,sha256=0mqw_7WZPG7luwCFsqX5YMx3-2pN9URwnp8cuel5rGM,270
|
|
262
262
|
radboy/Lookup2/__pycache__/__init__.cpython-313.pyc,sha256=iuBE5G-ThcR2mSYUgGwZI8WCpQwwJXy6hHnYI-h97_Y,149
|
|
263
263
|
radboy/ModuleTemplate/Tasks.py,sha256=RF4sWnLH4FyzMU8AHOov7WP24-udd96-l9c9SvbIP_0,1088
|
|
264
264
|
radboy/ModuleTemplate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
265
|
radboy/ModuleTemplate/__pycache__/Tasks.cpython-311.pyc,sha256=rllpmYgt71yfhr2e08OB_iYnlcO5eIIGCQErAj6ikTA,1989
|
|
266
266
|
radboy/ModuleTemplate/__pycache__/__init__.cpython-311.pyc,sha256=J6kTs2HBMSDNpjWxKLwzOfg70xEDLVtulYrYvCVF3Mw,239
|
|
267
|
-
radboy/Occurances/Occurances.py,sha256=
|
|
267
|
+
radboy/Occurances/Occurances.py,sha256=z88erzQoSlC1d9ZVZ-LeyfGt9HI6cchWddc2imPlc20,10743
|
|
268
268
|
radboy/Occurances/__init__.py,sha256=Xv528_TFNgaC7fr3ykgYG4qUxoz-_8dQMEAhDBAtdXw,930
|
|
269
269
|
radboy/Of/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
270
|
radboy/Of/of.py,sha256=l5YyMVe4rixyYeJZ6BKzkVEr7lk2SuMyPxm14LMwF9c,1341
|
|
@@ -398,7 +398,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
398
398
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
399
399
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
400
400
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
401
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
401
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=xV3wNP9GOlWOXQQvssv_Whaj-sYO9zUNttOb7E171dU,165
|
|
402
402
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
403
403
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
404
404
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -423,7 +423,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
423
423
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
424
424
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
425
425
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
426
|
-
radboy-0.0.
|
|
427
|
-
radboy-0.0.
|
|
428
|
-
radboy-0.0.
|
|
429
|
-
radboy-0.0.
|
|
426
|
+
radboy-0.0.501.dist-info/METADATA,sha256=94ocYU0eHzv3n1Uxw-iVgtSuRFvLJhlDLoIDm0BN0BM,1601
|
|
427
|
+
radboy-0.0.501.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
428
|
+
radboy-0.0.501.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
429
|
+
radboy-0.0.501.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|