radboy 0.0.337__py3-none-any.whl → 0.0.339__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
@@ -1776,10 +1776,19 @@ Suffix {hw_delim}\\n
1776
1776
  {Fore.grey_70}**{Fore.light_green}'cslf','clear selected location field'{Fore.light_steel_blue} set Entry's with selected field's to Zero, but do not do change InList==False{Style.reset}
1777
1777
  {Fore.grey_70}**{Fore.light_green}'cse','clear selected entry'{Fore.light_steel_blue} clear selected entry{Style.reset}
1778
1778
  {Fore.grey_70}**{Fore.light_green}'fmbh','formbuilder help','form helptext'{Fore.light_steel_blue} print formbuilder helptext{Style.reset}
1779
+ {Fore.grey_70}**{Fore.light_green}'text2file'{Fore.light_steel_blue} dump input/returned text to file{Style.reset}
1780
+ {Fore.grey_70}**{Fore.light_green}'qc','quick change','q-c','q.c'{Fore.light_steel_blue} use the quick change menu {Fore.orange_red_1}if available{Style.reset}
1779
1781
  '''
1780
1782
  print(extra)
1781
1783
  print(helpText)
1782
1784
  continue
1785
+ elif cmd.lower() in ['txt2fl','text2file','here2there','hr2thr']:
1786
+ outfile=Path(db.detectGetOrSet('text2file','TextOut.txt',setValue=False,literal=True))
1787
+ with open(outfile,'w') as x:
1788
+ otext=Prompt.__init2__(None,func=FormBuilderMkText,ptext=f'Text to Dump to {outfile}',helpText='saveable text',data="string")
1789
+ if otext in [None,'d','']:
1790
+ print("nothing was saved!")
1791
+ x.write(otext)
1783
1792
  elif cmd.lower() in ['known','known devices','known dev','knwn dev']:
1784
1793
  disp=KNOWN_DEVICES
1785
1794
  disp.append('')
@@ -15,6 +15,8 @@ import uuid
15
15
  from radboy.whatIs15 import get_bill_combinations
16
16
  from radboy.DB.PayDay import EstimatedPayCalendar,setup
17
17
  from radboy.DB.CoinCombo import *
18
+ from radboy.DayLog.Wavelength4Freq import HoleSize
19
+
18
20
 
19
21
  class DayLogger:
20
22
  helpText=f"""
@@ -66,6 +68,8 @@ fxtbl - update table with correct columns
66
68
  {Fore.light_sea_green}'prc chng','prcchng','prc.chng','prc_chng','prc-chng','price change' {Fore.light_steel_blue}- detect price change over a date-range{Style.reset}
67
69
  {Fore.light_sea_green}'cr','ttl spnt','ttlspnt','cost report','cst rpt'{Fore.light_steel_blue}- generate an expense/cost report for a date-range{Style.reset}
68
70
  {Fore.light_sea_green}'epdc','estimated pay day calendar'{Fore.light_steel_blue}- review your estimated paydays{Style.reset}
71
+ Not Really Related
72
+ {Fore.light_sea_green}'faraday','holesize'{Fore.light_steel_blue}- get wavelength needed for a frequency/for making a faraday cage{Style.reset}
69
73
  """
70
74
  def listAllDL(self):
71
75
  with Session(self.engine) as session:
@@ -1819,6 +1823,8 @@ fxtbl - update table with correct columns
1819
1823
  EstimatedPayCalendar(**setup())
1820
1824
  elif what.lower() in ['coin']:
1821
1825
  CoinComboUtil()
1826
+ elif what.lower() in ['faraday','holesize']:
1827
+ HoleSize()
1822
1828
 
1823
1829
 
1824
1830
 
@@ -0,0 +1,13 @@
1
+ #yellow cab taxi fare calculator
2
+ #rates
3
+
4
+ class TaxiFare:
5
+ per_1_14_mile=0.25
6
+ flag_drop=3.50
7
+ per_mile=per_1_14_mile*14
8
+ airport_surcharge_pickup=3
9
+ airport_surcharge_dropoff=3
10
+ wait_time_per_hour_cost=35
11
+
12
+ def __init__(self):
13
+ pass
@@ -0,0 +1,53 @@
1
+ import pint
2
+ import numpy as np
3
+ from radboy.DB.db import *
4
+ from radboy.DB.Prompt import *
5
+ from radboy.FB.FBMTXT import *
6
+ from radboy.FB.FormBuilder import *
7
+ from colored import Fore,Back,Style
8
+
9
+ def HoleSize():
10
+ def static_colorize(m,n,c):
11
+ msg=f'{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}'
12
+ return msg
13
+ data={
14
+ 'discreetStep':{
15
+ 'type':'integer',
16
+ 'default':12},
17
+ 'discreetFreq':{
18
+ 'type':'float',
19
+ 'default':500e9},
20
+ 'percentBuffer':{
21
+ 'type':'float',
22
+ 'default':0.09091},
23
+ 'roundTo':{
24
+ 'type':'integer',
25
+ 'default':4,
26
+ }
27
+ }
28
+ fd=FormBuilder(data=data)
29
+ if fd == None:
30
+ return
31
+ roundTo=fd['roundTo']
32
+ discreetStep=fd['discreetStep']
33
+ discreetFreq=fd['discreetFreq']
34
+ speedoflight=299792458
35
+ #add 10% to accomodate for accuracies
36
+ percentBuffer=fd['percentBuffer']
37
+ #add buffer and 1 step to ensure end of frequency range is calculated
38
+ frequency_max=discreetFreq+((discreetFreq/discreetStep)+((discreetFreq/discreetStep)*percentBuffer)) #5ghz
39
+ step=frequency_max/discreetStep
40
+ converter=pint.UnitRegistry()
41
+ numerable=np.arange(0,frequency_max,step)
42
+ ct=len(numerable)
43
+ numerable=enumerate(numerable)
44
+ for num,frequency in numerable:
45
+ try:
46
+ frequency=round(float(frequency),roundTo)
47
+ formula_result=round(float(speedoflight/frequency),roundTo)
48
+ as_mm=round(float(converter.convert(formula_result,'meter','millimeter')),roundTo)
49
+ frequency_human=round(float(converter.convert(frequency,'hertz','gigahertz')),roundTo)
50
+ print(static_colorize(f'{Fore.green_yellow}hole diameter/Gap Width/Wavelength{Fore.orange_red_1} (mm)/{Fore.magenta}(in){Fore.light_steel_blue} for frequency (ghz)',num,ct))
51
+ print(static_colorize(f"{Fore.orange_red_1}{as_mm}/{Fore.magenta}{round(converter.convert(as_mm,'mm','in'),roundTo)}{Fore.light_steel_blue} for {frequency_human}(ghz){Style.reset}",num,ct))
52
+ except Exception as e:
53
+ print(e)
@@ -111,26 +111,34 @@ class EntryDataExtrasMenu:
111
111
  '''
