radboy 0.0.536__py3-none-any.whl → 0.0.538__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.

Binary file
radboy/DB/db.py CHANGED
@@ -763,7 +763,7 @@ class EntryExtras:
763
763
  def __neg__(self):
764
764
  return -self.Price
765
765
 
766
- def std_colorize(m,n,c,start=f"[DB]{Back.grey_27}{Fore.pale_turquoise_1} Start {'*'*(os.get_terminal_size().columns-(len(Fore.pale_turquoise_1)+(len(Fore.grey_27)*2)+len(Style.reset)))}{Style.reset}\n",end=f"\n{Back.grey_50}{Fore.dark_red_1}{'-'*(os.get_terminal_size().columns-(len(Fore.dark_red_1)+(len(Fore.grey_50)*2)+len(Style.reset)))} Stop {Style.reset}"):
766
+ def std_colorize(m,n,c,start=f"[DB]{Back.grey_11}{Fore.pale_turquoise_1} Start {'*'*(os.get_terminal_size().columns-(len(Fore.pale_turquoise_1)+(len(Back.grey_11)*2)+len(Style.reset)))}{Style.reset}\n",end=f"\n{Back.grey_11}{Fore.light_red}{'-'*(os.get_terminal_size().columns-(len(Fore.light_red)+(len(Back.grey_11)*2)+len(Style.reset)))} Stop {Style.reset}"):
767
767
  if ((n % 2) != 0) and n > 0:
768
768
  msg=f'{start}{Fore.cyan}{n}/{Fore.light_yellow}{n+1}{Fore.light_red} of {c} {Fore.dark_goldenrod}{m}{Style.reset}{end}'
769
769
  else:
@@ -4535,6 +4535,7 @@ class HistoryUi:
4535
4535
  {Fore.light_steel_blue}cmds are order ascending and grouped by cmd to reduce output to screen with too many results{Style.reset}
4536
4536
  {Fore.dark_goldenrod}select,slct,s,use,u{Fore.green_yellow} - select a cmd from history to use{Style.reset}
4537
4537
  {Fore.dark_goldenrod}rm last,rm,r,del{Fore.green_yellow} - delete a cmd from history{Style.reset}
4538
+ {Fore.dark_goldenrod}'rm last ngp','rmngp','rngp','delngp' - {Fore.light_yellow}delete a cmd from history showing everything{Style.reset}
4538
4539
  {Fore.dark_goldenrod}show,sa,show all{Fore.green_yellow} - show all history{Style.reset}
4539
4540
  {Fore.dark_goldenrod}show_ngb,sa_ngb,show allngb{Fore.green_yellow} - show all history without group by cmd{Style.reset}
4540
4541
  {Fore.dark_goldenrod}ca,clear all,clear_all{Fore.green_yellow} - clear all cmds from PromptHistory{Style.reset}
@@ -4554,14 +4555,16 @@ class HistoryUi:
4554
4555
  self.fixtable()
4555
4556
  elif doWhat in ['select','slct','s','use','u']:
4556
4557
  with Session(ENGINE) as session:
4557
- results=session.query(PH).order_by(PH.dtoe.asc()).group_by(PH.cmd).all()
4558
+ results=session.query(PH).group_by(PH.cmd)
4559
+ results=orderQuery(results,PH.dtoe,inverse=True)
4560
+ results=results.all()
4558
4561
  ct=len(results)
4559
4562
  if ct < 1:
4560
4563
  print("Nothing in History!")
4561
4564
  continue
4562
4565
  for num,i in enumerate(results):
