radboy 0.0.326__py3-none-any.whl → 0.0.328__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/CoinCombo.py CHANGED
@@ -90,7 +90,7 @@ class CoinComboUtil:
90
90
  for num,i in enumerate(session.query(CoinCombo4TTL).all()):
91
91
  print(self.colorize(num,ct,i))
92
92
 
93
- def range_generate(self):
93
+ def range_generate(self,forwards=True):
94
94
  bottom=Prompt.__init2__(None,FormBuilderMkText,ptext="Range Min?",helpText="a value",data="float")
95
95
  if bottom in [None,]:
96
96
  return
@@ -112,9 +112,9 @@ class CoinComboUtil:
112
112
  for num,amount in enumerate(rng):
113
113
  amount=round(float(amount),2)
114
114
  print(f"{self.colorize(num,ct,amount)}")
115
- self.generate(amount=amount)
115
+ self.generate(amount=amount,forwards=forwards)
116
116
 
117
- def generate(self,amount=None):
117
+ def generate(self,amount=None,forwards=True):
118
118
  if amount == None or amount < 0:
119
119
  amount = Prompt.__init2__(None,FormBuilderMkText,ptext="How much?",helpText="a value",data="float")
120
120
  if amount in [None,'d']:
@@ -130,7 +130,7 @@ class CoinComboUtil:
130
130
  for i in currencies:
131
131
  bills.append(i.Value)
132
132
  bills=sorted(bills)
133
- combinations = get_bill_combinations(amount, bills)
133
+ combinations = get_bill_combinations(amount, bills,forwards=forwards)
134
134
 
135
135
  # Print the combinations
136
136
  for num,combo in enumerate(combinations):
@@ -180,7 +180,12 @@ class CoinComboUtil:
180
180
 
181
181
  try:
182
182
  if amount == finalmsg[k]['Calculated Total']:
183
- coinCombo=CoinCombo4TTL(Calculated_Total=finalmsg[k]['Calculated Total'],TTL=finalmsg[k]['User Provided Amount'],DTOE=NOW,CurrencyName=finalmsg[k]['Name'],CurrencyValue=finalmsg[k]['Value'],CurrencyNeeded4TTL=finalmsg[k]['NeededQty'],group_id=f"{combo}={finalmsg[k]['User Provided Amount']}")
183
+ gid=f"{combo}={finalmsg[k]['User Provided Amount']}"
184
+ coinCombo=CoinCombo4TTL(Calculated_Total=finalmsg[k]['Calculated Total'],TTL=finalmsg[k]['User Provided Amount'],DTOE=NOW,CurrencyName=finalmsg[k]['Name'],CurrencyValue=finalmsg[k]['Value'],CurrencyNeeded4TTL=finalmsg[k]['NeededQty'],group_id=gid)
185
+ check=session.query(CoinCombo4TTL).filter(CoinCombo4TTL.group_id==gid).first()
186
+ if check:
187
+ print(self.colorize(0,0,f"User Provided Amount({Fore.light_yellow}{amount}{Fore.cyan}) as group_id({Fore.orange_red_1}{gid}{Fore.cyan}) was Located In Storage -> {Fore.light_red}Refusing to Store!{Fore.cyan}"))
188
+ continue
184
189
  session.add(coinCombo)
185
190
  if (num%self.commit_rate)==0:
186
191
  try:
@@ -221,6 +226,11 @@ class CoinComboUtil:
221
226
  'exec':self.generate,
222
227
  'desc':"Generate Coin Combos for a given amount",
223
228
  },
229
+ f'{uuid.uuid1()}':{
230
+ 'cmds':['genr','generate combos reversed','gccr'],
231
+ 'exec':lambda self=self:self.generate(forwards=False),
232
+ 'desc':"Generate Coin Combos for a given amount in reverse",
233
+ },
224
234
  f'{uuid.uuid1()}':{
225
235
  'cmds':['scr','set commit rate','st cmt rt'],
226
236
  'exec':self.setCommitRate,
@@ -236,6 +246,11 @@ class CoinComboUtil:
236
246
  'exec':self.range_generate,
237
247
  'desc':"generate combinations for a range of values [will take a while]",
238
248
  },
