radboy 0.0.806__py3-none-any.whl → 0.0.808__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 CHANGED
@@ -2519,7 +2519,16 @@ Use an App Like Google Keep, or Notion, to Store a note with the Title as the Na
2519
2519
  print(extra)
2520
2520
  print(helpText)
2521
2521
  continue
2522
- elif cmd.lower() in generate_cmds(startcmd=['precision','prcsn'],endCmd=['set','st','=']):
2522
+ elif cmd.lower() in generate_cmds(startcmd=['precision','prcsn','pcn'],endCmd=['nc','no-confirm']):
2523
+ value=Control(func=FormBuilderMkText,ptext="How Many digits of precision is your reciept?",helpText="how many characters long is the total",data="integer")
2524
+ if value in [None,'NaN',]:
2525
+ return
2526
+ elif isinstance(value,int):
2527
+ ROUNDTO=int(db.detectGetOrSet("lsbld ROUNDTO default",value,setValue=True,literal=True))
2528
+ PROMPT_CONTEXT.prec=ROUNDTO
2529
+ elif value in ['d','default','']:
2530
+ pass
2531
+ elif cmd.lower() in generate_cmds(startcmd=['precision','prcsn','pcn'],endCmd=['set','st','=']):
2523
2532
  toplvl=Control(func=FormBuilderMkText,ptext="Is this for everything globally(False)?",helpText="boolean",data="boolean")
2524
2533
  if toplvl in ['NaN',None]:
2525
2534
  continue
@@ -1,14 +1,268 @@
1
1
  from . import *
2
2
 
3
-
4
3
  @dataclass