112
112
  def rm_ede_id(self):
113
113
  with Session(ENGINE) as session:
114
- ede_id=Prompt.__init2__(None,func=FormBuilderMkText,ptext="ExtryDataExtras.ede_id to delete?",helpText="the id value for the EntryDataExtras that you wish to delete.",data="integer")
115
- if ede_id in [None,]:
114
+ ede_ids=Prompt.__init2__(None,func=FormBuilderMkText,ptext="ExtryDataExtras.ede_id to delete,as comma separated list(SLOW)?",helpText="the id value for the EntryDataExtras that you wish to delete.",data="list")
115
+ if ede_ids in [None,[]]:
116
116
  return
117
- ede=session.query(EntryDataExtras).filter(EntryDataExtras.ede_id==ede_id).first()
118
- if ede:
119
- session.delete(ede)
120
- session.commit()
121
- results=session.query(EntryDataExtras).all()
122
- ct=len(results)
123
- for num,i in enumerate(results):
124
- msg=f"{Fore.orange_red_1}DEPENDENCY CHECK{Fore.dark_goldenrod}-> {Fore.cyan}{num}/{Fore.light_cyan}{num+1} of {Fore.light_red}{ct} -> {i}"
125
- print(msg)
126
- check=session.query(Entry).filter(Entry.EntryId==i.EntryId).first()
127
- check2=session.query(DayLog).filter(DayLog.EntryId==i.EntryId).first()
128
- if not check and not check2:
129
- session.delete(i)
130
- if num % 100 == 0:
131
- session.commit()
132
- session.commit()
133
- session.flush()
117
+ try:
118
+ for num,ede_id in ede_ids:
119
+ try:
120
+ ede_id=int(ede_id)
121
+ ede=session.query(EntryDataExtras).filter(EntryDataExtras.ede_id==ede_id).first()
122
+ if ede:
123
+ session.delete(ede)
124
+ session.commit()
125
+ results=session.query(EntryDataExtras).all()
126
+ ct=len(results)
127
+ for num,i in enumerate(results):
128
+ msg=f"{Fore.orange_red_1}DEPENDENCY CHECK{Fore.dark_goldenrod}-> {Fore.cyan}{num}/{Fore.light_cyan}{num+1} of {Fore.light_red}{ct} -> {i}"
129
+ print(msg)
130
+ check=session.query(Entry).filter(Entry.EntryId==i.EntryId).first()
131
+ check2=session.query(DayLog).filter(DayLog.EntryId==i.EntryId).first()
132
+ if not check and not check2:
133
+ session.delete(i)
134
+ if num % 100 == 0:
135
+ session.commit()
136
+ session.commit()
137
+ session.flush()
138
+ except Exception as ee:
139
+ print(ee)
140
+ except Exception as e:
141
+ print(e)
134
142
 
