radboy 0.0.464__py3-none-any.whl → 0.0.465__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 +57 -1
- radboy/Occurances/Occurances.py +177 -0
- radboy/Occurances/__init__.py +29 -0
- radboy/TasksMode/Tasks.py +10 -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.464.dist-info → radboy-0.0.465.dist-info}/METADATA +1 -1
- {radboy-0.0.464.dist-info → radboy-0.0.465.dist-info}/RECORD +12 -10
- {radboy-0.0.464.dist-info → radboy-0.0.465.dist-info}/WHEEL +0 -0
- {radboy-0.0.464.dist-info → radboy-0.0.465.dist-info}/top_level.txt +0 -0
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -118,6 +118,8 @@ str(uuid1()):{
|
|
|
118
118
|
'desc':"start the system by for autoboot to starting current directory instance"
|
|
119
119
|
},
|
|
120
120
|
}
|
|
121
|
+
for num,cmd in enumerate(cmds):
|
|
122
|
+
cmds[cmd]['cmds'].append(str(num))
|
|
121
123
|
cmdhtext=[]
|
|
122
124
|
ct=len(cmds)
|
|
123
125
|
for num,i in enumerate(cmds):
|
|
@@ -5339,4 +5341,58 @@ try:
|
|
|
5339
5341
|
PhoneBook.metadata.create_all(ENGINE)
|
|
5340
5342
|
except Exception as e:
|
|
5341
5343
|
PhoneBook.__table__.drop(ENGINE)
|
|
5342
|
-
PhoneBook.metadata.create_all(ENGINE)
|
|
5344
|
+
PhoneBook.metadata.create_all(ENGINE)
|
|
5345
|
+
|
|
5346
|
+
|
|
5347
|
+
|
|
5348
|
+
class Occurances(BASE,Template):
|
|
5349
|
+
__tablename__="Occurances"
|
|
5350
|
+
group_name=Column(String,default=None)
|
|
5351
|
+
group_uid=Column(String,default=None)
|
|
5352
|
+
|
|
5353
|
+
name=Column(String,default='')
|
|
5354
|
+
type=Column(String,default='')
|
|
5355
|
+
uid=Column(String,default=str(uuid1()))
|
|
5356
|
+
|
|
5357
|
+
oid=Column(Integer,primary_key=True)
|
|
5358
|
+
|
|
5359
|
+
unit_of_measure=Column(String,default='')
|
|
5360
|
+
quantity=Column(Float,default=0.0)
|
|
5361
|
+
|
|
5362
|
+
comment=Column(String,default='')
|
|
5363
|
+
long_comment=Column(Text,default='')
|
|
5364
|
+
|
|
5365
|
+
max_pre=Column(Float,default=sys.maxsize)
|
|
5366
|
+
min_pre=Column(Float,default=-sys.maxsize)
|
|
5367
|
+
|
|
5368
|
+
max_post=Column(Float,default=sys.maxsize)
|
|
5369
|
+
min_post=Column(Float,default=-sys.maxsize)
|
|
5370
|
+
|
|
5371
|
+
hidden=Column(Boolean,default=False)
|
|
5372
|
+
hidden_dtoe=Column(DateTime,default=None)
|
|
5373
|
+
|
|
5374
|
+
soft_deleted=Column(Boolean,default=False)
|
|
5375
|
+
soft_deleted_dtoe=Column(DateTime,default=None)
|
|
5376
|
+
|
|
5377
|
+
created_dtoe=Column(DateTime,default=datetime.now())
|
|
5378
|
+
modified_dtoe=Column(DateTime,default=None)
|
|
5379
|
+
modified_how_many_times_since_created=Column(Integer,default=0)
|
|
5380
|
+
|
|
5381
|
+
def as_json(self):
|
|
5382
|
+
excludes=['cbid','DTOE']
|
|
5383
|
+
dd={str(d.name):self.__dict__[d.name] for d in self.__table__.columns if d.name not in excludes}
|
|
5384
|
+
return json.dumps(dd)
|
|
5385
|
+
|
|
5386
|
+
def asID(self):
|
|
5387
|
+
return f"{self.__class__.__name__}(cbid={self.cbid})"
|
|
5388
|
+
|
|
5389
|
+
def __init__(self,**kwargs):
|
|
5390
|
+
for k in kwargs.keys():
|
|
5391
|
+
if k in [s.name for s in self.__table__.columns]:
|
|
5392
|
+
setattr(self,k,kwargs.get(k))
|
|
5393
|
+
|
|
5394
|
+
try:
|
|
5395
|
+
Occurances.metadata.create_all(ENGINE)
|
|
5396
|
+
except Exception as e:
|
|
5397
|
+
Occurances.__table__.drop(ENGINE)
|
|
5398
|
+
Occurances.metadata.create_all(ENGINE)
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
from . import *
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class OccurancesUi:
|
|
5
|
+
first_time_excludes=['oid','hidden','hidden_dtoe','soft_deleted','soft_deleted_dtoe','created_dtoe','modified_dtoe','modified_how_many_times_since_created']
|
|
6
|
+
basic_includes=['name','type','unit_of_measure','quantity']
|
|
7
|
+
|
|
8
|
+
group_fields=['group_name','group_uid']
|
|
9
|
+
|
|
10
|
+
def create_new_all(self):
|
|
11
|
+
with Session(ENGINE) as session:
|
|
12
|
+
try:
|
|
13
|
+
OCT=Occurances()
|
|
14
|
+
session.add(OCT)
|
|
15
|
+
session.commit()
|
|
16
|
+
first_time_fields={i.name:{'default':getattr(OCT,i.name),'type':str(i.type).lower()} for i in OCT.__table__.columns if i.name not in self.first_time_excludes}
|
|
17
|
+
fd=FormBuilder(data=first_time_fields)
|
|
18
|
+
if fd is None:
|
|
19
|
+
session.delete(OCT)
|
|
20
|
+
session.commit()
|
|
21
|
+
print("user backed out, nothing was saved!")
|
|
22
|
+
for k in fd:
|
|
23
|
+
setattr(OCT,k,fd[k])
|
|
24
|
+
session.commit()
|
|
25
|
+
session.refresh(OCT)
|
|
26
|
+
print(std_colorize(OCT,0,1))
|
|
27
|
+
except Exception as e:
|
|
28
|
+
print(e)
|
|
29
|
+
session.rollback()
|
|
30
|
+
|
|
31
|
+
def create_new_basic(self):
|
|
32
|
+
with Session(ENGINE) as session:
|
|
33
|
+
try:
|
|
34
|
+
OCT=Occurances()
|
|
35
|
+
session.add(OCT)
|
|
36
|
+
session.commit()
|
|
37
|
+
first_time_fields={i.name:{'default':getattr(OCT,i.name),'type':str(i.type).lower()} for i in OCT.__table__.columns if i.name in self.basic_includes}
|
|
38
|
+
fd=FormBuilder(data=first_time_fields)
|
|
39
|
+
if fd is None:
|
|
40
|
+
session.delete(OCT)
|
|
41
|
+
session.commit()
|
|
42
|
+
print("user backed out, nothing was saved!")
|
|
43
|
+
for k in fd:
|
|
44
|
+
setattr(OCT,k,fd[k])
|
|
45
|
+
session.commit()
|
|
46
|
+
session.refresh(OCT)
|
|
47
|
+
print(std_colorize(OCT,0,1))
|
|
48
|
+
except Exception as e:
|
|
49
|
+
print(e)
|
|
50
|
+
session.rollback()
|
|
51
|
+
|
|
52
|
+
def edit_occurance(self):
|
|
53
|
+
pass
|
|
54
|
+
|
|
55
|
+
def lst_groups(self):
|
|
56
|
+
pass
|
|
57
|
+
|
|
58
|
+
def lst_names(self):
|
|
59
|
+
pass
|
|
60
|
+
|
|
61
|
+
def edit_groups(self):
|
|
62
|
+
pass
|
|
63
|
+
|
|
64
|
+
def delete_groups(self):
|
|
65
|
+
pass
|
|
66
|
+
|
|
67
|
+
def searchAuto(self):
|
|
68
|
+
pass
|
|
69
|
+
|
|
70
|
+
def set_max_pre(self):
|
|
71
|
+
pass
|
|
72
|
+
def set_min_pre(self):
|
|
73
|
+
pass
|
|
74
|
+
def set_min_post(self):
|
|
75
|
+
pass
|
|
76
|
+
def set_max_post(self):
|
|
77
|
+
pass
|
|
78
|
+
|
|
79
|
+
#hide
|
|
80
|
+
def set_hidden(self):
|
|
81
|
+
pass
|
|
82
|
+
|
|
83
|
+
def set_soft_delete(self):
|
|
84
|
+
pass
|
|
85
|
+
def set_unit_of_measure(self):
|
|
86
|
+
pass
|
|
87
|
+
def set_qty(self):
|
|
88
|
+
pass
|
|
89
|
+
|
|
90
|
+
def delete(self):
|
|
91
|
+
pass
|
|
92
|
+
|
|
93
|
+
def search_select(self,rTYPE=list,display=True):
|
|
94
|
+
'''Search for, select,
|
|
95
|
+
display selected, or
|
|
96
|
+
return selected as:
|
|
97
|
+
list of Occurances
|
|
98
|
+
a single Occurance
|
|
99
|
+
|
|
100
|
+
'''
|
|
101
|
+
with Session(ENGINE) as session:
|
|
102
|
+
stext=Prompt.__init2__(None,func=FormBuilderMkText,ptext="What are you looking for?",helpText="text data to search for",data="string")
|
|
103
|
+
if stext is None:
|
|
104
|
+
return
|
|
105
|
+
elif stext in ['d','']:
|
|
106
|
+
pass
|
|
107
|
+
|
|
108
|
+
query=session.query(Occurances)
|
|
109
|
+
text_fields=[]
|
|
110
|
+
text_query_fields=[]
|
|
111
|
+
#setup filters for stext
|
|
112
|
+
|
|
113
|
+
query=orderQuery(query,Occurances.created_dtoe,inverse=True)
|
|
114
|
+
results=query.all()
|
|
115
|
+
def display_results(results,session,query):
|
|
116
|
+
pass
|
|
117
|
+
if isinstance(rTYPE,list) or rType is list:
|
|
118
|
+
if display:
|
|
119
|
+
display_results(results,session,query)
|
|
120
|
+
else:
|
|
121
|
+
#list selector here
|
|
122
|
+
return results
|
|
123
|
+
elif isinstance(rTYPE,Occurances) or rType is Occurances:
|
|
124
|
+
if display:
|
|
125
|
+
display_results(results,session,query)
|
|
126
|
+
else:
|
|
127
|
+
pass
|
|
128
|
+
#Occurance selector here
|
|
129
|
+
return results
|
|
130
|
+
else:
|
|
131
|
+
display_results(results,session,query)
|
|
132
|
+
|
|
133
|
+
def fix_table(self):
|
|
134
|
+
Occurances.__table__.drop(ENGINE)
|
|
135
|
+
Occurances.metadata.create_all(ENGINE)
|
|
136
|
+
|
|
137
|
+
def __init__(self):
|
|
138
|
+
cmds={
|
|
139
|
+
uuid1():{
|
|
140
|
+
'cmds':generate_cmds(startcmd=['fix','fx'],endCmd=['tbl','table']),
|
|
141
|
+
'desc':"reinstall table",
|
|
142
|
+
'exec':self.fix_table,
|
|
143
|
+
},
|
|
144
|
+
uuid1():{
|
|
145
|
+
'cmds':generate_cmds(startcmd=['cnw','create new','create_new','cn'],endCmd=['all','a','*','']),
|
|
146
|
+
'desc':f"create new excluding fields {self.first_time_excludes}",
|
|
147
|
+
'exec':self.create_new_all,
|
|
148
|
+
},
|
|
149
|
+
uuid1():{
|
|
150
|
+
'cmds':generate_cmds(startcmd=['cnw','create new','create_new','cn'],endCmd=['basic','b','bsc','-1']),
|
|
151
|
+
'desc':f"create new including fields {self.basic_includes}",
|
|
152
|
+
'exec':self.create_new_basic,
|
|
153
|
+
},
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
htext=[]
|
|
157
|
+
ct=len(cmds)
|
|
158
|
+
for num,i in enumerate(cmds):
|
|
159
|
+
m=f"{Fore.light_sea_green}{cmds[i]['cmds']}{Fore.orange_red_1} - {Fore.light_steel_blue}{cmds[i]['desc']}"
|
|
160
|
+
msg=f"{std_colorize(m,num,ct)}"
|
|
161
|
+
htext.append(msg)
|
|
162
|
+
htext='\n'.join(htext)
|
|
163
|
+
while True:
|
|
164
|
+
doWhat=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{self.__class__.__name__} @ Do What? ",helpText=htext,data="string")
|
|
165
|
+
if doWhat is None:
|
|
166
|
+
return
|
|
167
|
+
elif doWhat in ['','d',]:
|
|
168
|
+
print(htext)
|
|
169
|
+
continue
|
|
170
|
+
for i in cmds:
|
|
171
|
+
if doWhat.lower() in [i.lower() for i in cmds[i]['cmds']]:
|
|
172
|
+
if callable(cmds[i]['exec']):
|
|
173
|
+
cmds[i]['exec']()
|
|
174
|
+
break
|
|
175
|
+
else:
|
|
176
|
+
print(f"{i} - {cmds[i]['cmds']} - {cmds[i]['exec']}() - {cmds[i]['desc']}")
|
|
177
|
+
return
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from radboy.DB.db import *
|
|
2
|
+
#from radboy.DB.RandomStringUtil import *
|
|
3
|
+
#import radboy.Unified.Unified as unified
|
|
4
|
+
#import radboy.possibleCode as pc
|
|
5
|
+
from radboy.DB.Prompt import *
|
|
6
|
+
from radboy.DB.Prompt import prefix_text
|
|
7
|
+
#from radboy.TasksMode.ReFormula import *
|
|
8
|
+
#from radboy.TasksMode.SetEntryNEU import *
|
|
9
|
+
from radboy.FB.FormBuilder import *
|
|
10
|
+
from radboy.FB.FBMTXT import *
|
|
11
|
+
#from radboy.RNE.RNE import *
|
|
12
|
+
#from radboy.Lookup2.Lookup2 import Lookup as Lookup2
|
|
13
|
+
#from radboy.DayLog.DayLogger import *
|
|
14
|
+
#from radboy.DB.masterLookup import *
|
|
15
|
+
from collections import namedtuple,OrderedDict
|
|
16
|
+
import nanoid,qrcode,io
|
|
17
|
+
#from password_generator import PasswordGenerator
|
|
18
|
+
import random
|
|
19
|
+
from pint import UnitRegistry
|
|
20
|
+
import pandas as pd
|
|
21
|
+
import numpy as np
|
|
22
|
+
from datetime import *
|
|
23
|
+
from colored import Style,Fore
|
|
24
|
+
import json,sys,math,re,calendar,hashlib,haversine
|
|
25
|
+
from time import sleep
|
|
26
|
+
import itertools
|
|
27
|
+
from uuid import uuid1
|
|
28
|
+
|
|
29
|
+
from .Occurances import *
|
radboy/TasksMode/Tasks.py
CHANGED
|
@@ -41,6 +41,7 @@ from radboy.Unified.clearalll import clear_all
|
|
|
41
41
|
from radboy.RepeatableDates import *
|
|
42
42
|
from radboy.CookBook import *
|
|
43
43
|
from radboy.PhoneBook import *
|
|
44
|
+
from radboy.Occurances import *
|
|
44
45
|
|
|
45
46
|
def today():
|
|
46
47
|
dt=datetime.now()
|
|
@@ -445,6 +446,9 @@ class TasksMode:
|
|
|
445
446
|
|
|
446
447
|
def rd_ui(self):
|
|
447
448
|
RepeatableDatesUi()
|
|
449
|
+
|
|
450
|
+
def occurances(self):
|
|
451
|
+
OccurancesUi()
|
|
448
452
|
|
|
449
453
|
def cookbook(self):
|
|
450
454
|
CookBookUi()
|
|
@@ -4926,6 +4930,12 @@ where:
|
|
|
4926
4930
|
'exec':lambda self=self: print(self.phonebook()),
|
|
4927
4931
|
}
|
|
4928
4932
|
count+=1
|
|
4933
|
+
self.options[str(uuid1())]={
|
|
4934
|
+
'cmds':["#"+str(count),*[i for i in generate_cmds(startcmd=["occurances","counter",'cntr','ocrncs'],endCmd=["",])]],
|
|
4935
|
+
'desc':f"a generic counter without Entry table lookup",
|
|
4936
|
+
'exec':lambda self=self: print(self.occurances()),
|
|
4937
|
+
}
|
|
4938
|
+
count+=1
|
|
4929
4939
|
self.options[str(uuid1())]={
|
|
4930
4940
|
'cmds':["#"+str(count),*[i for i in generate_cmds(startcmd=["loads2","lds2"],endCmd=["",])]],
|
|
4931
4941
|
'desc':f"dates that repeat weekly, or upcoming dates that are important",
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.465'
|
|
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=uciRBIbxBuMsdgoCjv25WftJuPMPzzJ9vLXcOLBV_jI,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=Al90W7pbYLLNjQIrXr9zVZKZIrULDkBtLaqPm5-jJuA,245018
|
|
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=seNQKWiZgNMj6nKHto2AU6zKkwSke62dmihQm9fRdp4,389852
|
|
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
|
|
@@ -264,6 +264,8 @@ radboy/ModuleTemplate/Tasks.py,sha256=RF4sWnLH4FyzMU8AHOov7WP24-udd96-l9c9SvbIP_
|
|
|
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=lR3q00-YTvkqSzzigj42ItxJjL9uFJQDedftA4Z1Eo8,4606
|
|
268
|
+
radboy/Occurances/__init__.py,sha256=Xv528_TFNgaC7fr3ykgYG4qUxoz-_8dQMEAhDBAtdXw,930
|
|
267
269
|
radboy/Of/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
270
|
radboy/Of/of.py,sha256=l5YyMVe4rixyYeJZ6BKzkVEr7lk2SuMyPxm14LMwF9c,1341
|
|
269
271
|
radboy/Of/__pycache__/__init__.cpython-312.pyc,sha256=GOKrziEQdEfMEw4CgW5D0ZR3HYgD6BLlxzkR0YGdUxc,265
|
|
@@ -340,7 +342,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
|
|
|
340
342
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
341
343
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
342
344
|
radboy/TasksMode/SetEntryNEU.py,sha256=TTzlAT5rNXvXUAy16BHBq0hJOKhONYpPhdAfQKdTfGw,17364
|
|
343
|
-
radboy/TasksMode/Tasks.py,sha256=
|
|
345
|
+
radboy/TasksMode/Tasks.py,sha256=QsJUdkWnfJ0ipeILXySvnHPzeigrkkHARXsRdfN5-g4,319448
|
|
344
346
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
347
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
346
348
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
@@ -349,7 +351,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
|
|
|
349
351
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=eSWkYvfm5RuRE5rbO5wI7XxzFyKnp6KlbphSqPAF2z4,20133
|
|
350
352
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
351
353
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
352
|
-
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=
|
|
354
|
+
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=0TBVea14_ss82xYYnHh2_2N6mH4S5CGdIbHPpSVUMq0,393181
|
|
353
355
|
radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
|
|
354
356
|
radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
|
|
355
357
|
radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
|
|
@@ -396,7 +398,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
396
398
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
397
399
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
398
400
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
399
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
401
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=Op4gtXcNP0joboBaJTgY-kYGj2GTD9Gtqtc0mJsRLhQ,165
|
|
400
402
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
401
403
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
402
404
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -421,7 +423,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
421
423
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
422
424
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
423
425
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
424
|
-
radboy-0.0.
|
|
425
|
-
radboy-0.0.
|
|
426
|
-
radboy-0.0.
|
|
427
|
-
radboy-0.0.
|
|
426
|
+
radboy-0.0.465.dist-info/METADATA,sha256=HvNan72UcA7c1x_3wdultVNN9juLFoTAKncCzDFhc50,1601
|
|
427
|
+
radboy-0.0.465.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
428
|
+
radboy-0.0.465.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
429
|
+
radboy-0.0.465.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|