249
+ f'{uuid.uuid1()}':{
250
+ 'cmds':['range generate reverse','gen rng rvs','gen range rvs','generate range reverse',',gnrngr','gn rng r',],
251
+ 'exec':self.range_generate,
252
+ 'desc':"generate combinations for a range of values [will take a while] in the reverse direction",
253
+ },
239
254
  f'{uuid.uuid1()}':{
240
255
  'cmds':['skc','scl','seek combo','sk c','search combos',],
241
256
  'exec':self.seek,
radboy/DB/Prompt.py CHANGED
@@ -1747,6 +1747,7 @@ Suffix {hw_delim}\\n
1747
1747
  {Fore.orange_red_1}**{Fore.grey_50}Add a {Fore.light_magenta}-{Fore.grey_50} to the end of each cmd to include negatives, but ignore '0' and 'None' if spaces are included then put a space before the last -, elsewise put a it immediately behind the cmd to to enable this feature{Style.reset}
1748
1748
  {Fore.grey_70}**{Fore.light_green}es{Fore.light_red}u{Fore.light_steel_blue} - search entry menu{Style.reset}
1749
1749
  {Fore.grey_70}**{Fore.light_green}tv{Fore.light_red}u{Fore.light_steel_blue} - show tag data info{Style.reset}
1750
+ {Fore.grey_70}**{Fore.light_green}ca{Fore.light_red}u{Fore.light_steel_blue} - clear all lists{Style.reset}
1750
1751
  {Fore.grey_70}**{Fore.light_green}dl{Fore.light_red}u{Fore.light_green},daylog{Fore.light_red}u{Fore.light_steel_blue} - Entry History System{Style.reset}
1751
1752
  {Fore.grey_70}**{Fore.light_green}mlu{Fore.light_steel_blue} - master lookup search for something in {SEARCH_TABLES}{Style.reset}
1752
1753
  {Fore.grey_70}**{Fore.light_green}exp{Fore.light_steel_blue} - product expiration menu{Style.reset}
@@ -1821,6 +1822,8 @@ which will result in a cmd of 'ls Shelf'{Style.reset}
1821
1822
  continue
1822
1823
  resultant=db.Entry.rebar(None,code)
1823
1824
  print(resultant)
1825
+ elif cmd in ['clear all universion',"cau","clear_all_universal"]:
1826
+ TM.Tasks.TasksMode(parent=self,engine=db.ENGINE,init_only=True).clear_all()
1824
1827
  elif cmd in ['codify','format code','fcode']:
1825
1828
  def mkT(text,data):
1826
1829
  return text
radboy/TasksMode/Tasks.py CHANGED
@@ -37,6 +37,7 @@ from radboy.Unified.Unified2 import Unified2
37
37
  from copy import copy
38
38
  from decimal import Decimal
39
39
  from radboy.GDOWN.GDOWN import *
40
+ from radboy.Unified.clearalll import clear_all
40
41
 
41
42
  def today():
42
43
  dt=datetime.now()
@@ -4518,6 +4519,7 @@ where:
4518
4519
  }
4519
4520
  count+=1