135
143
  def edee(self):
136
144
  event_loop=asyncio.new_event_loop()
radboy/RNE/RNE.py CHANGED
@@ -23,6 +23,7 @@ from sqlalchemy.ext.automap import automap_base
23
23
  from pathlib import Path
24
24
  import upcean
25
25
  from copy import deepcopy
26
+ from radboy.RNE.dateAhead import dateAhead
26
27
 
27
28
  def detectGetOrSet(name,value,setValue=False):
28
29
  value=str(value)
@@ -692,6 +693,7 @@ class Expiration:
692
693
  {Fore.light_steel_blue}'update expiry from entry barcode','uefeb'{Fore.light_green} -{Fore.cyan} look for Expiry with Name=='New Item' and checks Entry Table for product and updates the name by First result{Style.reset}
693
694
  {Fore.light_steel_blue}'is','is expired','ise'{Fore.light_green} -{Fore.cyan}is the input date expired!{Style.reset}
694
695
  {Fore.light_steel_blue}'ddiff','date diff','datediff'{Fore.light_green} -{Fore.cyan}display the difference between dates!{Style.reset}
696
+ {Fore.light_steel_blue}'date forwards','forwards date','dt+','date+'{Fore.light_green} -{Fore.cyan}calculate a future date by adding values to the date relatively!{Style.reset}
695
697
  {Style.bold}{Fore.orange_red_1}Notes{Style.reset} {Fore.orange_red_1}Dates{Fore.grey_70}
696
698
  Dates can be provided as DD{Fore.light_green}#SEPCHAR#{Fore.grey_70}MM{Fore.light_green}#SEPCHAR#{Fore.grey_70}YY|YYYY
697
699
  where {Fore.light_green}#SEPCHAR#{Fore.grey_70} can be any of the punctuation-chars, save for '%'.
@@ -754,6 +756,8 @@ class Expiration:
754
756
  self.isExpired()
755
757
  elif doWhat.lower() in ['ddiff','date diff','datediff']:
756
758
  self.diff()
759
+ elif doWhat.lower() in ['date forwards','forwards date','dt+','date+']:
760
+ dateAhead()
757
761
  else:
758
762
  print(helpText)
759
763
 
