radboy 0.0.369__py3-none-any.whl → 0.0.371__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/Compare/Compare.py CHANGED
@@ -1,6 +1,10 @@
1
1
  from . import *
2
2
 
3
3
  class CompareUI:
4
+ def colorize(self,num,ct,msg):
5
+ rplc=f"{Fore.deep_sky_blue_1}**({num}/{Fore.spring_green_2a}{num+1} of {Fore.dark_goldenrod}{ct})** "
6
+ msg=msg.replace("\n",f"\n\t - {rplc}")
7
+ return f"{rplc} --/ {Fore.light_steel_blue}{msg}{Style.reset}\n"
4
8
  '''Compare qty and price between two products.'''
5
9
  def __init__(self):
6
10
  data={
@@ -21,26 +25,53 @@ class CompareUI:
21
25
  'default':1.0,
22
26
  }
23
27
  }
28
+ lines=[]
24
29
  fd=FormBuilder(data=data)
25
30
  if fd:
26
31
  ct=len(fd)
27
32
  for num,k in enumerate(fd):
28
33
  msg=f"{Fore.cyan}{num}/{Fore.light_steel_blue}{num+1} of {Fore.light_green}{ct} -> {Fore.dark_goldenrod}{k}:{type(fd[k])} = {Fore.light_magenta}{fd[k]}{Style.reset}"
29
- print(msg)
34
+ lines.append(msg)
35
+
30
36
  price_change=(fd.get('newPrice')-fd.get('oldPrice'))/fd.get('oldPrice')*100
31
37
  price_change=round(price_change,3)
32
- print(f'{Fore.light_red}Price Old{Fore.light_steel_blue} -> {Fore.light_green}Price New %:{Fore.green_yellow}{price_change}{Style.reset}')
33
-
38
+ formula_price_change=f'''{Fore.light_green}({Fore.spring_green_3a}({Fore.light_steel_blue}newPrice[$]({fd.get('newPrice'):.3f}){Fore.deep_sky_blue_2}- {Fore.light_yellow}oldPrice[$]({fd.get('oldPrice'):.3f}){Fore.spring_green_3a}){Fore.deep_sky_blue_2}/{Fore.light_yellow}oldPrice[$]({fd.get('oldPrice'):.3f}){Fore.light_green}){Fore.deep_sky_blue_2}*{Fore.green_yellow}100{Fore.deep_sky_blue_2}={Fore.light_red}PriceChangePercent[%]({price_change:.3f})
39
+ {Fore.orange_red_1}New price is % different of Old Price{Style.reset}
40
+ {Fore.light_red}Price Old{Fore.light_steel_blue} ->/To {Fore.light_green}Price New %:{Fore.green_yellow}{price_change}{Style.reset}'''
41
+ #print(formula_price_change)
42
+ lines.append(formula_price_change)
43
+
34
44
  qty_change=((fd.get('newQty')-fd.get('oldQty'))/fd.get('oldQty'))*100
35
45
  qty_change=round(qty_change,3)
36
- print(f'{Fore.light_red}Old Qty{Fore.light_steel_blue} -> {Fore.light_green}New Qty %:{Fore.green_yellow}{qty_change}{Style.reset}')
37
-
38
- print(f'{Fore.cyan}Price Per {Fore.light_magenta}Unit')
46
+ formula_qty_change=f'''{Fore.green}({Fore.light_green}({Fore.light_magenta}newQty({fd.get('newQty')}){Fore.deep_sky_blue_2}-{Fore.light_yellow}oldQty({fd.get('oldQty')}{Fore.light_green}){Fore.deep_sky_blue_2}/{Fore.light_yellow}oldQty({fd.get('oldQty')}){Fore.green}){Fore.deep_sky_blue_2}*{Fore.cyan}100{Fore.deep_sky_blue_2}={Fore.green_yellow}QtyChange({qty_change}){Style.reset}
47
+ {Fore.orange_red_1}New Qty is Percent(%) different of Old Qty{Style.reset}
48
+ {Fore.light_red}Old Qty{Fore.light_steel_blue} -> {Fore.light_green}New Qty Percent[%]:{Fore.green_yellow}{qty_change}{Style.reset}'''
49
+ #print(formula_qty_change)
50
+ #print(f'{Fore.cyan}{Style.bold}{Style.underline}Price Per Unit{Style.reset}')
51
+ lines.append(formula_qty_change)
52
+
39
53
  ppun=round(fd.get('newPrice')/fd.get('newQty'),3)