5
- class EmotionCore:
6
- intensity:float=0
7
- name:str=''
8
- dtoe:datetime=datetime.now()
9
- note:str=''
4
+ class CookingConversion(BASE,Template):
5
+ ccid=Column(Integer,primary_key=True)
6
+ __tablename__="CookingConversions"
7
+ Mass_with_unit=Column(String,default='')
8
+ ResourceName=Column(String,default='butter')
9
+ Converts_To_Volume_With_Unit=Column(String,default='')
10
+
11
+
12
+ try:
13
+ CookingConversion.metadata.create_all(ENGINE)
14
+ except Exception as e:
15
+ CookingConversion.__table__.drop(ENGINE)
16
+ CookingConversion.metadata.create_all(ENGINE)
17
+
18
+
19
+ class CC_Ui:
20
+ def fix_table(self):
21
+ CookingConversion.__table__.drop(ENGINE)
22
+ CookingConversion.metadata.create_all(ENGINE)
23
+
24
+ def new_conversion(self):
25
+ try:
26
+ excludes=['ccid',]
27
+ fields={
28
+ i.name:{
29
+ 'default':None,
30
+ 'type':str(i.type).lower()
31
+ } for i in CookingConversion.__table__.columns if i.name not in excludes
32
+ }
33
+ fb=FormBuilder(data=fields)
34
+ if fb is None:
35
+ return
36
+
37
+ with Session(ENGINE) as session:
38
+ try:
39
+ ncc=CookingConversion()
40
+ for k in fb:
41
+ setattr(ncc,k,fb[k])
42
+ session.add(ncc)
43
+ session.commit()
44
+ session.refresh(ncc)
45
+ print(ncc)
46
+ except Exception as ee:
47
+ print(ee)
48
+ session.rollback()
49
+ session.commit()
50
+ except Exception as e:
51
+ print(e)
52
+
53
+ def edit_cvt(self,cvt):
54
+ with Session(ENGINE) as session:
55
+ fields={i.name:{'default':getattr(cvt,i.name),'type':str(i.type).lower()} for i in cvt.__table__.columns}
56
+ fb=FormBuilder(data=fields,passThruText="Edit CookingConversion")
57
+
58
+ r=session.query(CookingConversion).filter(CookingConversion.ccid==cvt.ccid).first()
59
+ for i in fb:
60
+ setattr(r,i,fb[i])
61
+ session.commit()
62
+ session.refresh(r)
63
+
64
+
65
+
66
+ def search_conversion(self,menu=False):
67
+ try:
68
+ excludes=['ccid',]
69
+ fields={
70
+ i.name:{
71
+ 'default':None,
72
+ 'type':str(i.type).lower()
73
+ } for i in CookingConversion.__table__.columns if i.name not in excludes
74
+ }
75
+ fb=FormBuilder(data=fields)
76
+ if fb is None:
77
+ return
78
+
79
+ tmp={}
80
+ for i in fb:
81
+ if fb[i] is not None:
82
+ tmp[i]=fb[i]
83
+
84
+
85
+ FILTER=[]
86
+ for i in tmp:
87
+ try:
88
+ FILTER.append(getattr(CookingConversion,i).icontains(tmp[i]))
89
+ except Exception as e:
90
+ print(e)
91
+
92
+ with Session(ENGINE) as session:
93
+ try:
94
+ if len(FILTER) < 1:
95
+ query=session.query(CookingConversion)
96
+ else:
97
+ query=session.query(CookingConversion).filter(or_(*FILTER))
98
+
99
+ ordered=orderQuery(query,CookingConversion.ResourceName,inverse=True)
100
+ results=ordered.all()
101
+ cta=len(results)
102
+ display=[]
103
+
104
+ modified=True
105
+ while True:
106
+ da=False
107
+ for num,i in enumerate(results):
108
+ msg=std_colorize(f"{i}",num,cta)
109
+ if menu:
110
+ print(msg)
111
+ if not da:
112
+ action=Control(func=FormBuilderMkText,ptext=f"Delete All({Fore.light_red}delete all{Fore.light_yellow} or {Fore.light_red}da{Fore.light_yellow})/Delete({Fore.light_red}del{Fore.light_yellow})/Edit({Fore.light_red}ed{Fore.light_yellow})",helpText="edit or delete",data="string")
113
+ else:
114
+ action='da'
115
+ if action.lower() in ['delete','del']:
116
+ session.delete(i)
117
+ session.commit()
118
+ continue
119
+ elif action.lower() in ['ed','edit']:
120
+ self.edit_cvt(i)
121
+ session.refresh(results[num])
122
+ msg=std_colorize(f"{i}",num,cta)
123
+ elif action.lower() in ['u','use']:
124
+ print('not implemented!')
125
+ continue
126
+ elif action.lower() in ['da','delete all']:
127
+ da=True
128
+ session.delete(i)
129
+ session.commit()
130
+ else:
131
+ pass
132
+
133
+ try:
134
+ display.append(msg)
135
+ except Exception as e:
136
+ print(e)
137
+ break
138
+ if not da:
139
+ display='\n'.join(display)
140
+ print(display)
141
+
142
+ except Exception as ee:
143
+ print(ee)
144
+ except Exception as e:
145
+ print(e)
146
+
147
+ def findAndUse2(self):
148
+ with Session(ENGINE) as session:
149
+ cmd=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{Fore.light_red}[FindAndUse2]{Fore.light_yellow}what cmd are your looking for?",helpText="type the cmd",data="string")
150
+ if cmd in ['d',None]:
151
+ return
152
+ else:
153
+ options=copy(self.options)
154
+
155
+ session.query(FindCmd).delete()
156
+ session.commit()
157
+ for num,k in enumerate(options):
158
+ stage=0
159
+ cmds=options[k]['cmds']
160
+ l=[]
161
+ l.extend(cmds)
162
+ l.append(options[k]['desc'])
163
+ cmdStr=' '.join(l)
164
+ cmd_string=FindCmd(CmdString=cmdStr,CmdKey=k)
165
+ session.add(cmd_string)
166
+ if num % 50 == 0:
167
+ session.commit()
168
+ session.commit()
169
+ session.flush()
170
+
171
+ results=session.query(FindCmd).filter(FindCmd.CmdString.icontains(cmd)).all()
172
+
173
+
174
+ ct=len(results)
175
+ if ct == 0:
176
+ print(f"No Cmd was found by {Fore.light_red}{cmd}{Style.reset}")
177
+ return
178
+ for num,x in enumerate(results):
179
+ msg=f"{Fore.light_yellow}{num}/{Fore.light_steel_blue}{num+1} of {Fore.light_red}{ct} -> {Fore.turquoise_4}{f'{Fore.light_yellow},{Style.reset}{Fore.turquoise_4}'.join(options[x.CmdKey]['cmds'])} - {Fore.green_yellow}{options[x.CmdKey]['desc']}"
180
+ print(msg)
181
+ select=Prompt.__init2__(None,func=FormBuilderMkText,ptext="which index?",helpText="the number farthest to the left before the /",data="integer")
182
+ if select in [None,'d']:
183
+ return
184
+ try:
185
+ ee=options[results[select].CmdKey]['exec']
186
+ if callable(ee):
187
+ ee()
188
+ except Exception as e:
189
+ print(e)
190
+
191
+
192
+
193
+ def __init__(self):
194
+
195
+ self.options={}
196
+ self.options[str(uuid1())]={
197
+ 'cmds':generate_cmds(startcmd=["fix","fx"],endCmd=['tbl','table']),
198
+ 'desc':'''
199
+ drop and regenerate CookingConversion Table
200
+ ''',
201
+ 'exec':self.fix_table
202
+ }
203
+ self.options[str(uuid1())]={
204
+ 'cmds':generate_cmds(startcmd=["search","s","sch"],endCmd=['cvt','cvn','conversion']),
205
+ 'desc':'''
206
+ search conversions
207
+ ''',
208
+ 'exec':self.search_conversion
209
+ }
210
+ self.options[str(uuid1())]={
211
+ 'cmds':generate_cmds(startcmd=["search","s","sch"],endCmd=['mnu','menu','m']),
212
+ 'desc':'''
213
+ search for and edit/use/delete cooking conversions that were stored
214
+ ''',
215
+ 'exec':lambda self=self:self.search_conversion(menu=True)
216
+ }
217
+ self.options[str(uuid1())]={
218
+ 'cmds':['',],
219
+ 'desc':f'',
220
+ 'exec':print
221
+ }
222
+ #new methods() start
223
+ self.options[str(uuid1())]={
224
+ 'cmds':['ncc','new cooking conversion','nw ckng cvt'],
225
+ 'desc':f'save a new conversion',
226
+ 'exec':self.new_conversion
227
+ }
228
+
229
+ #new methods() end
230
+ self.options[str(uuid1())]={
231
+ 'cmds':['fcmd','findcmd','find cmd'],
232
+ 'desc':f'Find {Fore.light_yellow}cmd{Fore.medium_violet_red} and excute for return{Style.reset}',
233
+ 'exec':self.findAndUse2
234
+ }
235
+ self.DESCRIPTION=f'''
236
+ Review Cooking Conversions so you can get dat recipe fo gud. u good cheech?.
237
+ '''
238
+
239
+ self.options[str(uuid1())]={
240
+ 'cmds':['desciption','describe me','what am i','help me','?+'],
241
+ 'desc':f'print the module description',
242
+ 'exec':lambda self=self:print(self.DESCRIPTION)
243
+ }
244
+
245
+ for num,i in enumerate(self.options):
246
+ if str(num) not in self.options[i]['cmds']:
247
+ self.options[i]['cmds'].append(str(num))
248
+ options=copy(self.options)
249
+
250
+ while True:
251
+ helpText=[]
252
+ for i in options:
253
+ msg=f"{Fore.light_green}{options[i]['cmds']}{Fore.light_red} -> {options[i]['desc']}{Style.reset}"
254
+ helpText.append(msg)
255
+ helpText='\n'.join(helpText)
256
+
257
+ cmd=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f"{__class__.__name__}|Do What?:",helpText=helpText,data="string")
258
+ if cmd is None:
259
+ return None
260
+ result=None
261
+ for i in options:
262
+ els=[ii.lower() for ii in options[i]['cmds']]
263
+ if cmd.lower() in els:
264
+ print(i)
265
+ options[i]['exec']()
266
+ break
10
267
 