Binary file
@@ -0,0 +1,71 @@
1
+ from datetime import datetime,timedelta
2
+ from dateutil.relativedelta import relativedelta as relativedelta
3
+ import pint
4
+ import numpy as np
5
+ from radboy.DB.db import *
6
+ from radboy.DB.Prompt import *
7
+ from radboy.FB.FBMTXT import *
8
+ from radboy.FB.FormBuilder import *
9
+ from colored import Fore,Back,Style
10
+
11
+ def dateAhead(sep=' / '):
12
+ def static_colorize(m,n,c):
13
+ msg=f'{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}'
14
+ return msg
15
+ today=datetime.now()
16
+ data={
17
+ 'dt1':{
18
+ 'type':'datetime',
19
+ 'default':today
20
+ },
21
+ 'months':{
22
+ 'type':'integer',
23
+ 'default':0},
24
+ 'days':{
25
+ 'type':'integer',
26
+ 'default':0},
27
+ 'years':{
28
+ 'type':'integer',
29
+ 'default':0},
30
+ 'leapdays':{
31
+ 'type':'integer',
32
+ 'default':0},
33
+ 'weeks':{
34
+ 'default':0,
35
+ 'type':'integer'
36
+ },
37
+ 'hours':{
38
+ 'type':'integer',
39
+ 'default':0,
40
+ },
41
+ 'minutes':{
42
+ 'type':'integer',
43
+ 'default':0,
44
+ },
45
+ 'seconds':{
46
+ 'type':'integer',
47
+ 'default':0,
48
+ },
49
+ 'microseconds':{
50
+ 'type':'integer',
51
+ 'default':0
52
+ },
53
+ }
54
+ fd=FormBuilder(data=data)
55
+ if fd in [None,]:
56
+ return
57
+ end_delta=relativedelta(**fd)
58
+ o= (fd['dt1'],end_delta,fd['dt1']+end_delta)
59
+ print(static_colorize(f"{sep}".join([str(i) for i in o]),0,1))
60
+ return o
61
+ #documentation @
62
+ '''
63
+ https://dateutil.readthedocs.io/en/stable/relativedelta.html
64
+ '''
65
+ '''
66
+ start_date=datetime(2026,9,1)
67
+ months=120
68
+ end_date=start_date+relativedelta(months=months)
69
+ between=end_date-datetime.now()
70
+ print(end_date,between)
71
+ '''
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.337'
1
+ VERSION='0.0.339'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.337
3
+ Version: 0.0.339
4
4
  Summary: A small example package
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=XXy-o5Z_yOgrgHNju4iqM3h7xhRBkNIoHG1qePtBnGY,41316
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=-u679A02XvSosAwgWurqHAEmgwIwG59CRqxsYxtdljU,17
8
+ radboy/__init__.py,sha256=yY1tCB_yLpF94VbNd-KM8XfeHTAM-v0v3h4V4u1oF0o,17
9
9
  radboy/api_key,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  radboy/case-export-2024-05-14-13-10-00.672971.xlsx,sha256=Wd592d_VLFmfUI9KKKSVjNwjV91euc1T7ATyvwvUhlg,5431
11
11
  radboy/case-export-2024-05-14-13-13-22.540614.xlsx,sha256=OnGrhmScHfGp_mVaWW-LNMsqrQgyZDpiU3wV-2s3U5Q,5556
@@ -83,7 +83,7 @@ radboy/DB/ExerciseTracker.py,sha256=CZ8jdKJiAE_QTAiJTRXi8ZOnS1NUiSvWVSKLHLpYVGk,
83
83
  radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
84
84
  radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
85
85
  radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- radboy/DB/Prompt.py,sha256=o-IPMokQx0ecAyV7Z2BIXEwbyUnY-HipZ-YYPBOuPk8,164653
86
+ radboy/DB/Prompt.py,sha256=LuDWtMnUkUoywi1i_i7jnMLx4YBNVnCXq-xsB9iloUI,165436
87
87
  radboy/DB/RandomStringUtil.py,sha256=eZCpR907WStgfbk4Evcghjv9hOkUDXH-iMXIq0-kXq8,24386
88
88
  radboy/DB/ResetTools.py,sha256=RbI-Ua7UlsN0S9qLqtEkTWvzyTZ6R-hHR3CW4NHlUPE,6660
89
89
  radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,4013
@@ -107,7 +107,7 @@ radboy/DB/__pycache__/FormBuilder.cpython-312.pyc,sha256=p1o-5SMRL8OXP_XQ5liUpf-
107
107
  radboy/DB/__pycache__/PrintLogging.cpython-312.pyc,sha256=pIAFqTi6OiQQORSc-oMH1zAbsdH7sY1TifxrN_QOvnU,148
108
108
  radboy/DB/__pycache__/Prompt.cpython-311.pyc,sha256=P2uPRpeqfLFtxieZ0JHBG3X_HZzWUCsFSLb_fpRqky0,6407
109
109
  radboy/DB/__pycache__/Prompt.cpython-312.pyc,sha256=6CcQ1gE2hcz3cKPjo4f6d7xNM2PTDnl8NzQG0Pme5BE,142886
110
- radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=89EKV8V6YRlBJGabCStcNfiTCGHhgz4i2vhQgjQXKo0,258350
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=KBPR8FKKwh_PJb4JLCcTMeBA1dhhmKrd07AQQ0r3e9Q,259815
111
111
  radboy/DB/__pycache__/RandomStringUtil.cpython-312.pyc,sha256=TrbEY89MuLmNlvoo5d8vOE6Dyshh5_EMlTZvk8MDVN4,48597