40
54
  ppuo=round(fd.get('oldPrice')/fd.get('oldQty'),3)
41
- print(f'{Fore.cyan}\t- Old Price Per Unit:{Fore.light_magenta}',ppuo,f"{Style.reset}")
42
- print(f'{Fore.cyan}\t- New Price Per Unit:{Fore.light_magenta}',ppun,f"{Style.reset}")
55
+ formula_old_price_per_unit=f"""{Fore.light_magenta}oldPricePerQty[$[$]]({fd.get('oldPrice')}){Fore.deep_sky_blue_2}/oldQty({Fore.magenta}{fd.get('oldQty')}){Fore.deep_sky_blue_2}={Fore.green_yellow}oldPricePerUnit[$]({ppuo})
56
+ {Fore.cyan}Old Price Per Unit:{Fore.light_magenta}{ppuo}{Style.reset}"""
57
+ #print(formula_old_price_per_unit)
58
+ formula_new_price_per_unit=f"""{Fore.light_magenta}newPricePerQty[$[$]]({fd.get('newPrice')}){Fore.deep_sky_blue_2}/newQty({Fore.magenta}{fd.get('newQty')}){Fore.deep_sky_blue_2}={Fore.green_yellow}newPricePerUnit[$]({ppun})
59
+ {Fore.cyan}New Price Per Unit:{Fore.light_magenta}{ppun}{Style.reset}"""
60
+ #print(formula_new_price_per_unit)
61
+
43
62
  ch=(ppun-ppuo)/ppuo*100
44
63
  ch=round(ch,3)
45
- print(f'{Fore.medium_violet_red}Percent({Fore.red}%{Fore.medium_violet_red}) Price Per Unit Change: {Fore.dark_goldenrod}{ch}{Style.reset}')
46
- print(f'{Fore.light_steel_blue}Price Per Unit Difference betweent Old({Fore.light_red}{ppuo}{Fore.light_steel_blue}) and New({Fore.light_red}{ppun}{Fore.light_steel_blue}): {Fore.magenta}{round(ppun-ppuo,2)}{Style.reset}')
64
+ lines.append(formula_old_price_per_unit)
65
+ lines.append(formula_new_price_per_unit)
66
+
67
+ formula_price_per_unit_change=f"""{Fore.light_magenta}PercentPricePerUnitChange({ch}){Fore.deep_sky_blue_2}[%]={Fore.light_green}({Fore.green_yellow}newPricePerUnit[$]({ppun}){Fore.deep_sky_blue_2}-{Fore.dark_goldenrod}oldPricePerUnit[$]({ppuo}){Fore.light_green}){Fore.deep_sky_blue_2}/{Fore.dark_goldenrod}oldPricePerUnit[$]({ppuo}){Fore.deep_sky_blue_2}*{Fore.cyan}100
68
+ {Fore.medium_violet_red}Percent{Fore.red}{Fore.medium_violet_red} Price Per Unit Change[%]: {Fore.dark_goldenrod}{ch}{Style.reset}"""
69
+ lines.append(formula_price_per_unit_change)
70
+ #print(formula_price_per_unit_change)
71
+ formula_price_per_unit_difference=f"""{Fore.light_steel_blue}Price Per Unit Difference betweent Old[$]({Fore.light_red}{ppuo}{Fore.light_steel_blue}) and New[$]({Fore.light_red}{ppun}{Fore.light_steel_blue}): {Fore.magenta}{round(ppun-ppuo,2)}{Style.reset}"""
72
+ #print(formula_price_per_unit_difference)
73
+ lines.append(formula_price_per_unit_difference)
74
+
75
+ ct=len(lines)
76
+ for num,line in enumerate(lines):
77
+ print(self.colorize(num,ct,line))
@@ -17,6 +17,7 @@ from radboy.DB.PayDay import EstimatedPayCalendar,setup
17
17
  from radboy.DB.CoinCombo import *