4563
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}'''
4564
- print(msg)
4566
+ msg=f'''{i.cmd}|{i.dtoe}'''
4567
+ print(std_colorize(msg,num,ct))
4565
4568
  which=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} Use which {Fore.light_green}command?{Fore.light_yellow}",helpText=master_help,data="integer")
4566
4569
  if which in [None,]:
4567
4570
  continue
@@ -4574,14 +4577,51 @@ class HistoryUi:
4574
4577
  print(e)
4575
4578
  elif doWhat in ['rm last','rm','r','del']:
4576
4579
  with Session(ENGINE) as session:
4577
- results=session.query(PH).order_by(PH.dtoe.asc()).group_by(PH.cmd).all()
4580
+ results=session.query(PH).group_by(PH.cmd)
4581
+ results=orderQuery(results,PH.dtoe,inverse=True)
4582
+ results=results.all()
4578
4583
  ct=len(results)
4579
4584
  if ct < 1:
4580
4585
  print("Nothing in History!")
4581
4586
  continue
4582
4587
  for num,i in enumerate(results):
4583
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}'''
4584
- print(msg)
4588
+ msg=f'''{i.cmd}|{i.dtoe}'''
4589
+ print(std_colorize(msg,num,ct))
4590
+ which=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} Delete which {Fore.light_green}command?{Fore.light_yellow}",helpText=master_help,data="integer")
4591
+ if which in [None,]:
4592
+ continue
4593
+ elif which in ['d',]:
4594
+ continue
4595
+ else:
4596
+ try:
4597
+ if which < 0:
4598
+ index=which*-1
4599
+ index-=1
4600
+ rmall=session.query(PH).filter(PH.cmd==results[index].cmd).all()
4601
+ for num,i in enumerate(rmall):
4602
+ session.delete(i)
4603
+ if num%1000==0:
4604
+ session.commit()
4605
+ session.commit()
4606
+ else:
4607
+ session.delete(results[which])
4608
+ session.commit()
4609
+ session.flush()
4610
+ self.cmd=None
4611
+ except Exception as e:
4612
+ print(e)
4613
+ elif doWhat in ['rm last ngp','rmngp','rngp','delngp']:
4614
+ with Session(ENGINE) as session:
4615
+ results=session.query(PH)
4616
+ results=orderQuery(results,PH.dtoe,inverse=True)
4617
+ results=results.all()
4618
+ ct=len(results)
4619
+ if ct < 1:
4620
+ print("Nothing in History!")
4621
+ continue
4622
+ for num,i in enumerate(results):
4623
+ msg=f'''{i.cmd}|{i.dtoe}'''
4624
+ print(std_colorize(msg,num,ct))
4585
4625
  which=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} Delete which {Fore.light_green}command?{Fore.light_yellow}",helpText=master_help,data="integer")
4586
4626
  if which in [None,]:
4587
4627
  continue
@@ -4607,24 +4647,28 @@ class HistoryUi:
4607
4647
  print(e)
4608
4648
  elif doWhat in ['show','sa','show all']:
4609
4649
  with Session(ENGINE) as session:
4610
- results=session.query(PH).order_by(PH.dtoe.asc()).group_by(PH.cmd).all()
4650
+ results=session.query(PH).group_by(PH.cmd)
4651
+ results=orderQuery(results,PH.dtoe,inverse=True)
4652
+ results=results.all()
4611
4653
  ct=len(results)
4612
4654
  if ct < 1:
4613
4655
  print("Nothing in History!")
4614
4656
  continue
4615
4657
  for num,i in enumerate(results):
4616
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}|{i.dtoe+timedelta(seconds=i.ageLimit)}'''
4617
- print(msg)
4658
+ msg=f'''{i.cmd}|{i.dtoe}|{i.dtoe+timedelta(seconds=i.ageLimit)}'''
4659
+ print(std_colorize(msg,num,ct))
4618
4660
  elif doWhat in ['show_ngb','sa_ngb','show all ngb']:
4619
4661
  with Session(ENGINE) as session:
4620
- results=session.query(PH).order_by(PH.dtoe.asc()).all()
4662
+ results=session.query(PH)
4663
+ results=orderQuery(results,PH.dtoe,inverse=True)
4664
+ results=results.all()
4621
4665
  ct=len(results)
4622
4666
  if ct < 1:
4623
4667
  print("Nothing in History!")
4624
4668
  continue
4625
4669
  for num,i in enumerate(results):
4626
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}|{i.dtoe+timedelta(seconds=i.ageLimit)}'''
4627
- print(msg)
4670
+ msg=f'''{i.cmd}|{i.dtoe}|{i.dtoe+timedelta(seconds=i.ageLimit)}'''
4671
+ print(std_colorize(msg,num,ct))
4628
4672
  elif doWhat.lower() in ['co','clean old','clean_old']:
4629
4673
  self.clean_old()
4630
4674
  elif doWhat in ['ca','clear all','clear_all']:
@@ -4640,7 +4684,10 @@ class HistoryUi:
4640
4684
  search=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} What cmd are you looking for?",helpText="what was in the command text",data="string")
4641
4685
  if search in [None,'d']:
4642
4686
  continue