112
112
  radboy/DB/__pycache__/RandomStringUtil.cpython-313.pyc,sha256=MCcgVwV2Y-9rAY2FVaJZCKcou3HDX70EZudoiCigT0o,49217
113
113
  radboy/DB/__pycache__/ResetTools.cpython-311.pyc,sha256=4Vyc57iAAF0yRPjjglnVKovnTn8OoFIi6Zok3Wpj_YM,9292
@@ -134,18 +134,20 @@ radboy/DB/__pycache__/renderText2Png.cpython-311.pyc,sha256=ivSzvyAeWhsS-a_RcFF8
134
134
  radboy/DB/__pycache__/renderText2Png.cpython-312.pyc,sha256=1CUGjOhJw_vC4DNMQ-W5jBXEKp7HzDrq7--x9VyBTo8,8991
135
135
  radboy/DB/__pycache__/renderText2Png.cpython-313.pyc,sha256=LDJOo7uFztlxw3ptN8QuHrLkr0GKiAArBu34QiE15iQ,9096
136
136
  radboy/DB/__pycache__/testClass.cpython-311.pyc,sha256=nkWap8RuBsWWOB_ZhGbR3ELbnL1F1CHZCi0dpepqw-0,1225
137
- radboy/DayLog/DayLogger.py,sha256=cSYRe_vDR1Gw7WssGWYulQmRKCwMES78ckw3LpA6Mb0,94898
137
+ radboy/DayLog/DayLogger.py,sha256=PZycS7gowOlH0VKYFM7rStZY-VpSFRKVMfK97Tp8PSM,95213
138
+ radboy/DayLog/TaxiFares.py,sha256=uF28hByUq9X4wv3cN4kQXAlPrqDTfwQL5utMUmhY7bY,234
139
+ radboy/DayLog/Wavelength4Freq.py,sha256=MfN2EATrN3bbEDgP1qOPjV1Fk8sVnkc_4tgX6sKfSE0,2054
138
140
  radboy/DayLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
141
  radboy/DayLog/__pycache__/DayLogger.cpython-311.pyc,sha256=TmRnRZHp5tMTokSEB8hWTxnasi-iJdh6TmYcb_nXGoY,29557
140
142
  radboy/DayLog/__pycache__/DayLogger.cpython-312.pyc,sha256=bfDCQZrIhgQYzoUle7roicRE_bhGPYZtIbCRIiDrsxU,68240
141
- radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=Lz0X_RtGpRJgnr2UWzPbFUBIS6IHKbJnQ9xMjUGo_q4,142217
143
+ radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=-tQhX0QBYsk1nh1MPPw6Mg_a5OmD1tJxfJOjYGO9Y7k,142713
142
144
  radboy/DayLog/__pycache__/__init__.cpython-311.pyc,sha256=Z5Y4DdVF77LZf6-Of92MDGFdi-IXik1ASQd4AdLNNfQ,231
143
145
  radboy/DayLog/__pycache__/__init__.cpython-312.pyc,sha256=lP_GHzSPt5JTrT1jLWiRMFGPmSdJYBn4eRV__OxgJ6s,269
144
146
  radboy/DayLog/__pycache__/__init__.cpython-313.pyc,sha256=UQw5v4r7yismC9qcqP0dEme6h-lawbOA5pXYpkqUwFk,148
145
- radboy/EntryExtras/Extras.py,sha256=xsTIFBYD4b2XWcf_FKFGjno-cV8ulVh6RTIBbX8kNtU,40504
147
+ radboy/EntryExtras/Extras.py,sha256=inKOffT8dyIHN7BAeztteCyvTFTedHdeHgkwJyA0Am0,41005
146
148
  radboy/EntryExtras/__init__.py,sha256=K76Ku7o2DwTZU-Ya2mifH856KAcxb8MXdSaQMQLhu84,902
147
149
  radboy/EntryExtras/__pycache__/Extras.cpython-312.pyc,sha256=eHkeyKblMtG37lDhl38OEGQbvvKxXMriKK49kj2mg8o,34768