18
18
  from radboy.DayLog.Wavelength4Freq import HoleSize
19
19
  from radboy.DayLog.TaxiFares import TaxiFare
20
+ from radboy.Compare.Compare import *
20
21
 
21
22
 
22
23
  class DayLogger:
@@ -64,6 +65,7 @@ fxtbl - update table with correct columns
64
65
  'avg field graph','afg' - create a graph of avg field
65
66
  'fft','fast fourier transform' - create fast fourier transform of the data and graph data
66
67
  'restore bckp','rfb' - restore DayLogs from backup file
68
+ {Fore.light_magenta}"compare product","p1==p2?","compare"{Fore.medium_violet_red}compare two products qty and price{Style.reset}
67
69
  {Fore.light_magenta}Banking/{Fore.medium_violet_red}Petty-Cash{Style.reset}
68
70
  {Fore.light_sea_green}'bnc','21','banking and cashpool','banking_and_cashpool','bank','piggy-bank' {Fore.light_steel_blue}- Banking and CashPool tools{Style.reset}
69
71
  {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}
@@ -1875,6 +1877,8 @@ fxtbl - update table with correct columns
1875
1877
  HoleSize()
1876
1878
  elif what.lower() in ['taxi fare','calc taxi fare','ctf','taxi']:
1877
1879
  TaxiFare()
1880
+ elif what.lower() in [f"compare product","p1==p2?","compare"]:
1881
+ CompareUI()
1878
1882
 
1879
1883
 
1880
1884
 
radboy/TasksMode/Tasks.py CHANGED
@@ -4400,7 +4400,7 @@ where:
4400
4400
  'exec':lambda self=self: self.evaluateFormula(),
4401
4401
  }
4402
4402
  self.options["compare product"]={
4403
- 'cmds':["#"+str(count),f"compare product","p1==p2?"],
4403
+ 'cmds':["#"+str(count),f"compare product","p1==p2?","compare"],
4404
4404
  'desc':f'compare two products qty and price',
4405
4405
  'exec':lambda self=self: CompareUI(),
4406
4406
  }
radboy/__init__.py CHANGED
@@ -1 +1 @@
1
- VERSION='0.0.369'
1
+ VERSION='0.0.371'
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: radboy
3
- Version: 0.0.369
3
+ Version: 0.0.371
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=oOTqErX6iOBHZ3Y5ZrMoz3j4lbujlKRibgyDqbpH4Qc,17
8
+ radboy/__init__.py,sha256=OR2o8O53uczlWhy8ZRPGPpieHBhTaEtsvFQtrdq8-Uw,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
@@ -51,10 +51,10 @@ radboy/Comm/__pycache__/RxTx.cpython-312.pyc,sha256=S_1Kf5_EwO1X4blYwIMPlrBs_hD8
51
51
  radboy/Comm/__pycache__/RxTx.cpython-313.pyc,sha256=3N9SXi-jBtf6liyYI0D1m1dpBoLCUUtuy7uDM6L958Q,34985
52
52
  radboy/Comm/__pycache__/__init__.cpython-312.pyc,sha256=jxT5gYVdAKG2X7WED7LoHwmiHsC8BxOtz0YxIdtsBtw,267
53
53
  radboy/Comm/__pycache__/__init__.cpython-313.pyc,sha256=-hKMf6R71_1VkbAEpQ4HJOJF0RUxDSpuUHS0kXShyIw,146
54
- radboy/Compare/Compare.py,sha256=YbhO3o1cbhxjMDXC8TZgqAzObG9K4u_O-fqd-fjAOeA,1865
54
+ radboy/Compare/Compare.py,sha256=flKcx9MRo872NviUaNQC7VqPujphuhpmVBskdvV-dew,4539
55
55
  radboy/Compare/__init__.py,sha256=9-ltkiSIu7k_397e3_eBETX88CxEwzEBA-HDixi59o4,903