11
- @dataclass
12
- class EmotionCoreDB(BASE,Template):
13
- pass
14
268
 
radboy/TasksMode/Tasks.py CHANGED
@@ -3055,7 +3055,13 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
3055
3055
  entrySepEnd=f'{Back.grey_30}{Fore.light_red}\\\\{Fore.orange_red_1}{"+"*10}{Fore.light_yellow}|{Fore.light_steel_blue}#REPLACE#{Fore.light_magenta}|{Fore.light_green}{"*"*10}{Fore.light_yellow}{Style.bold}({today()}){Fore.light_red}//{Style.reset}'
3056
3056
  def setFieldInList(self,fieldname,load=False,repack_exec=None,barcode=None,only_select_qty=False):
3057
3057
  try:
3058
- self.setFieldInList_(fieldname,load,repack_exec,barcode,only_select_qty)
3058
+ with localcontext() as ctx:
3059
+ value=Control(func=FormBuilderMkText,ptext="How Many digits of precision is your reciept?",helpText="how many characters long is the total",data="integer")
3060
+ if value in [None,'NaN',]:
3061
+ ctx.prec=value
3062
+ getcontext().prec=value
3063
+ ctx.prec=int(detectGetOrSet("lsbld ROUNDTO default",value,setValue=True,literal=False))
3064
+ self.setFieldInList_(fieldname,load,repack_exec,barcode,only_select_qty)
3059
3065
  except Exception as e:
3060
3066
  print(e)
3061
3067
 
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.806'
1
+ VERSION='0.0.808'
Binary file
@@ -12,6 +12,11 @@ preloader={
12
12
  'desc':f'find the volume of height*width*length using pint to normalize the values',
13
13
  'exec':volume_pint
14
14
  },
15
+ f'{uuid1()}':{
16
+ 'cmds':['cooking units',],
17
+ 'desc':f'review conversions for the kitchen',
18
+ 'exec':CC_Ui
19
+ },
15
20
  f'{uuid1()}':{
16
21
  'cmds':['self-inductance pint',],
17
22
  'desc':f'find self-inductance using pint to normalize the values for self-inductance=relative_permeability*(((turns**2)*area)/length)*1.26e-6',
@@ -28,6 +28,7 @@ import decimal
28
28
  from decimal import localcontext,Decimal
29
29
  unit_registry=pint.UnitRegistry()
30
30
  import math
31
+ from radboy.HowDoYouDefineMe.CoreEmotions import *
31
32
 
32
33
  def volume():
33
34
  with localcontext() as ctx:
@@ -1639,4 +1640,4 @@ def ndtp():
1639
1640
  msg='\n\n'.join(msg)
1640
1641
  return msg
1641
1642
  except Exception as e:
1642
- print(e)
1643
+ print(e)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.806
3
+ Version: 0.0.808
4
4
  Summary: A Retail Calculator for Android/Linux
5
5
  Author: Carl Joseph Hirner III
6
6
  Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
@@ -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=h30zoTqt-XLt_afDPlxMxBiKKwmKi3N-yAuldNCqXUo,41476
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=LUDAFYzhZ2L9T3DqORKKF4zG74U_PiEHL4Z2W7ep_DI,17
8
+ radboy/__init__.py,sha256=xD9EFQ8Bs1WqH4drMHX3xgpuaX10lVj1bJ1ltYzfVlk,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
@@ -89,7 +89,7 @@ radboy/DB/OrderedAndRxd.py,sha256=v_vrTOiTDhKqT5KErK6MOG_u4Nt7ug2MoLTHvAnm88M,19
89
89
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
90
90
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
91
91
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- radboy/DB/Prompt.py,sha256=XzzA7F-N00H56Gl6oGM2GaCljxuRCIhwSCHfKWEFUlg,193557
92
+ radboy/DB/Prompt.py,sha256=wIatheX9mR5odiYANlf4A8OXS8_fjDmGX0KcVLNaKdc,194301
93
93
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
94
94
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
95
95
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
@@ -120,7 +120,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
120
120
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
121
121
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
122
122
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
123
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=WpA10q4vymZSCLYKVsl6D1nEVR9472Js1ofl9O5YPsc,275430
123
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=pJlypAjwEMdcwqNU9QvUD93Gt4HIdo3nRfNeK9Vz8ZM,276019
124
124
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
125
125
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
126
126
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -227,7 +227,7 @@ radboy/HealthLog/__pycache__/HealthLog.cpython-312.pyc,sha256=hTo4o7jo9L2yqPZgzu
227
227
  radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=efratl-5_nmAASdwo_h9hexnCjZ4RF4kUdNuDhK-2i0,81647
228
228
  radboy/HealthLog/__pycache__/__init__.cpython-312.pyc,sha256=yZrYKBk31pGSjCRqmqzpX409iw-muC1zsNO2ObqkGlY,272
229
229
  radboy/HealthLog/__pycache__/__init__.cpython-313.pyc,sha256=cqdZbEJKq9XVoVqDAwsW0pwwBBGSerJNWGlST3YVR3g,151
230
- radboy/HowDoYouDefineMe/CoreEmotions.py,sha256=cfdmFhGjf7I74Nl1McSivtYcz6k4i3TxV46qam_5RPI,178
230
+ radboy/HowDoYouDefineMe/CoreEmotions.py,sha256=p0__mRUSoITR6SEroMpyJIo4moZT3bSXhXW0C8sSfGU,10257
231
231
  radboy/HowDoYouDefineMe/__init__.py,sha256=EoeneTf_YruvZqpEULT7cZwgZhgLXccXLtDEbdiqrIE,770
232
232
  radboy/InListRestore/ILR.py,sha256=s8fbbHLKQSVJX1VaeyGE-vdIUGBEbOPX29kRIG2j2WY,16847
233
233
  radboy/InListRestore/__init__.py,sha256=DajhhWD-xrWDSpdsNGu_yeuVd721u3Spp77VgdGrEe8,899
@@ -357,7 +357,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
357
357
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
358
358
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
359
359
  radboy/TasksMode/SetEntryNEU.py,sha256=mkV9zAZe0lfpu_3coMuIILEzh6PgCNi7g9lJ4yDUpYM,20596
360
- radboy/TasksMode/Tasks.py,sha256=4j3OGM-s-Vg63HbEX2CnAarzKcFv475_hljXBZA_El4,381079
360
+ radboy/TasksMode/Tasks.py,sha256=mcF_35wIQEOXJJoao3bnXdBw3Gt384_iNLwk7eIZ8D8,381525
361
361
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
363
363
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -366,7 +366,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
366
366
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=jMSrUX9pvEhf67uVwrPE2ZlBCems8V7tHJ1LcC15ovU,24603
367
367
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
368
368
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
369
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=p33x1LWn97JFHcnaeqpAx3gejYT25Q5i_80H7qCxqbY,454684
369
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=514HbMYEnFBaz6r2UOVpJiYJ9ewll07g4cRfyniUOl4,455187
370
370
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
371
371
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
372
372
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -413,7 +413,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
413
413
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
414
414
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
415
415
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
416
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=kMG1ClFxW3TIUbSY1sWrkqDu9DLix6d3-Ici6Cgugmg,165
416
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=koJ_Qs4Yk16o-_HjwzzGtOyaPCOo45xJ9_J396RjTFE,165
417
417
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
418
418
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
419
419
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -423,8 +423,8 @@ radboy/__pycache__/t.cpython-311.pyc,sha256=bVszNkmfiyoNLd0WUc8aBJc2geGseW4O28cq
423
423
  radboy/__pycache__/te.cpython-311.pyc,sha256=vI8eNUE5VVrfCQvnrJ7WuWpoKcLz-vVK3ifdUZ4UNhk,592
424
424
  radboy/__pycache__/x.cpython-311.pyc,sha256=3jIvWoO5y5WqrL_hRmXNK8O0vO7DwJ4gufjm2b0V7VI,1963
425
425
  radboy/preloader/__init__.py,sha256=lrGR0JF0dkDM8N9ORGUKH_MucUFx1-PI38YsvqS-wgA,926
426
- radboy/preloader/preloader.py,sha256=B4pIg1we3HO4CQy2BRcFMIzjsf3UnG5e-M_gzjEzjdo,8027
427
- radboy/preloader/preloader_func.py,sha256=kVviI9vOB3ROUXmw_RHzrHo6EOYJUv0H5yGPLcd2xnk,58600
426
+ radboy/preloader/preloader.py,sha256=HbNranfD3wx19DP1FTHNJl8Nd0CFID338rCjiOQzZ58,8155
427
+ radboy/preloader/preloader_func.py,sha256=XHYSe63K2V7HH2kJuiLiyKsaLFzI0_TO7s-Rnc7QXaw,58652
428
428
  radboy/setCode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
429
  radboy/setCode/setCode.py,sha256=8UOf4okbx-Zane99odeoLAS_lfIt8pIaFomN7EtnnVA,5202
430
430
  radboy/setCode/__pycache__/__init__.cpython-311.pyc,sha256=cJuP5rve6Wn7ZO789tixyOlyrHZQWsBxDn9oZGoG5WE,232
@@ -441,7 +441,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
441
441
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
442
442
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
443
443
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
444
- radboy-0.0.806.dist-info/METADATA,sha256=dR5EI49_jQSytU2s12xnHHed2IjLFtx1PdMZdQ7mF6c,1920
445
- radboy-0.0.806.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
446
- radboy-0.0.806.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
447
- radboy-0.0.806.dist-info/RECORD,,
444
+ radboy-0.0.808.dist-info/METADATA,sha256=wTXj8X9JtD706Y09k3QDSO8AOJcawSt5idzIS15mcbM,1920
445
+ radboy-0.0.808.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
446
+ radboy-0.0.808.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
447
+ radboy-0.0.808.dist-info/RECORD,,