radboy 0.0.567__py3-none-any.whl → 0.0.569__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/Comm2Common/Comm2Common.py +37 -0
- radboy/Comm2Common/__init__.py +28 -0
- radboy/DB/Prompt.py +52 -23
- radboy/DB/__pycache__/Prompt.cpython-313.pyc +0 -0
- radboy/DB/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +1 -0
- radboy/FB/FBMTXT.py +32 -0
- radboy/FB/__pycache__/FBMTXT.cpython-313.pyc +0 -0
- radboy/TasksMode/Tasks.py +17 -2
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc +0 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- radboy/preloader/preloader.py +321 -1
- {radboy-0.0.567.dist-info → radboy-0.0.569.dist-info}/METADATA +1 -1
- {radboy-0.0.567.dist-info → radboy-0.0.569.dist-info}/RECORD +17 -15
- {radboy-0.0.567.dist-info → radboy-0.0.569.dist-info}/WHEEL +0 -0
- {radboy-0.0.567.dist-info → radboy-0.0.569.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from . import *
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
'''
|
|
6
|
+
$PB=number selected from internal storage
|
|
7
|
+
|
|
8
|
+
sendlist pn - scan through Entries and send list data for selected list fields with inList==True to phonenumber
|
|
9
|
+
sendlist pb - scan through Entries and send list data for selected list fields with inList==True to $PB
|
|
10
|
+
|
|
11
|
+
send msg pn - send text msg to phonenumber
|
|
12
|
+
send msg pb - send text msg to $PB
|
|
13
|
+
|
|
14
|
+
process app text msg - process textual data recieved from texting app into useable data for radboy
|
|
15
|
+
-ask if user wants to save to system or just view data sent
|
|
16
|
+
|
|
17
|
+
enable and init twilio api,eaita -enable twilio api and save api key
|
|
18
|
+
|
|
19
|
+
'''
|
|
20
|
+
class c2cm:
|
|
21
|
+
def __init__(self):
|
|
22
|
+
pass
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def sendmsg(self):
|
|
26
|
+
FROM=Control(func=FormBuilderMkText,ptext="Phone Number FROM?",helpText="10 digit",data="string")
|
|
27
|
+
if FROM is None:
|
|
28
|
+
return
|
|
29
|
+
to=Control(func=FormBuilderMkText,ptext="Phone Number to Send Msg to?",helpText="10 digit",data="string")
|
|
30
|
+
if to is None:
|
|
31
|
+
return
|
|
32
|
+
|
|
33
|
+
msg=Control(func=FormBuilderMkText,ptext="Msg To Send: ",helpText="text message",data="string")
|
|
34
|
+
if msg is None:
|
|
35
|
+
return
|
|
36
|
+
|
|
37
|
+
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
|
|
28
|
+
from .Comm2Common import *
|
radboy/DB/Prompt.py
CHANGED
|
@@ -949,6 +949,11 @@ class Prompt(object):
|
|
|
949
949
|
esblb- bldls(bldlse=True,sbld=True,minus=True)
|
|
950
950
|
'''
|
|
951
951
|
def bldls(bldlse=False,sbld=False,minus=False,justCount=False,justTotal=False):
|
|
952
|
+
simple=Control(func=FormBuilderMkText,ptext="plain and simple y/n:",helpText="yes or no to absolute minimal output",data="boolean")
|
|
953
|
+
if simple is None:
|
|
954
|
+
return
|
|
955
|
+
elif simple in ['d',]:
|
|
956
|
+
simple=False
|
|
952
957
|
def cse(code):
|
|
953
958
|
with Session(db.ENGINE) as session:
|
|
954
959
|
query=session.query(db.Entry).filter(db.Entry.InList==True,or_(db.Entry.Code.icontains(code),db.Entry.Barcode.icontains(code),db.Entry.Name.icontains(code)))
|
|
@@ -1009,11 +1014,20 @@ class Prompt(object):
|
|
|
1009
1014
|
TTLQtyCrvItem=0
|
|
1010
1015
|
TotalLines=0
|
|
1011
1016
|
if (not justCount and not justTotal):
|
|
1012
|
-
|
|
1013
|
-
|
|
1017
|
+
if not simple:
|
|
1018
|
+
page=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Page Results?",helpText="wait for user input before displaying next item in list;yes or no",data="boolean")
|
|
1019
|
+
if page is None:
|
|
1020
|
+
return
|
|
1021
|
+
elif page in ['d',False]:
|
|
1022
|
+
page=False
|
|
1023
|
+
extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
|
|
1024
|
+
if extras is None:
|
|
1025
|
+
return
|
|
1026
|
+
elif extras in ['d',False]:
|
|
1027
|
+
extras=False
|
|
1028
|
+
|
|
1029
|
+
else:
|
|
1014
1030
|
page=False
|
|
1015
|
-
extras=Prompt.__init2__(None,func=FormBuilderMkText,ptext="Show Extras?",helpText="extra data attached to each entry yes or no",data="boolean")
|
|
1016
|
-
if extras in [None,'d',False]:
|
|
1017
1031
|
extras=False
|
|
1018
1032
|
else:
|
|
1019
1033
|
page=False
|
|
@@ -1073,7 +1087,14 @@ class Prompt(object):
|
|
|
1073
1087
|
reRunRequired=False
|
|
1074
1088
|
for num,i in enumerate(results):
|
|
1075
1089
|
getExtras(i.EntryId,extras)
|
|
1076
|
-
|
|
1090
|
+
if not simple:
|
|
1091
|
+
chart="*"
|
|
1092
|
+
else:
|
|
1093
|
+
chart=''
|
|
1094
|
+
if not simple:
|
|
1095
|
+
msg=f'{f"{chart}"*os.get_terminal_size().columns}\n{Fore.light_green}{num}{Fore.light_magenta}/{Fore.orange_3}{num+1} of {Fore.light_red}{ct}[{Fore.dark_slate_gray_1}EID{Fore.orange_3}]{Fore.dark_violet_1b}{i.EntryId}{Style.reset} |-| {Fore.light_yellow}{i.Name}|{Fore.light_salmon_1}[{Fore.light_red}BCD]{i.rebar()}{Fore.medium_violet_red}|[{Fore.light_red}CD{Fore.medium_violet_red}]{i.cfmt(i.Code)} {Style.reset}|-| '
|
|
1096
|
+
else:
|
|
1097
|
+
msg=f'{num+1}/{ct} [Name] "{i.Name}" [Product Barcode] "{'-'.join(db.stre(i.Barcode)/6)}" [Product Barcode Processed] "{i.rebar()}" [Order Code] "{'-'.join(db.stre(i.Code)/4)}" '
|
|
1077
1098
|
colormapped=[
|
|
1078
1099
|
Fore.deep_sky_blue_4c,
|
|
1079
1100
|
Fore.spring_green_4,
|
|
@@ -1172,24 +1193,29 @@ class Prompt(object):
|
|
|
1172
1193
|
#print("#exegen2")
|
|
1173
1194
|
super_total=Decimal(super_total)
|
|
1174
1195
|
#print(super_total)
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
{Fore.
|
|
1180
|
-
{Fore.
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
{Fore.
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
{Fore.
|
|
1187
|
-
{Fore.
|
|
1188
|
-
{
|
|
1196
|
+
if simple:
|
|
1197
|
+
msg+=f""" Total = {total}"""
|
|
1198
|
+
print(db.strip_colors(msg))
|
|
1199
|
+
else:
|
|
1200
|
+
msg+=f"""{Fore.light_magenta} |-|{Fore.light_green} Total = {Fore.light_sea_green}{total}
|
|
1201
|
+
{Fore.light_magenta}Price({Decimal(i.Price):.{getcontext().prec}f}){Fore.medium_violet_red}*{Fore.light_slate_blue}Total({total}):{Decimal(i.Price)*total:.{getcontext().prec}f}
|
|
1202
|
+
{Fore.grey_70}+CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
|
|
1203
|
+
{Fore.medium_spring_green}= {Fore.slate_blue_1}TotalCRV({crv:.{getcontext().prec}f})+TotalPrice({total*Decimal(i.Price):.{getcontext().prec}f})
|
|
1204
|
+
{Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+crv:.{getcontext().prec}f}){Style.reset}
|
|
1205
|
+
{Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/o CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
|
|
1206
|
+
{Fore.medium_spring_green}= {Fore.slate_blue_1}TaxNoCRVTotal({tax:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
|
|
1207
|
+
{Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax:.{getcontext().prec}f}){Style.reset}
|
|
1208
|
+
{Fore.grey_70}+Tax({Decimal(i.Tax):.{getcontext().prec}f}) w/ CRV({Decimal(i.CRV):.{getcontext().prec}f})*Total({total}){Fore.slate_blue_1}
|
|
1209
|
+
{Fore.medium_spring_green}= {Fore.slate_blue_1}TaxCRVTotal({tax_crv:.{getcontext().prec}f})+TotalPrice({total*i.Price:.{getcontext().prec}f})
|
|
1210
|
+
{Fore.medium_spring_green}= {Fore.green_3a}NetPrice({total*Decimal(i.Price)+tax+crv:.{getcontext().prec}f}){Style.reset}
|
|
1211
|
+
{Fore.medium_violet_red}PercentOfTotal({super_total:.{getcontext().prec}f}%) of FinalTotal({getSuperTotal(results,location_fields,colormapped)['final total']})
|
|
1212
|
+
{Fore.orange_red_1}TaxRate({taxRate:.{getcontext().prec}f})={Decimal(taxRate*100):.{getcontext().prec}f}%{Style.reset}
|
|
1213
|
+
{'*'*os.get_terminal_size().columns}{Style.reset}"""
|
|
1189
1214
|
if bldlse:
|
|
1190
1215
|
db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
|
|
1191
1216
|
if not justCount and not justTotal:
|
|
1192
|
-
|
|
1217
|
+
if not simple:
|
|
1218
|
+
print(msg)
|
|
1193
1219
|
|
|
1194
1220
|
if i.CRV is not None:
|
|
1195
1221
|
if i.CRV != 0:
|
|
@@ -1237,7 +1263,8 @@ class Prompt(object):
|
|
|
1237
1263
|
{Fore.light_blue}'Total Lines' + 'CRV Items'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
|
|
1238
1264
|
{Fore.light_blue}'Total Lines' + 'CRV Items QTY Purchased'={Style.bold}{Fore.grey_70}{TotalLines+TotalCRVItems}{Style.reset}
|
|
1239
1265
|
{Style.reset}"""
|
|
1240
|
-
|
|
1266
|
+
if not simple:
|
|
1267
|
+
print(msg)
|
|
1241
1268
|
return
|
|
1242
1269
|
if justTotal:
|
|
1243
1270
|
msg=f"""{Fore.light_green}Total Product Value
|
|
@@ -1249,7 +1276,8 @@ class Prompt(object):
|
|
|
1249
1276
|
{Fore.light_green}Total Product Value Taxed({master_total_tax}) w/ CRV({master_total_crv})
|
|
1250
1277
|
{Fore.orange_red_1}= {Style.bold}{Fore.slate_blue_1}{actual}{Style.reset}
|
|
1251
1278
|
"""
|
|
1252
|
-
|
|
1279
|
+
if not simple:
|
|
1280
|
+
print(msg)
|
|
1253
1281
|
return
|
|
1254
1282
|
|
|
1255
1283
|
|
|
@@ -1288,7 +1316,8 @@ class Prompt(object):
|
|
|
1288
1316
|
msg=f"{Fore.orange_red_1}You need to re-run lsbld to recalculate properly!{Style.reset}"
|
|
1289
1317
|
if bldlse:
|
|
1290
1318
|
db.logInput(msg,user=False,filter_colors=True,maxed_hfl=False,ofile=Prompt.bld_file)
|
|
1291
|
-
|
|
1319
|
+
if not simple:
|
|
1320
|
+
print(msg)
|
|
1292
1321
|
except Exception as e:
|
|
1293
1322
|
print(e,"you might try and re-run the cmd")
|
|
1294
1323
|
|
|
Binary file
|
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -4921,6 +4921,7 @@ def saveHistory(cmd,ageLimit,executed,data):
|
|
|
4921
4921
|
|
|
4922
4922
|
max_file_lines=detectGetOrSet("MAX_HFL",500)
|
|
4923
4923
|
def logInput(text,max_hfl=None,maxed_hfl=True,user=True,filter_colors=False,ofile=None,clear_only=False):
|
|
4924
|
+
print(f"Logging Data to: {Fore.spring_green_3a}{ofile}{Style.reset}")
|
|
4924
4925
|
if ofile:
|
|
4925
4926
|
master_f=Path(ofile)
|
|
4926
4927
|
else:
|
radboy/FB/FBMTXT.py
CHANGED
|
@@ -139,6 +139,38 @@ def FormBuilderHelpText():
|
|
|
139
139
|
|
|
140
140
|
{Fore.green_yellow}**{Fore.light_magenta}ff,finish{Fore.orange_red_1}WARNING:{Fore.light_cyan}finish and return without review{Style.reset}
|
|
141
141
|
{Fore.green_yellow}**{Fore.light_magenta}f,finalize{Fore.orange_red_1}WARNING:{Fore.light_cyan}finish and return with review{Style.reset}
|
|
142
|
+
|
|
143
|
+
{Fore.light_steel_blue}{Style.bold}
|
|
144
|
+
Name Symbol Factor/Scientific Name
|
|
145
|
+
-------------------------------------
|
|
146
|
+
{Style.reset}
|
|
147
|
+
{Fore.light_yellow}
|
|
148
|
+
quetta Q 10*(10**30)/e30 nonillion
|
|
149
|
+
ronna R 10*(10**27)/e27 octillion
|
|
150
|
+
yotta Y 10*(10**24)/e24 septillion
|
|
151
|
+
zetta Z 10*(10**21)/e21 sextillion
|
|
152
|
+
exa E 10*(10**18)/e18 quintillion
|
|
153
|
+
peta P 10*(10**15)/e15 quadrillion
|
|
154
|
+
tera T 10*(10**12)/e12 trillion
|
|
155
|
+
giga G 10*(10**9)/e9 billion
|
|
156
|
+
mega M 10*(10**6)/e6 million
|
|
157
|
+
kilo k 10*(10**3)/e3 thousand
|
|
158
|
+
hecto h 10*(10**2)/e2 hundred
|
|
159
|
+
deka da 10*(10**1)/e1 ten
|
|
160
|
+
100 one
|
|
161
|
+
deci d 10-1/e-1 tenth
|
|
162
|
+
centi c 10-2/e-2 hundredth
|
|
163
|
+
milli m 10-3/e-3 thousandth
|
|
164
|
+
micro μ 10-6/e-6 millionth
|
|
165
|
+
nano n 10-9/e-9 billionth
|
|
166
|
+
pico p 10-12/e-12 trillionth
|
|
167
|
+
femto f 10-15/e-15 quadrillionth
|
|
168
|
+
atto a 10-18/e-18 quintillionth
|
|
169
|
+
zepto z 10-21/e-21 sextillionth
|
|
170
|
+
yocto y 10-24/e-24 septillionth
|
|
171
|
+
ronto r 10-27/e-27 octillionth
|
|
172
|
+
quecto q 10-30/e-30 nonillionth
|
|
173
|
+
{Style.reset}
|
|
142
174
|
'''
|
|
143
175
|
print(msg)
|
|
144
176
|
|
|
Binary file
|
radboy/TasksMode/Tasks.py
CHANGED
|
@@ -43,7 +43,7 @@ from radboy.CookBook import *
|
|
|
43
43
|
from radboy.PhoneBook import *
|
|
44
44
|
from radboy.Occurances import *
|
|
45
45
|
from radboy.preloader import preloader
|
|
46
|
-
|
|
46
|
+
from radboy.Comm2Common import *
|
|
47
47
|
def today():
|
|
48
48
|
dt=datetime.now()
|
|
49
49
|
return date(dt.year,dt.month,dt.day)
|
|
@@ -56,6 +56,21 @@ RATE*RATE|int|float=RATE
|
|
|
56
56
|
RATE*timedelta = RATE.GROSS(float)
|
|
57
57
|
'''
|
|
58
58
|
|
|
59
|
+
def totalDBItems():
|
|
60
|
+
with Session(ENGINE) as session:
|
|
61
|
+
total=0
|
|
62
|
+
crv_items=0
|
|
63
|
+
q=session.query(Entry).filter(Entry.InList==True)
|
|
64
|
+
a=q.all()
|
|
65
|
+
|
|
66
|
+
for i in a:
|
|
67
|
+
if i.CRV not in [0,None]:
|
|
68
|
+
total+=1
|
|
69
|
+
crv_items+=1
|
|
70
|
+
total+=1
|
|
71
|
+
return f"(TTL ITM:{Fore.light_red}{total}{Fore.light_yellow},CRV ITM :{Fore.light_red}{crv_items}{Fore.light_yellow})"
|
|
72
|
+
|
|
73
|
+
|
|
59
74
|
def check_back_ups():
|
|
60
75
|
backup_dir=detectGetOrSet("Backup Directory",f"RadBoy Backups/{VERSION}",setValue=False,literal=True)
|
|
61
76
|
if backup_dir == None:
|
|
@@ -2652,7 +2667,7 @@ so use {Fore.orange_red_1}ls-lq/ls Shelf {Fore.light_yellow}from {Fore.light_mag
|
|
|
2652
2667
|
|
|
2653
2668
|
def mkT(text,self):
|
|
2654
2669
|
return str(text)
|
|
2655
|
-
code=Prompt.__init2__(None,func=mkT,ptext=f"{Fore.grey_70}[{Fore.light_steel_blue}ListMode{Fore.medium_violet_red}@{Fore.light_green}{fieldname}{Fore.grey_70}]{Style.reset}{Fore.light_yellow} Barcode|Code",helpText=self.helpText_barcodes,data=self)
|
|
2670
|
+
code=Prompt.__init2__(None,func=mkT,ptext=f"{totalDBItems()}{Fore.grey_70}[{Fore.light_steel_blue}ListMode{Fore.medium_violet_red}@{Fore.light_green}{fieldname}{Fore.grey_70}]{Style.reset}{Fore.light_yellow} Barcode|Code",helpText=self.helpText_barcodes,data=self)
|
|
2656
2671
|
if code in [None,]:
|
|
2657
2672
|
break
|
|
2658
2673
|
elif code in ['',]:
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.569'
|
|
Binary file
|
radboy/preloader/preloader.py
CHANGED
|
@@ -90,8 +90,276 @@ def inductance_pint():
|
|
|
90
90
|
f=unit_registry.Quantity(f"{f.magnitude} H")
|
|
91
91
|
return f
|
|
92
92
|
|
|
93
|
+
def resonant_inductance():
|
|
94
|
+
hertz=1e9
|
|
95
|
+
while True:
|
|
96
|
+
try:
|
|
97
|
+
hertz=Control(func=FormBuilderMkText,ptext="frequency in hertz[530 kilohertz]? ",helpText="frequency in hertz",data="string")
|
|
98
|
+
if hertz is None:
|
|
99
|
+
return
|
|
100
|
+
elif hertz in ['d','']:
|
|
101
|
+
hertz="530 megahertz"
|
|
102
|
+
print(hertz)
|
|
103
|
+
x=unit_registry.Quantity(hertz)
|
|
104
|
+
if x:
|
|
105
|
+
hertz=x.to("hertz")
|
|
106
|
+
else:
|
|
107
|
+
hertz=1e6
|
|
108
|
+
break
|
|
109
|
+
except Exception as e:
|
|
110
|
+
print(e)
|
|
93
111
|
|
|
94
112
|
|
|
113
|
+
while True:
|
|
114
|
+
try:
|
|
115
|
+
capacitance=Control(func=FormBuilderMkText,ptext="capacitance[365 picofarads]? ",helpText="capacitance in farads",data="string")
|
|
116
|
+
if capacitance is None:
|
|
117
|
+
return
|
|
118
|
+
elif capacitance in ['d',]:
|
|
119
|
+
capacitance="365 picofarads"
|
|
120
|
+
x=unit_registry.Quantity(capacitance)
|
|
121
|
+
if x:
|
|
122
|
+
x=x.to("farads")
|
|
123
|
+
farads=x.magnitude
|
|
124
|
+
break
|
|
125
|
+
except Exception as e:
|
|
126
|
+
print(e)
|
|
127
|
+
|
|
128
|
+
inductance=1/(decc(4*math.pi**2)*decc(hertz.magnitude**2,cf=13)*decc(farads,cf=13))
|
|
129
|
+
|
|
130
|
+
L=unit_registry.Quantity(inductance,"henry")
|
|
131
|
+
return L
|
|
132
|
+
|
|
133
|
+
def air_coil_cap():
|
|
134
|
+
'''C = 1 / (4π²f²L)'''
|
|
135
|
+
while True:
|
|
136
|
+
try:
|
|
137
|
+
frequency=Control(func=FormBuilderMkText,ptext="frequency? ",helpText="frequency",data="string")
|
|
138
|
+
if frequency is None:
|
|
139
|
+
return
|
|
140
|
+
elif frequency in ['d',]:
|
|
141
|
+
frequency="1410 kilohertz"
|
|
142
|
+
x=unit_registry.Quantity(frequency)
|
|
143
|
+
if x:
|
|
144
|
+
x=x.to("hertz")
|
|
145
|
+
frequency=decc(x.magnitude**2)
|
|
146
|
+
break
|
|
147
|
+
except Exception as e:
|
|
148
|
+
print(e)
|
|
149
|
+
|
|
150
|
+
while True:
|
|
151
|
+
try:
|
|
152
|
+
inductance=Control(func=FormBuilderMkText,ptext="inductance(356 microhenry): ",helpText="coil inductance",data="string")
|
|
153
|
+
if inductance is None:
|
|
154
|
+
return
|
|
155
|
+
elif inductance in ['d',]:
|
|
156
|
+
inductance="356 microhenry"
|
|
157
|
+
x=unit_registry.Quantity(inductance)
|
|
158
|
+
if x:
|
|
159
|
+
x=x.to("henry")
|
|
160
|
+
inductance=decc(x.magnitude,cf=20)
|
|
161
|
+
break
|
|
162
|
+
except Exception as e:
|
|
163
|
+
print(e)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
farads=1/(inductance*frequency*decc(4*math.pi**2))
|
|
168
|
+
return unit_registry.Quantity(farads,"farad")
|
|
169
|
+
|
|
170
|
+
def air_coil():
|
|
171
|
+
'''
|
|
172
|
+
The formula for inductance - using toilet rolls, PVC pipe etc. can be well approximated by:
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
0.394 * r2 * N2
|
|
176
|
+
Inductance L = ________________
|
|
177
|
+
( 9 *r ) + ( 10 * Len)
|
|
178
|
+
Here:
|
|
179
|
+
N = number of turns
|
|
180
|
+
r = radius of the coil i.e. form diameter (in cm.) divided by 2
|
|
181
|
+
Len = length of the coil - again in cm.
|
|
182
|
+
L = inductance in uH.
|
|
183
|
+
* = multiply by
|
|
184
|
+
'''
|
|
185
|
+
while True:
|
|
186
|
+
try:
|
|
187
|
+
diameter=Control(func=FormBuilderMkText,ptext="diameter in cm [2 cm]? ",helpText="diamater of coil",data="string")
|
|
188
|
+
if diameter is None:
|
|
189
|
+
return
|
|
190
|
+
elif diameter in ['d',]:
|
|
191
|
+
diameter="2 cm"
|
|
192
|
+
x=unit_registry.Quantity(diameter)
|
|
193
|
+
if x:
|
|
194
|
+
x=x.to("centimeter")
|
|
195
|
+
diameter=x.magnitude
|
|
196
|
+
break
|
|
197
|
+
except Exception as e:
|
|
198
|
+
print(e)
|
|
199
|
+
radius=decc(diameter/2)
|
|
200
|
+
while True:
|
|
201
|
+
try:
|
|
202
|
+
length=Control(func=FormBuilderMkText,ptext="length in cm [2 cm]? ",helpText="length of coil",data="string")
|
|
203
|
+
if length is None:
|
|
204
|
+
return
|
|
205
|
+
elif length in ['d',]:
|
|
206
|
+
length="2 cm"
|
|
207
|
+
x=unit_registry.Quantity(length)
|
|
208
|
+
if x:
|
|
209
|
+
x=x.to("centimeter")
|
|
210
|
+
length=x.magnitude
|
|
211
|
+
break
|
|
212
|
+
except Exception as e:
|
|
213
|
+
print(e)
|
|
214
|
+
while True:
|
|
215
|
+
try:
|
|
216
|
+
turns=Control(func=FormBuilderMkText,ptext="number of turns? ",helpText="turns of wire",data="integer")
|
|
217
|
+
if turns is None:
|
|
218
|
+
return
|
|
219
|
+
elif turns in ['d',]:
|
|
220
|
+
turns=1
|
|
221
|
+
LTop=decc(0.394)*decc(radius**2)*decc(turns**2)
|
|
222
|
+
LBottom=(decc(9)*radius)+decc(length*10)
|
|
223
|
+
L=LTop/LBottom
|
|
224
|
+
print(pint.Quantity(L,'microhenry'))
|
|
225
|
+
different_turns=Control(func=FormBuilderMkText,ptext="use a different number of turns?",helpText="yes or no",data="boolean")
|
|
226
|
+
if different_turns is None:
|
|
227
|
+
return
|
|
228
|
+
elif different_turns in ['d',True]:
|
|
229
|
+
continue
|
|
230
|
+
break
|
|
231
|
+
except Exception as e:
|
|
232
|
+
print(e)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
return pint.Quantity(L,'microhenry')
|
|
236
|
+
|
|
237
|
+
def circumference_diameter():
|
|
238
|
+
radius=0
|
|
239
|
+
while True:
|
|
240
|
+
try:
|
|
241
|
+
diameter=Control(func=FormBuilderMkText,ptext="diameter unit[4 cm]? ",helpText="diamater with unit",data="string")
|
|
242
|
+
if diameter is None:
|
|
243
|
+
return
|
|
244
|
+
elif diameter in ['d',]:
|
|
245
|
+
diameter="4 cm"
|
|
246
|
+
x=unit_registry.Quantity(diameter)
|
|
247
|
+
radius=pint.Quantity(decc(x.magnitude/2),x.units)
|
|
248
|
+
break
|
|
249
|
+
except Exception as e:
|
|
250
|
+
print(e)
|
|
251
|
+
if isinstance(radius,pint.registry.Quantity):
|
|
252
|
+
result=decc(2*math.pi)*decc(radius.magnitude)
|
|
253
|
+
|
|
254
|
+
return pint.Quantity(result,radius.units)
|
|
255
|
+
else:
|
|
256
|
+
return
|
|
257
|
+
|
|
258
|
+
def circumference_radius():
|
|
259
|
+
radius=0
|
|
260
|
+
while True:
|
|
261
|
+
try:
|
|
262
|
+
diameter=Control(func=FormBuilderMkText,ptext="radius unit[2 cm]? ",helpText="radius with unit",data="string")
|
|
263
|
+
if diameter is None:
|
|
264
|
+
return
|
|
265
|
+
elif diameter in ['d',]:
|
|
266
|
+
diameter="2 cm"
|
|
267
|
+
x=unit_registry.Quantity(diameter)
|
|
268
|
+
radius=pint.Quantity(decc(x.magnitude),x.units)
|
|
269
|
+
break
|
|
270
|
+
except Exception as e:
|
|
271
|
+
print(e)
|
|
272
|
+
if isinstance(radius,pint.registry.Quantity):
|
|
273
|
+
result=decc(2*math.pi)*decc(radius.magnitude)
|
|
274
|
+
|
|
275
|
+
return pint.Quantity(result,radius.units)
|
|
276
|
+
else:
|
|
277
|
+
return
|
|
278
|
+
|
|
279
|
+
def area_of_circle_radius():
|
|
280
|
+
'''
|
|
281
|
+
A = πr²
|
|
282
|
+
'''
|
|
283
|
+
radius=0
|
|
284
|
+
while True:
|
|
285
|
+
try:
|
|
286
|
+
diameter=Control(func=FormBuilderMkText,ptext="radius unit[2 cm]? ",helpText="radius with unit",data="string")
|
|
287
|
+
if diameter is None:
|
|
288
|
+
return
|
|
289
|
+
elif diameter in ['d',]:
|
|
290
|
+
diameter="2 cm"
|
|
291
|
+
x=unit_registry.Quantity(diameter)
|
|
292
|
+
radius=pint.Quantity(decc(x.magnitude),x.units)
|
|
293
|
+
break
|
|
294
|
+
except Exception as e:
|
|
295
|
+
print(e)
|
|
296
|
+
if isinstance(radius,pint.registry.Quantity):
|
|
297
|
+
result=decc(math.pi)*decc(radius.magnitude**2)
|
|
298
|
+
|
|
299
|
+
return pint.Quantity(result,radius.units)
|
|
300
|
+
else:
|
|
301
|
+
return
|
|
302
|
+
|
|
303
|
+
def lc_frequency():
|
|
304
|
+
inductance=None
|
|
305
|
+
capacitance=None
|
|
306
|
+
while True:
|
|
307
|
+
try:
|
|
308
|
+
inductance=Control(func=FormBuilderMkText,ptext="inductance(356 microhenry): ",helpText="coil inductance",data="string")
|
|
309
|
+
if inductance is None:
|
|
310
|
+
return
|
|
311
|
+
elif inductance in ['d',]:
|
|
312
|
+
inductance="356 microhenry"
|
|
313
|
+
x=unit_registry.Quantity(inductance)
|
|
314
|
+
if x:
|
|
315
|
+
x=x.to("henry")
|
|
316
|
+
inductance=decc(x.magnitude,cf=20)
|
|
317
|
+
break
|
|
318
|
+
except Exception as e:
|
|
319
|
+
print(e)
|
|
320
|
+
while True:
|
|
321
|
+
try:
|
|
322
|
+
capacitance=Control(func=FormBuilderMkText,ptext="capacitance[365 picofarads]? ",helpText="capacitance in farads",data="string")
|
|
323
|
+
if capacitance is None:
|
|
324
|
+
return
|
|
325
|
+
elif capacitance in ['d',]:
|
|
326
|
+
capacitance="365 picofarads"
|
|
327
|
+
x=unit_registry.Quantity(capacitance)
|
|
328
|
+
if x:
|
|
329
|
+
x=x.to("farads")
|
|
330
|
+
farads=decc(x.magnitude,cf=20)
|
|
331
|
+
break
|
|
332
|
+
except Exception as e:
|
|
333
|
+
print(e)
|
|
334
|
+
frequency=1/(decc(2*math.pi)*decc(math.sqrt(farads*inductance),cf=20))
|
|
335
|
+
return unit_registry.Quantity(frequency,"hertz")
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
def area_of_circle_diameter():
|
|
339
|
+
'''
|
|
340
|
+
A = πr²
|
|
341
|
+
'''
|
|
342
|
+
radius=0
|
|
343
|
+
while True:
|
|
344
|
+
try:
|
|
345
|
+
diameter=Control(func=FormBuilderMkText,ptext="diameter unit[4 cm]? ",helpText="diamater value with unit",data="string")
|
|
346
|
+
if diameter is None:
|
|
347
|
+
return
|
|
348
|
+
elif diameter in ['d',]:
|
|
349
|
+
diameter="4 cm"
|
|
350
|
+
x=unit_registry.Quantity(diameter)
|
|
351
|
+
radius=pint.Quantity(decc(x.magnitude/2),x.units)
|
|
352
|
+
break
|
|
353
|
+
except Exception as e:
|
|
354
|
+
print(e)
|
|
355
|
+
if isinstance(radius,pint.registry.Quantity):
|
|
356
|
+
result=decc(math.pi)*decc(radius.magnitude**2)
|
|
357
|
+
|
|
358
|
+
return pint.Quantity(result,radius.units)
|
|
359
|
+
else:
|
|
360
|
+
return
|
|
361
|
+
|
|
362
|
+
|
|
95
363
|
preloader={
|
|
96
364
|
f'{uuid1()}':{
|
|
97
365
|
'cmds':['volume',],
|
|
@@ -108,5 +376,57 @@ preloader={
|
|
|
108
376
|
'desc':f'find self-inductance using pint to normalize the values for self-inductance=relative_permeability*(((turns**2)*area)/length)*1.26e-6',
|
|
109
377
|
'exec':inductance_pint
|
|
110
378
|
},
|
|
111
|
-
}
|
|
379
|
+
f'{uuid1()}':{
|
|
380
|
+
'cmds':['required resonant LC inductance',],
|
|
381
|
+
'desc':f'find the resonant inductance for LC using L = 1 / (4π²f²C)',
|
|
382
|
+
'exec':resonant_inductance
|
|
383
|
+
},
|
|
384
|
+
f'{uuid1()}':{
|
|
385
|
+
'cmds':['air coil',],
|
|
386
|
+
'desc':f'''
|
|
387
|
+
The formula for inductance - using toilet rolls, PVC pipe etc. can be well approximated by:
|
|
112
388
|
|
|
389
|
+
(0.394) * (r**2) * (N**2)
|
|
390
|
+
Inductance L = _________________________
|
|
391
|
+
( 9 * r ) + ( 10 * Len)
|
|
392
|
+
Here:
|
|
393
|
+
N = Number of Turns
|
|
394
|
+
r = radius of the coil i.e. form diameter (in cm.) divided by 2
|
|
395
|
+
Len = length of the coil - again in cm.
|
|
396
|
+
L = inductance in uH.
|
|
397
|
+
* = multiply by
|
|
398
|
+
math.pi**2==0.394
|
|
399
|
+
''',
|
|
400
|
+
'exec':air_coil
|
|
401
|
+
},
|
|
402
|
+
f'{uuid1()}':{
|
|
403
|
+
'cmds':['circumference of a circle using diameter',],
|
|
404
|
+
'desc':f'C=2πr',
|
|
405
|
+
'exec':circumference_diameter
|
|
406
|
+
},
|
|
407
|
+
f'{uuid1()}':{
|
|
408
|
+
'cmds':['circumference of a circle using radius',],
|
|
409
|
+
'desc':f'C=2πr',
|
|
410
|
+
'exec':circumference_radius
|
|
411
|
+
},
|
|
412
|
+
f'{uuid1()}':{
|
|
413
|
+
'cmds':['area of a circle using diameter',],
|
|
414
|
+
'desc':f'A = πr²',
|
|
415
|
+
'exec':area_of_circle_diameter
|
|
416
|
+
},
|
|
417
|
+
f'{uuid1()}':{
|
|
418
|
+
'cmds':['area of a circle using radius',],
|
|
419
|
+
'desc':f'A = πr²',
|
|
420
|
+
'exec':area_of_circle_radius
|
|
421
|
+
},
|
|
422
|
+
f'{uuid1()}':{
|
|
423
|
+
'cmds':['get capacitance for desired frequency with specific inductance',],
|
|
424
|
+
'desc':f'C = 1 / (4π²f²L)²',
|
|
425
|
+
'exec':air_coil_cap,
|
|
426
|
+
},
|
|
427
|
+
f'{uuid1()}':{
|
|
428
|
+
'cmds':['get resonant frequency for lc circuit',],
|
|
429
|
+
'desc':f'f = 1 / (2π√(LC))',
|
|
430
|
+
'exec':lc_frequency,
|
|
431
|
+
},
|
|
432
|
+
}
|
|
@@ -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=kLFO_-VYKHjd7kBLvlp_5rj7paTpiTR08qXjjEkNJvY,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
|
|
@@ -50,6 +50,8 @@ radboy/Comm/__pycache__/RxTx.cpython-312.pyc,sha256=S_1Kf5_EwO1X4blYwIMPlrBs_hD8
|
|
|
50
50
|
radboy/Comm/__pycache__/RxTx.cpython-313.pyc,sha256=3N9SXi-jBtf6liyYI0D1m1dpBoLCUUtuy7uDM6L958Q,34985
|
|
51
51
|
radboy/Comm/__pycache__/__init__.cpython-312.pyc,sha256=jxT5gYVdAKG2X7WED7LoHwmiHsC8BxOtz0YxIdtsBtw,267
|
|
52
52
|
radboy/Comm/__pycache__/__init__.cpython-313.pyc,sha256=-hKMf6R71_1VkbAEpQ4HJOJF0RUxDSpuUHS0kXShyIw,146
|
|
53
|
+
radboy/Comm2Common/Comm2Common.py,sha256=3MOe_RHcD1mhiLJIBBa_j1YbyKZr8pyOyqB-7hMoHoM,1141
|
|
54
|
+
radboy/Comm2Common/__init__.py,sha256=ww6HxD8dFaQcDIS5zWnr-uts4T1YJBEs40nCdqQK7Q8,907
|
|
53
55
|
radboy/Compare/Compare.py,sha256=ORgqwl5rApbXLxTihJ-N4rBYoCOd3iL6rEb4VExAk20,4571
|
|
54
56
|
radboy/Compare/__init__.py,sha256=9-ltkiSIu7k_397e3_eBETX88CxEwzEBA-HDixi59o4,903
|
|
55
57
|
radboy/Compare/__pycache__/Compare.cpython-312.pyc,sha256=YHZHBuJKjEGi207YOgzOW2mf3yked9uVabjfqkcnq1M,3618
|
|
@@ -84,14 +86,14 @@ radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,
|
|
|
84
86
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
85
87
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
86
88
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
radboy/DB/Prompt.py,sha256=
|
|
89
|
+
radboy/DB/Prompt.py,sha256=_03NS0dJ__wR0GnujqWgKpPfLFFVkMUhHy0VHzkp0Dc,164461
|
|
88
90
|
radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
|
|
89
91
|
radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
|
|
90
92
|
radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
|
|
91
93
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
92
94
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
93
95
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
94
|
-
radboy/DB/db.py,sha256=
|
|
96
|
+
radboy/DB/db.py,sha256=iwqnxc0woh0ZBit9Dk-WLzQNxCNLS8ja16U54db24u0,254926
|
|
95
97
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
96
98
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
97
99
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
@@ -108,7 +110,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
|
|
|
108
110
|
radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
|
|
109
111
|
radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
|
|
110
112
|
radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
|
|
111
|
-
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=
|
|
113
|
+
radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=JP3Dnu-vENM3oGvktN1OsnAAabixBTvxpRZNDTjFtoA,245580
|
|
112
114
|
radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
|
|
113
115
|
radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
|
|
114
116
|
radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
|
|
@@ -126,7 +128,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
126
128
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
127
129
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
128
130
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
129
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
131
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=k6GSe4i6OJc94p641GMVve4Su7oZLWbjDztnohxlTVQ,402888
|
|
130
132
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
131
133
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
132
134
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -191,11 +193,11 @@ radboy/ExtractPkg/__pycache__/ExtractPkg2.cpython-313.pyc,sha256=bgw-00G_ouurOtO
|
|
|
191
193
|
radboy/ExtractPkg/__pycache__/__init__.cpython-311.pyc,sha256=62yPgrgPZffZFLr6FscOqCdo45vfhScJ8aZbLTbD7I4,235
|
|
192
194
|
radboy/ExtractPkg/__pycache__/__init__.cpython-312.pyc,sha256=Ll1iKcG0MDtoCIloQ_frcihvCSe1HPtyERzcAoXwQT0,273
|
|
193
195
|
radboy/ExtractPkg/__pycache__/__init__.cpython-313.pyc,sha256=kL3Y3KxCTaGNg3aq5fhf2fsnQHZolGfvniEUfsx2bwY,152
|
|
194
|
-
radboy/FB/FBMTXT.py,sha256=
|
|
196
|
+
radboy/FB/FBMTXT.py,sha256=h3G9n5l9F1JN0sUwdFkoi_QuGCEn1JnYCzwA9uovrVk,43259
|
|
195
197
|
radboy/FB/FormBuilder.py,sha256=1ZAXcnPXTNlKNSZ4vrzbs1KnAb68FQOrWiX9n19KXok,14617
|
|
196
198
|
radboy/FB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
199
|
radboy/FB/__pycache__/FBMTXT.cpython-312.pyc,sha256=XCVFa7Mo83LGIdRrTvcK73siUpcVIEQfXKCH2QHeViw,9626
|
|
198
|
-
radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=
|
|
200
|
+
radboy/FB/__pycache__/FBMTXT.cpython-313.pyc,sha256=gZMGqp8-SLNXfE_9O8iVVL7NobB5WZhk8qKAVMt8GpI,57964
|
|
199
201
|
radboy/FB/__pycache__/FormBuilder.cpython-312.pyc,sha256=lNQdB-zApsXM7OQF9MIi0zRZD1SAL6stKEN-AyQiIKg,18873
|
|
200
202
|
radboy/FB/__pycache__/FormBuilder.cpython-313.pyc,sha256=sAw763PhW1mvx2K12f696yvpCXQ6Wonc9zaFqQK8Ljg,19890
|
|
201
203
|
radboy/FB/__pycache__/__init__.cpython-312.pyc,sha256=ULEL8Au_CxcYpNAcSoSbI65M7-av1W6Zuy6kQJUu-Mw,265
|
|
@@ -341,7 +343,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
|
|
|
341
343
|
radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
|
|
342
344
|
radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
|
|
343
345
|
radboy/TasksMode/SetEntryNEU.py,sha256=Gu0Z677tjpc7-9AQtLbIr7yzPx6ZJXGK33lOIgU0IRM,17432
|
|
344
|
-
radboy/TasksMode/Tasks.py,sha256=
|
|
346
|
+
radboy/TasksMode/Tasks.py,sha256=tSzAjarH7jIrrdlXiw5SuQpRINuBMg4ASGP0HZrwQ38,341665
|
|
345
347
|
radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
348
|
radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
|
|
347
349
|
radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
|
|
@@ -350,7 +352,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
|
|
|
350
352
|
radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=UExwr8dN2STFEDE5t_YnQFMUX-wGv7JH10I1OyBDRtM,20212
|
|
351
353
|
radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
|
|
352
354
|
radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
|
|
353
|
-
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=
|
|
355
|
+
radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=A65bcUxQba9forVqkj9vX9y_0-RGuBec55KO-G8ktJs,414775
|
|
354
356
|
radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
|
|
355
357
|
radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
|
|
356
358
|
radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
|
|
@@ -397,7 +399,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
397
399
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
398
400
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
399
401
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
400
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
402
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=LL0v6pp7s2z_PceSC5LocTlbmJTNFWl1vE7LxCnZ7Jw,165
|
|
401
403
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
402
404
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
403
405
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -407,7 +409,7 @@ radboy/__pycache__/t.cpython-311.pyc,sha256=bVszNkmfiyoNLd0WUc8aBJc2geGseW4O28cq
|
|
|
407
409
|
radboy/__pycache__/te.cpython-311.pyc,sha256=vI8eNUE5VVrfCQvnrJ7WuWpoKcLz-vVK3ifdUZ4UNhk,592
|
|
408
410
|
radboy/__pycache__/x.cpython-311.pyc,sha256=3jIvWoO5y5WqrL_hRmXNK8O0vO7DwJ4gufjm2b0V7VI,1963
|
|
409
411
|
radboy/preloader/__init__.py,sha256=m7oQ0G4gRuB1c2FvrDJ51-euecvuSz5t6uAWkMOXAAg,895
|
|
410
|
-
radboy/preloader/preloader.py,sha256=
|
|
412
|
+
radboy/preloader/preloader.py,sha256=57PoklukD_S9sloaWas_MWI14HooC7vbW31IXoNnNn4,12334
|
|
411
413
|
radboy/setCode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
414
|
radboy/setCode/setCode.py,sha256=8UOf4okbx-Zane99odeoLAS_lfIt8pIaFomN7EtnnVA,5202
|
|
413
415
|
radboy/setCode/__pycache__/__init__.cpython-311.pyc,sha256=cJuP5rve6Wn7ZO789tixyOlyrHZQWsBxDn9oZGoG5WE,232
|
|
@@ -424,7 +426,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
424
426
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
425
427
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
426
428
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
427
|
-
radboy-0.0.
|
|
428
|
-
radboy-0.0.
|
|
429
|
-
radboy-0.0.
|
|
430
|
-
radboy-0.0.
|
|
429
|
+
radboy-0.0.569.dist-info/METADATA,sha256=4Zi4Hzev1BRW6eEOZXETnpAnxClcICvXEERa34b-gZU,1636
|
|
430
|
+
radboy-0.0.569.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
431
|
+
radboy-0.0.569.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
432
|
+
radboy-0.0.569.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|