56
56
  radboy/Compare/__pycache__/Compare.cpython-312.pyc,sha256=YHZHBuJKjEGi207YOgzOW2mf3yked9uVabjfqkcnq1M,3618
57
- radboy/Compare/__pycache__/Compare.cpython-313.pyc,sha256=tZg4pbkijjikzOIhT6dKkN-airxAHFJocARTRbiigUk,4482
57
+ radboy/Compare/__pycache__/Compare.cpython-313.pyc,sha256=rbXXG5b2ttvE2sXZ0IH5S7SFQZje8Gx3XwGYpNSFl98,11310
58
58
  radboy/Compare/__pycache__/__init__.cpython-312.pyc,sha256=P6KQOn8z72dh3NVqP87O5_uywlgovq_Ywon6kO0H5T8,826
59
59
  radboy/Compare/__pycache__/__init__.cpython-313.pyc,sha256=xzt3OW5tbgI8dfDyH-LO9MJCecIUv1R4o89EcA4tCnI,826
60
60
  radboy/Conversion/Conversion.py,sha256=o5jQoFvO5z0hxPkAqMZxUmd4VsvhuO519A2HcLuN3_I,2331
@@ -134,13 +134,13 @@ 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=HDdvea2deDzrWsYx5zUg2F7kp7oBIYz4ycB6Zt2AtFw,98301
137
+ radboy/DayLog/DayLogger.py,sha256=cs_8XXO0yPbUJEh2V_22ev8ZqhAIODgJatuacGZz_cw,98586
138
138
  radboy/DayLog/TaxiFares.py,sha256=3slYjtBcTnRe8IeneJ-_iZJJ3E7alW09f6GWYXPxhOo,10882
139
139
  radboy/DayLog/Wavelength4Freq.py,sha256=MfN2EATrN3bbEDgP1qOPjV1Fk8sVnkc_4tgX6sKfSE0,2054
140
140
  radboy/DayLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
141
  radboy/DayLog/__pycache__/DayLogger.cpython-311.pyc,sha256=TmRnRZHp5tMTokSEB8hWTxnasi-iJdh6TmYcb_nXGoY,29557
142
142
  radboy/DayLog/__pycache__/DayLogger.cpython-312.pyc,sha256=bfDCQZrIhgQYzoUle7roicRE_bhGPYZtIbCRIiDrsxU,68240
143
- radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=fnJeCHsH-mrwzFaWJAmDgMISOXyWqdoGX-nUextLsQk,146657
143
+ radboy/DayLog/__pycache__/DayLogger.cpython-313.pyc,sha256=9JJ5eSMw7twg7Px0Lf_5dDZRnRLCgic3pkHaqkduHr8,147105
144
144
  radboy/DayLog/__pycache__/__init__.cpython-311.pyc,sha256=Z5Y4DdVF77LZf6-Of92MDGFdi-IXik1ASQd4AdLNNfQ,231
145
145
  radboy/DayLog/__pycache__/__init__.cpython-312.pyc,sha256=lP_GHzSPt5JTrT1jLWiRMFGPmSdJYBn4eRV__OxgJ6s,269
146
146
  radboy/DayLog/__pycache__/__init__.cpython-313.pyc,sha256=UQw5v4r7yismC9qcqP0dEme6h-lawbOA5pXYpkqUwFk,148
@@ -330,7 +330,7 @@ radboy/SystemSettings/__pycache__/__init__.cpython-312.pyc,sha256=aIzp4Po0t8EhSA
330
330
  radboy/SystemSettings/__pycache__/__init__.cpython-313.pyc,sha256=QFDuoidxMWsGVLsy5lN-rDs6TP8nKJ4yyCyiamNOhwo,156
331
331
  radboy/TasksMode/ReFormula.py,sha256=REDRJYub-OEOE6g14oRQOLOQwv8pHqVJy4NQk3CCM90,2255