148
- radboy/EntryExtras/__pycache__/Extras.cpython-313.pyc,sha256=yPum0FWAOO9lEZNfCviA1fCeA3Joqn67uoOOjX8I1Cw,51038
150
+ radboy/EntryExtras/__pycache__/Extras.cpython-313.pyc,sha256=otWK1Hcw_4vHKiTpp5jbgWHLMKEbOS7A_aw2a3n4xcE,51503
149
151
  radboy/EntryExtras/__pycache__/__init__.cpython-312.pyc,sha256=0bBwhp_9PYvL-Nm_J0gsYf9yfKAFJMiMdpc6XzZrPzU,829
150
152
  radboy/EntryExtras/__pycache__/__init__.cpython-313.pyc,sha256=PqXXfBeREZI2pZc22BayKH7daLXbO7p3NozaXpnA3cQ,829
151
153
  radboy/EntryExtras/__pycache__/db.cpython-312.pyc,sha256=Qcqix5yi9h7fbsmGhJOWYdLHbHMTWixwolRRQYg8ISk,1781
@@ -286,10 +288,11 @@ radboy/PunchCard/__pycache__/PunchCard.cpython-313.pyc,sha256=N8L4cP6iQldfDcYZNx
286
288
  radboy/PunchCard/__pycache__/__init__.cpython-311.pyc,sha256=Off5ltCdLUEhm2xHBufyQYZn3cmJ0FHMb5ZiZpzi6cI,234
287
289
  radboy/PunchCard/__pycache__/__init__.cpython-312.pyc,sha256=Y6qJWX7nupibrd15D5ZkcLV2B9QucwyIu6Mz3YFv-Bw,272
288
290
  radboy/PunchCard/__pycache__/__init__.cpython-313.pyc,sha256=aa7buQA_iDOOynayLa8DRx1TYsKRpB9VkhwoL1n8LDU,151
289
- radboy/RNE/RNE.py,sha256=-WomG6ZBU-sKXt0gtyM2ly6C8yj32bwE2YAT6ogkCWE,35889
291
+ radboy/RNE/RNE.py,sha256=Z1LRxvw44Sz34jORWdQsu3BIRpmlcC6RyvpGENk21Nc,36201
290
292
  radboy/RNE/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
+ radboy/RNE/dateAhead.py,sha256=g5pp84vteEkYlxRi5rgo6p2Z6PyoBmozljlnWx8twMs,1594
291
294
  radboy/RNE/__pycache__/RNE.cpython-312.pyc,sha256=TCmgh08Ac9MDZgJZwb-_cpCATcLu04wp_HPNtXBrwFw,54377
292
- radboy/RNE/__pycache__/RNE.cpython-313.pyc,sha256=srHl7z5tWMQPjc4L1OHIIHPo12VCCy7Ff0DGKTvTyrU,71377
295
+ radboy/RNE/__pycache__/RNE.cpython-313.pyc,sha256=NW6XQJCa83rw6VG1YPIzpC6_UrGfEv0k-u1rxDvnAJ0,71970
293
296
  radboy/RNE/__pycache__/__init__.cpython-312.pyc,sha256=uV2pHPbmeCebUp_7Fx1oOhe0ccQGsOtaCzVRFmj6IAg,266
294
297
  radboy/RNE/__pycache__/__init__.cpython-313.pyc,sha256=7J11knluwp7WjdVRcd4526_Y1LJo_nH4Kg3rNKIc77U,145
295
298
  radboy/Repack/Repack.py,sha256=JmGpsVWUIW71dwARwcuG_L2PP6puYbwRjVy1NJ9tYH8,42593
@@ -383,7 +386,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
383
386
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
384
387
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
385
388
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
386
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=faCj6hOhbenSP6Sd6vtevgPZw3qG77rdQTW6AJpKgHs,165
389
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=3bNIy-sJTRWsO9yrcvYPsAuoY2QVVt-NIUvQu3z5Ufg,165
387
390
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
388
391
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
389
392
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -408,7 +411,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
408
411
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
409
412
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
410
413
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
411
- radboy-0.0.337.dist-info/METADATA,sha256=j89zDToXpKHf6uwl5pvY96zd02VidK2tqwZXQ4UGlZY,794
412
- radboy-0.0.337.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
413
- radboy-0.0.337.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
414
- radboy-0.0.337.dist-info/RECORD,,
414
+ radboy-0.0.339.dist-info/METADATA,sha256=KPCpsa_GRv3qJBZ5z71V-yVpZOTq83vKj_8AQVH5Cc8,794
415
+ radboy-0.0.339.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
+ radboy-0.0.339.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
+ radboy-0.0.339.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5