4643
- results=session.query(PH).order_by(PH.dtoe.asc()).group_by(PH.cmd).filter(PH.cmd.icontains(search)).all()
4687
+ results=session.query(PH).group_by(PH.cmd)
4688
+ results=orderQuery(results,PH.dtoe,inverse=True)
4689
+ results=results.filter(PH.cmd.icontains(search))
4690
+ results=results.all()
4644
4691
  ct=len(results)
4645
4692
  if ct < 1:
4646
4693
  print("Nothing in History!")
@@ -4649,8 +4696,8 @@ class HistoryUi:
4649
4696
  mode='PromptHistory'
4650
4697
  h=f'{Prompt.header.format(Fore=Fore,mode=mode,fieldname=fieldname,Style=Style)}'
4651
4698
  for num,i in enumerate(results):
4652
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}'''
4653
- print(msg)
4699
+ msg=f'''{i.cmd}|{i.dtoe}'''
4700
+ print(std_colorize(msg,num,ct))
4654
4701
  which=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} Use which {Fore.light_green}command?{Fore.light_yellow}",helpText=master_help,data="integer")
4655
4702
  if which in [None,]:
4656
4703
  continue
@@ -4669,14 +4716,16 @@ class HistoryUi:
4669
4716
  search=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} What cmd are you looking for?",helpText="what was in the command text; this will only remove the last used, if there is another inn history it will need to be removed as well, or just use ca",data="string",noHistory=False)
4670
4717
  if search in [None,'d']:
4671
4718
  continue
4672
- results=session.query(PH).order_by(PH.dtoe.asc()).group_by(PH.cmd).filter(PH.cmd.icontains(search)).all()
4719
+ results=session.query(PH).group_by(PH.cmd)
4720
+ results=orderQuery(results,PH.dtoe,inverse=True)
4721
+ results=results.filter(PH.cmd.icontains(search)).all()
4673
4722
  ct=len(results)
4674
4723
  if ct < 1:
4675
4724
  print("Nothing in History!")
4676
4725
  continue
4677
4726
  for num,i in enumerate(results):
4678
- msg=f'''{Fore.light_green}{num}{Fore.light_magenta}/{num+1} of {Fore.orange_red_1}{ct}{Style.reset} -> {i.cmd}|{i.dtoe}'''
4679
- print(msg)
4727
+ msg=f'''{i.cmd}|{i.dtoe}'''
4728
+ print(std_colorize(msg,num,ct))
4680
4729
  which=Prompt.__init2__(self,func=FormBuilderMkText,ptext=f"{h} Delete which {Fore.light_green}command?{Fore.light_yellow}",helpText=master_help,data="integer")
4681
4730
  if which in [None,]:
4682
4731
  continue
@@ -160,6 +160,13 @@ class HealthLogUi:
160
160
  return
161
161
  if 'LongActingInsulinName' in useColumns or 'ShortActingInsulinName' in useColumns:
162
162
  def searchNames(code):
163
+ if code is None:
164
+ if 'LongActingInsulinName' in useColumns:
165
+ return 'Long Acting Insuline Unspecificied - see comments'
166
+ elif 'ShortActingInsulinName' in useColumns:
167
+ return 'Short Acting Insulin Unspecificied - see comments'
168
+ else:
169
+ return 'see comments'
163
170
  with Session(ENGINE) as session:
164
171
  query=session.query(Entry)
165
172
  filters=[
@@ -174,6 +181,7 @@ class HealthLogUi:
174
181
  print(msg)
175
182
  return code
176
183
  htext=[]
184
+ print(f"{Fore.orange_red_1}Getting Results({Fore.light_green}{ct}{Fore.orange_red_1}) for Display!{Style.reset}")
177
185
  for num,i in enumerate(results):
178
186
  msg=f"{Fore.light_cyan}{num}/{Fore.light_magenta}{num+1} of {Fore.light_red}{ct} {Fore.medium_violet_red} -> {i.seeShort()}"
179
187
  htext.append(msg)
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.536'
1
+ VERSION='0.0.538'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.536
3
+ Version: 0.0.538
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=Lt2reA6xchq3U7Y08DvkrHboZ25i1ts7X2E9gSIwcVg,41101
7
7
  radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
8
- radboy/__init__.py,sha256=HMmMdqnHyQRECgm7LLjt9NT5BFZq9ftzm1gweiCwT5Q,17
8
+ radboy/__init__.py,sha256=mqsjW9lPulzN_YJJyctppYQ4rUnaWCk7MuIHEwA3bTc,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
@@ -91,7 +91,7 @@ radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,
91
91
  radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
92
92
  radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
93
93
  radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
94
- radboy/DB/db.py,sha256=iJbK-tSBb9l6lUiggfaU5MwrflMV1uqVmzDsTKYfgSA,247726
94
+ radboy/DB/db.py,sha256=b47WCPLuTztsyeqhL3tguCvgg0ngRCygAe1zBBHNmzA,249742
95
95
  radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
96
96
  radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
97
97
  radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
@@ -126,7 +126,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
126
126
  radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
127
127
  radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
128
128
  radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
129
- radboy/DB/__pycache__/db.cpython-313.pyc,sha256=ynMtzt_Ou0tSLO9RBVFAjL_8f83F_tp8KWRu1HOmpEM,393706
129
+ radboy/DB/__pycache__/db.cpython-313.pyc,sha256=FHc5BCSxQOBWuGWGR2Pza2Q_xFE1EazGt3ix8NQHzq0,394073
130
130
  radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
131
131
  radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
132
132
  radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
@@ -209,10 +209,10 @@ radboy/GeoTools/__pycache__/GeoClass.cpython-313.pyc,sha256=eZ6hpLKoic1XCb7BKKg-
209
209
  radboy/GeoTools/__pycache__/OSMClass.cpython-312.pyc,sha256=5RoT8_wiI8R7yb_B9FWIC7mALdGNoqyWtkzsjM2pbh0,40387
210
210
  radboy/GeoTools/__pycache__/__init__.cpython-312.pyc,sha256=Y7Xtrzwm44-xuY_4NK8aDjYfVmXIzUFWOyexJu9le8A,1238
211
211
  radboy/GeoTools/__pycache__/__init__.cpython-313.pyc,sha256=-bk9eEIxWZgHYZHtNJbrpubDRWkbdYNkGr5J7sVhyIE,1238
212
- radboy/HealthLog/HealthLog.py,sha256=coXbXDOyaaQ_QD5HQFnSgzJSc-9Tz2GViAeKDO7MHO4,29209
212
+ radboy/HealthLog/HealthLog.py,sha256=2Yir-gjhCLp0JT4Df0akgc8fbLPFoITjGeJ1JwQyoLU,29623
213
213
  radboy/HealthLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
214
  radboy/HealthLog/__pycache__/HealthLog.cpython-312.pyc,sha256=hTo4o7jo9L2yqPZgzuKUw_kon_PVcCuTRguELTuLrIo,27946
215
- radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=sEbok43kdRXa7dSOUeyz0MK490xQwhY0pNbBHF2oFG8,46867
215
+ radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=fmkRYVTYm1Lhc_ygjcDQjaLSSUOckRQf7kFtFBhgV6Y,47337
216
216
  radboy/HealthLog/__pycache__/__init__.cpython-312.pyc,sha256=yZrYKBk31pGSjCRqmqzpX409iw-muC1zsNO2ObqkGlY,272
217
217
  radboy/HealthLog/__pycache__/__init__.cpython-313.pyc,sha256=cqdZbEJKq9XVoVqDAwsW0pwwBBGSerJNWGlST3YVR3g,151
218
218
  radboy/InListRestore/ILR.py,sha256=s8fbbHLKQSVJX1VaeyGE-vdIUGBEbOPX29kRIG2j2WY,16847
@@ -397,7 +397,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
397
397
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
398
398
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
399
399
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
400
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=A1mHYQXBlchxIYynC-38IY1YfkGI5Uia8OP4qWYFJ4E,165
400
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=QP7ngqspCJBNWX_hgEameGb7blzqKtMZZchAx9aJxuQ,165
401
401
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
402
402
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
403
403
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -422,7 +422,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
422
422
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
423
423
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
424
424
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
425
- radboy-0.0.536.dist-info/METADATA,sha256=f2B_tVaTChH1-Ii6Ro-dbGujoHvcZb2TCyT0A8ZwhxY,1615
426
- radboy-0.0.536.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
427
- radboy-0.0.536.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
428
- radboy-0.0.536.dist-info/RECORD,,
425
+ radboy-0.0.538.dist-info/METADATA,sha256=Xz4cSRkTuhVHMqvf9NMuP91JvVUvUT-GRpzlUxi23xU,1615
426
+ radboy-0.0.538.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
427
+ radboy-0.0.538.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
428
+ radboy-0.0.538.dist-info/RECORD,,