332
332
  radboy/TasksMode/SetEntryNEU.py,sha256=3nUNDUNyxq4zeMtmUQ7aS1o23P7KhDIMdUPNqPnYbRk,17343
333
- radboy/TasksMode/Tasks.py,sha256=S6KZPx3mdnfewDyflpb6UqrRSzhptp2xkWu8plGFrAU,305097
333
+ radboy/TasksMode/Tasks.py,sha256=8KnL4TEvQCWRwrqqv8g9JR9cHUpBjQA7olFUmHn-3Ko,305107
334
334
  radboy/TasksMode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
335
  radboy/TasksMode/__pycache__/ReFormula.cpython-311.pyc,sha256=QEG3PwVw-8HTd_Mf9XbVcxU56F1fC9yBqWXYPLC39DU,4865
336
336
  radboy/TasksMode/__pycache__/ReFormula.cpython-312.pyc,sha256=aX7BWm2PPjCTnxsbGUitR-2h9hq4AjaBiHMrUXvIl0Y,3967
@@ -339,7 +339,7 @@ radboy/TasksMode/__pycache__/SetEntryNEU.cpython-312.pyc,sha256=pCdFj61aPKkHL6Sv
339
339
  radboy/TasksMode/__pycache__/SetEntryNEU.cpython-313.pyc,sha256=leIelDzPrZE_YgKs0B99osmhyENYtYgi3ErgS2XqSPs,20088
340
340
  radboy/TasksMode/__pycache__/Tasks.cpython-311.pyc,sha256=6QOTJnLiXSKdF81hkhy3vyrz49PPhS20s5_0X52g3Hw,131120
341
341
  radboy/TasksMode/__pycache__/Tasks.cpython-312.pyc,sha256=hyJwdaYaaRLdcrNxgg36diJ5iijX5_3I0UAORsj-6LU,310295
342
- radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=8oDXECFzR5h_HHLu9e_kNpwiweDfnLrTpS65FcU2920,374234
342
+ radboy/TasksMode/__pycache__/Tasks.cpython-313.pyc,sha256=qKt80satgMCPImhJSmQprZuyBp1B-OFMz5hNvUJVoK0,374249
343
343
  radboy/TasksMode/__pycache__/__init__.cpython-311.pyc,sha256=PKV1JbihEacm639b53bZozRQvcllSkjGP3q8STVMxF4,234
344
344
  radboy/TasksMode/__pycache__/__init__.cpython-312.pyc,sha256=ERgnEvRMiGSecWp1BpNzLdSq_SdKw7GvFWUvUM7bLVw,272
345
345
  radboy/TasksMode/__pycache__/__init__.cpython-313.pyc,sha256=lvsTxukyvGKB3C0rdF9dQi_bvVh6ceDVINfwcuIsd0s,151
@@ -386,7 +386,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
386
386
  radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
387
387
  radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
388
388
  radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
389
- radboy/__pycache__/__init__.cpython-313.pyc,sha256=p6mPRiq2rm7EP1S-RfCThoWyQSRepxc2IBtDD_QbPM4,165
389
+ radboy/__pycache__/__init__.cpython-313.pyc,sha256=9UiuOe5wIIG6Kf2w3EJ_vxejyhYQgGbBt0y33178Qhw,165
390
390
  radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
391
391
  radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
392
392
  radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
@@ -411,7 +411,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
411
411
  radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
412
412
  radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
413
413
  radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
414
- radboy-0.0.369.dist-info/METADATA,sha256=9ozFL-Qrs3tLXbZvHn-3b16BwjZein1fWArM3MkIU7o,794
415
- radboy-0.0.369.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
- radboy-0.0.369.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
- radboy-0.0.369.dist-info/RECORD,,
414
+ radboy-0.0.371.dist-info/METADATA,sha256=pJrl510mg-xvI2oXlTvgXBIaxdo6cd3K903DspHJmJ4,794
415
+ radboy-0.0.371.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
416
+ radboy-0.0.371.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
417
+ radboy-0.0.371.dist-info/RECORD,,