4520
4521
  '''
4522
+ self.clear_all=lambda self=self:clear_all(self)
4521
4523
  if not init_only:
4522
4524
  while True:
4523
4525
  def mkT(text,self):
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.326'
1
+ VERSION='0.0.328'
Binary file
radboy/whatIs15.py CHANGED
@@ -1,8 +1,9 @@
1
1
  from itertools import combinations_with_replacement
2
2
  from datetime import datetime
3
3
  import sys,os
4
+ import math
4
5
 
5
- def get_bill_combinations(amount, denominations):
6
+ def get_bill_combinations(amount, denominations,forwards=True):
6
7
  """
7
8
  Generates all possible bill combinations for a given amount using specified denominations.
8
9
 
@@ -20,27 +21,34 @@ def get_bill_combinations(amount, denominations):
20
21
  return []
21
22
 
22
23
  amount_cents = int(amount * 100)
23
- denominations_cents = [int(d * 100) for d in denominations]
24
+ #remove denominations not used 20$ cannot be made into a required amount of 1$, smaller denominations are needed
25
+ if forwards:
26
+ denominations_cents = list(reversed([int(d * 100) for d in denominations if amount >= d]))
27
+ else:
28
+ denominations_cents = [int(d * 100) for d in denominations if amount >= d]
24
29
 
25
30
  valid_combinations = []
26
31
  counter=0
27
32
  for r in range(0, amount_cents // min(denominations_cents) + 1):
28
- last=os.get_terminal_size().columns
29
- for combination_tuple in combinations_with_replacement(denominations_cents, r):
30
-
31
- if counter%100000==0:
32
- msg=f"{'\b'*last}"+f"Processing {counter}"
33
- #last=len(msg)
34
- sys.stdout.write(msg)
35
- sys.stdout.flush()
36
- counter+=1
37
- if sum(combination_tuple) == amount_cents:
38
- #valid_combinations.append()
39
- '''
40
- msg=f"{'\b'*last}processing... {datetime.now().ctime()}"
41
- last=len(msg)
42
- sys.stdout.write(msg)
43
- sys.stdout.flush()
44
- '''
45
- yield tuple(x / 100 for x in combination_tuple)
33
+ last=os.get_terminal_size().columns
34
+ try:
35
+ ct=math.comb(len(denominations_cents) + r - 1, r)*100
36
+ except Exception as e:
37
+ ct='MATH ERROR'
38
+ for combination_tuple in combinations_with_replacement(denominations_cents, r):
39
+ if counter%100000==0:
40
+ msg=f"{'\b'*last}"+f"Processing {counter} of {ct}"
41
+ #last=len(msg)
42
+ sys.stdout.write(msg)
43
+ sys.stdout.flush()
44
+ counter+=1
45
+ if sum(combination_tuple) == amount_cents:
46
+ #valid_combinations.append()
47
+ '''
48
+ msg=f"{'\b'*last}processing... {datetime.now().ctime()}"
49
+ last=len(msg)
50
+ sys.stdout.write(msg)
51
+ sys.stdout.flush()
52
+ '''
53
+ yield tuple(x / 100 for x in combination_tuple)
46
54
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.326
3
+ Version: 0.0.328
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=G5SwJqqQO_Om4YhL8RNobk9ftyQRcDtKLipOlbWamFQ,17
8
+ radboy/__init__.py,sha256=-bpYn2nzorB1mcLhewwd9exlKfDS30bPycH0tynnCgk,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
@@ -23,7 +23,7 @@ radboy/renderQR.py.README,sha256=Fimj2dBZzrfHdyBBhcoeF8QqPZt56oGj2hQINk7L9bM,718
23
23
  radboy/t.py,sha256=YYEnpSOnRmyheHVGS6eFXqUgPp_BQC2sr-VCrJzqdEY,301
24
24
  radboy/te.py,sha256=QubC9KtvQCTyXwPT8vs8WIGRqju_VulB0wKh3nqY-Jo,146
25
25
  radboy/version.txt,sha256=hyLxMzF4V83v2rKb5d0pn5gGrkJj8H2hGPZlh1vbu0Y,7
26
- radboy/whatIs15.py,sha256=9Hotdh9Liqy-8GdV7Wb1kiXR4a8hTG1HcfzYGQrYDcA,1632
26
+ radboy/whatIs15.py,sha256=VB5jPr_216415gIYdrqGn3Bd06sJWfnphAflDvww_Eo,2121
27
27
  radboy/x.py,sha256=NtnvRFocHgtjDbRsYs69klfIFV7TnxV8oo3PEMmwqrQ,1042
28
28
  radboy/AlcoholConsumption/__init__.py,sha256=OSncIX-anAMHR4Ppls6hSkisYdYvSvkTHc3QXArPNNI,834
29
29
  radboy/AlcoholConsumption/ac.py,sha256=1988xxPpzs41Q7uW4FEOra-Z2ATCHrSEbS8zO7vLT-8,18849
@@ -75,7 +75,7 @@ radboy/ConvertCode/__pycache__/__init__.cpython-311.pyc,sha256=1-K1vfRZxAs9MoOyy
75
75
  radboy/ConvertCode/__pycache__/__init__.cpython-312.pyc,sha256=77LSCMdrPg91lbsloPumUo1SpAt5A8l1WPgTxGIvwTs,274
76
76
  radboy/ConvertCode/__pycache__/__init__.cpython-313.pyc,sha256=4F9h0V0Z5sQHdZQGEsnfCSLMQK4lUD5CzJwU4Elv-EU,153
77
77
  radboy/ConvertCode/__pycache__/codep.cpython-311.pyc,sha256=-qJqPEjGOP1-x6Xw6W4Msfuu2iwVffN_-DerH18Is2o,1086
78
- radboy/DB/CoinCombo.py,sha256=tSHWmLlQxuTOR1dEx7izWxifJSB6k7uSRAeS9jNB_rk,12388
78
+ radboy/DB/CoinCombo.py,sha256=6gwF0cLUVjUfF_KfD_fhAc6xpvN_tkrhXyxguB4vOOE,13541
79
79
  radboy/DB/DatePicker.py,sha256=2XenrewM6oXcNcBmmwnET2gSYsKJl9QoP-lrEgYIINw,16396
80
80
  radboy/DB/DisplayItemDb.py,sha256=uVvrNyFyBuKvrw-BEPXKYvfa-QWyFN5ahESi2l6vUUA,52046
81
81
  radboy/DB/EstimatedPayCalendarWorkSheet.txt,sha256=GOjRSmGxFoNTdAnpPe2kGv7CkXDrh0Mee01HslamGbo,17173
@@ -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=yqj4kULrbZ_P-kD07nHXYkJpwi5MCdOi6bJcNL3iMSM,163751
86
+ radboy/DB/Prompt.py,sha256=SzD1E5PCpElngqv2P65DtvpLoSu_JaoLDCflpgvzXeQ,164031
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=0OHTEtwEqwQZD_FPDR9vklmwGCfqIC94MkcwbgdyqrE,256853
110
+ radboy/DB/__pycache__/Prompt.cpython-313.pyc,sha256=ZHCusESF46wCk8ujDsCX3aaOhk5wwqmBP_nhFJ8UQnM,257493
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
@@ -327,7 +327,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
327
327
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
328
328
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
329
329
  radboy/TasksMode/SetEntryNEU.py,sha256=nVjKvWpPwscni7baB1xyyjpk8jUU-WWHMhecGm9Tmek,16679
330
- radboy/TasksMode/Tasks.py,sha256=480VFkVICL6_8GpZXb5QsBOIcVIFHaFyXZP-ctiJtbg,292881
330
+ radboy/TasksMode/Tasks.py,sha256=UfMt9ycbVIYQIz01uTy1sS7vLTkY-JliSNsZNiMJl2U,292984
331
331
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
332
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
333
333
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -336,7 +336,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
336
336
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=oIte4KgdnUQvFl07P1JTUGo1CCaeLdSofLpob7MSvUc,19612
337
337
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
338
338
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
339
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=UIBWcFkN55kxd_1LArMsv_rMaHjhy8Q-1GhbmhV6-Tw,350486
339
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=ahyGULMN5b-Q5220aq0RZYw3uDp_9cKozZmnLbA3ASs,350697
340
340
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
341
341
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
342
342
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -383,7 +383,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
383
383
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
384
384
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
385
385
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
386
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=hLmiy3luHDFaiZ8Yqtu_49ZQHiPy1QNNNvRaSqgy128,165
386
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=HfKsiyMDxDaM4zO-DoiK-_teLv2PwqYnIK2I-W5k2is,165
387
387
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
388
388
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
389
389
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -408,7 +408,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
408
408
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
409
409
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
410
410
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
411
- radboy-0.0.326.dist-info/METADATA,sha256=BxvoxhVKy1h6aQv4C1mrERw3t8FkIKsdPprSqS8SPxI,794
412
- radboy-0.0.326.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
413
- radboy-0.0.326.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
414
- radboy-0.0.326.dist-info/RECORD,,
411
+ radboy-0.0.328.dist-info/METADATA,sha256=Kvub-QuE6MeYFXUinWZK7VH5fUPqTLcpke2Q8Wq60xg,794
412
+ radboy-0.0.328.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
413
+ radboy-0.0.328.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
414
+ radboy-0.0.328.dist-info/RECORD,,