radboy 0.0.737__py3-none-any.whl → 0.0.739__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/__pycache__/db.cpython-313.pyc +0 -0
- radboy/DB/db.py +1 -0
- radboy/HealthLog/HealthLog.py +19 -15
- radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc +0 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.737.dist-info → radboy-0.0.739.dist-info}/METADATA +1 -1
- {radboy-0.0.737.dist-info → radboy-0.0.739.dist-info}/RECORD +10 -10
- {radboy-0.0.737.dist-info → radboy-0.0.739.dist-info}/WHEEL +0 -0
- {radboy-0.0.737.dist-info → radboy-0.0.739.dist-info}/top_level.txt +0 -0
|
Binary file
|
radboy/DB/db.py
CHANGED
|
@@ -5222,6 +5222,7 @@ class HealthLog(BASE,Template):
|
|
|
5222
5222
|
def __init__(self,**kwargs):
|
|
5223
5223
|
if 'DTOE' not in kwargs:
|
|
5224
5224
|
self.DTOE=datetime.now()
|
|
5225
|
+
|
|
5225
5226
|
for k in kwargs.keys():
|
|
5226
5227
|
if k in [s.name for s in self.__table__.columns]:
|
|
5227
5228
|
setattr(self,k,kwargs.get(k))
|
radboy/HealthLog/HealthLog.py
CHANGED
|
@@ -39,10 +39,10 @@ class HealthLogUi:
|
|
|
39
39
|
lai=session.query(HealthLog).filter(and_(HealthLog.LongActingInsulinName!=None,HealthLog.LongActingInsulinTaken!=None))
|
|
40
40
|
lai=orderQuery(lai,HealthLog.DTOE,inverse=True).first()
|
|
41
41
|
if lai:
|
|
42
|
-
print(f"Long Acting Insulin : HowLongAgo({datetime.now()-lai.DTOE})")
|
|
42
|
+
print(f"{Fore.green_3b}Long Acting Insulin : HowLongAgo({Fore.sea_green_2}{datetime.now()-lai.DTOE}){Style.reset}")
|
|
43
43
|
num=0
|
|
44
44
|
view=[]
|
|
45
|
-
view.append(f"Name: '{lai.LongActingInsulinName}' Taken: {lai.LongActingInsulinTaken} Unit: {lai.LongActingInsulinUnitName} HLID: {lai.HLID} DTOE:{lai.DTOE}")
|
|
45
|
+
view.append(f"{Fore.green_3b}Name: {Fore.sea_green_2}'{lai.LongActingInsulinName}' {Fore.green_3b}Taken: {Fore.sea_green_2}{lai.LongActingInsulinTaken} {Fore.green_3b}Unit: {Fore.sea_green_2}{lai.LongActingInsulinUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{lai.HLID} {Fore.green_3b}DTOE:{Fore.sea_green_2}{lai.DTOE}{Style.reset}")
|
|
46
46
|
msg=f"{'|'.join(view)}"
|
|
47
47
|
print(std_colorize(msg,num,ct))
|
|
48
48
|
else:
|
|
@@ -51,10 +51,10 @@ class HealthLogUi:
|
|
|
51
51
|
sai=session.query(HealthLog).filter(and_(HealthLog.ShortActingInsulinName!=None,HealthLog.ShortActingInsulinTaken!=None))
|
|
52
52
|
sai=orderQuery(sai,HealthLog.DTOE,inverse=True).first()
|
|
53
53
|
if sai:
|
|
54
|
-
print(f"Short Acting Insulin : HowLongAgo({datetime.now()-sai.DTOE})")
|
|
54
|
+
print(f"{Fore.green_3b}Short Acting Insulin : {Fore.green_3b}HowLongAgo({Fore.sea_green_2}{datetime.now()-sai.DTOE}){Style.reset}")
|
|
55
55
|
num=1
|
|
56
56
|
view=[]
|
|
57
|
-
view.append(f"Name: '{sai.ShortActingInsulinName}' Taken: {sai.ShortActingInsulinTaken} Unit: {sai.ShortActingInsulinUnitName} HLID: {sai.HLID} DTOE:{sai.DTOE}")
|
|
57
|
+
view.append(f"{Fore.green_3b}Name: {Fore.sea_green_2}'{sai.ShortActingInsulinName}' {Fore.green_3b}Taken: {Fore.sea_green_2}{sai.ShortActingInsulinTaken} {Fore.green_3b}Unit: {Fore.sea_green_2}{sai.ShortActingInsulinUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{sai.HLID} {Fore.green_3b}DTOE:{Fore.sea_green_2}{sai.DTOE}{Style.reset}")
|
|
58
58
|
|
|
59
59
|
msg=f"{'|'.join(view)}"
|
|
60
60
|
print(std_colorize(msg,num,ct))
|
|
@@ -64,7 +64,7 @@ class HealthLogUi:
|
|
|
64
64
|
last_carb=session.query(HealthLog).filter(and_(HealthLog.CarboHydrateIntake!=None,HealthLog.EntryName!=None))
|
|
65
65
|
last_carb=orderQuery(last_carb,HealthLog.DTOE,inverse=True).first()
|
|
66
66
|
if last_carb:
|
|
67
|
-
print(f"CarboHydrateIntake : HowLongAgo({datetime.now()-last_carb.DTOE})")
|
|
67
|
+
print(f"{Fore.green_3b}CarboHydrateIntake : HowLongAgo({Fore.sea_green_2}{datetime.now()-last_carb.DTOE}){Style.reset}")
|
|
68
68
|
num=2
|
|
69
69
|
view=[]
|
|
70
70
|
for x in last_carb.__table__.columns:
|
|
@@ -78,10 +78,10 @@ class HealthLogUi:
|
|
|
78
78
|
drug=session.query(HealthLog).filter(HealthLog.DrugQtyConsumed!=None)
|
|
79
79
|
drug=orderQuery(drug,HealthLog.DTOE,inverse=True).first()
|
|
80
80
|
if drug:
|
|
81
|
-
print(f"Last Drug Dose Taken : HowLongAgo({datetime.now()-drug.DTOE})")
|
|
81
|
+
print(f"{Fore.green_3b}Last Drug Dose Taken : HowLongAgo({Fore.sea_green_2}{datetime.now()-drug.DTOE}){Style.reset}")
|
|
82
82
|
num=3
|
|
83
83
|
view=[]
|
|
84
|
-
view.append(f"Name:{drug.EntryName} Barcode:{drug.EntryBarcode} Drug Name: '{drug.DrugConsumed}' Taken: {lai.DrugQtyConsumed} Unit: {drug.DrugQtyConsumedUnitName} HLID: {lai.HLID} DTOE:{lai.DTOE}")
|
|
84
|
+
view.append(f"{Fore.green_3b}Name:{Fore.sea_green_2}{drug.EntryName} {Fore.green_3b}Barcode:{Fore.sea_green_2}{drug.EntryBarcode} {Fore.green_3b}Drug Name: {Fore.sea_green_2}'{drug.DrugConsumed}' {Fore.green_3b}Taken: {Fore.sea_green_2}{lai.DrugQtyConsumed} {Fore.green_3b}Unit: {Fore.sea_green_2}{drug.DrugQtyConsumedUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{lai.HLID} {Fore.green_3b}DTOE:{Fore.sea_green_2}{lai.DTOE}{Style.reset}")
|
|
85
85
|
msg=f"{'|'.join(view)}"
|
|
86
86
|
print(std_colorize(msg,num,ct))
|
|
87
87
|
else:
|
|
@@ -91,10 +91,10 @@ class HealthLogUi:
|
|
|
91
91
|
glucose=session.query(HealthLog).filter(and_(HealthLog.BloodSugar!=None,))
|
|
92
92
|
glucose=orderQuery(glucose,HealthLog.DTOE,inverse=True).first()
|
|
93
93
|
if glucose:
|
|
94
|
-
print(f"Blood Sugar : HowLongAgo({datetime.now()-glucose.DTOE})")
|
|
94
|
+
print(f"{Fore.green_3b}Blood Sugar : HowLongAgo({Fore.sea_green_2}{datetime.now()-glucose.DTOE})")
|
|
95
95
|
num=0
|
|
96
96
|
view=[]
|
|
97
|
-
view.append(f"Blood Sugar/Glucose No. : {glucose.BloodSugar} Unit:{glucose.BloodSugarUnitName} HLID: {glucose.HLID} DTOE: {glucose.DTOE}")
|
|
97
|
+
view.append(f"{Fore.green_3b}Blood Sugar/Glucose No. : {Fore.sea_green_2}{glucose.BloodSugar} {Fore.green_3b}Unit:{Fore.sea_green_2}{glucose.BloodSugarUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{glucose.HLID} {Fore.green_3b}DTOE: {Fore.sea_green_2}{glucose.DTOE}{Style.reset}")
|
|
98
98
|
|
|
99
99
|
msg=f"{'|'.join(view)}"
|
|
100
100
|
print(std_colorize(msg,num,ct))
|
|
@@ -104,10 +104,10 @@ class HealthLogUi:
|
|
|
104
104
|
height=session.query(HealthLog).filter(and_(HealthLog.Height!=None,))
|
|
105
105
|
height=orderQuery(height,HealthLog.DTOE,inverse=True).first()
|
|
106
106
|
if height:
|
|
107
|
-
print(f"Height : HowLongAgo({datetime.now()-height.DTOE})")
|
|
107
|
+
print(f"{Fore.green_3b}Height : HowLongAgo({Fore.sea_green_2}{datetime.now()-height.DTOE})")
|
|
108
108
|
num=0
|
|
109
109
|
view=[]
|
|
110
|
-
view.append(f"Height : {height.Height} Unit:{height.HeightUnitName} HLID: {height.HLID} DTOE: {height.DTOE}")
|
|
110
|
+
view.append(f"{Fore.green_3b}Height : {Fore.sea_green_2}{height.Height} {Fore.green_3b}Unit:{Fore.sea_green_2}{height.HeightUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{height.HLID} {Fore.green_3b}DTOE: {Fore.sea_green_2}{height.DTOE}{Style.reset}")
|
|
111
111
|
|
|
112
112
|
msg=f"{'|'.join(view)}"
|
|
113
113
|
print(std_colorize(msg,num,ct))
|
|
@@ -117,10 +117,10 @@ class HealthLogUi:
|
|
|
117
117
|
weight=session.query(HealthLog).filter(and_(HealthLog.Weight!=None,))
|
|
118
118
|
weight=orderQuery(weight,HealthLog.DTOE,inverse=True).first()
|
|
119
119
|
if weight:
|
|
120
|
-
print(f"Weight : HowLongAgo({datetime.now()-weight.DTOE})")
|
|
120
|
+
print(f"{Fore.green_3b}Weight : HowLongAgo({Fore.sea_green_2}{datetime.now()-weight.DTOE})")
|
|
121
121
|
num=0
|
|
122
122
|
view=[]
|
|
123
|
-
view.append(f"Weight : {weight.Weight} Unit:{weight.WeightUnitName} HLID: {weight.HLID} DTOE: {weight.DTOE}")
|
|
123
|
+
view.append(f"{Fore.green_3b}Weight : {Fore.sea_green_2}{weight.Weight} {Fore.green_3b}Unit:{Fore.sea_green_2}{weight.WeightUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{weight.HLID} {Fore.green_3b}DTOE: {Fore.sea_green_2}{weight.DTOE}{Style.reset}")
|
|
124
124
|
msg=f"{'|'.join(view)}"
|
|
125
125
|
print(std_colorize(msg,num,ct))
|
|
126
126
|
else:
|
|
@@ -129,10 +129,10 @@ class HealthLogUi:
|
|
|
129
129
|
heartRate=session.query(HealthLog).filter(and_(HealthLog.HeartRate!=None,))
|
|
130
130
|
heartRate=orderQuery(heartRate,HealthLog.DTOE,inverse=True).first()
|
|
131
131
|
if heartRate:
|
|
132
|
-
print(f"Heart Rate : HowLongAgo({datetime.now()-heartRate.DTOE})")
|
|
132
|
+
print(f"{Fore.green_3b}Heart Rate : HowLongAgo({Fore.sea_green_2}{datetime.now()-heartRate.DTOE})")
|
|
133
133
|
num=0
|
|
134
134
|
view=[]
|
|
135
|
-
view.append(f"HeartRate : {heartRate.HeartRate} Unit:{heartRate.HeartRateUnitName} HLID: {heartRate.HLID} DTOE: {heartRate.DTOE}")
|
|
135
|
+
view.append(f"{Fore.green_3b}HeartRate : {Fore.sea_green_2}{heartRate.HeartRate} {Fore.green_3b}Unit:{Fore.sea_green_2}{heartRate.HeartRateUnitName} {Fore.green_3b}HLID: {Fore.sea_green_2}{heartRate.HLID} {Fore.green_3b}DTOE: {Fore.sea_green_2}{heartRate.DTOE}")
|
|
136
136
|
msg=f"{'|'.join(view)}"
|
|
137
137
|
print(std_colorize(msg,num,ct))
|
|
138
138
|
else:
|
|
@@ -387,6 +387,10 @@ class HealthLogUi:
|
|
|
387
387
|
'type':str(i.type).lower(),
|
|
388
388
|
} for i in hl.__table__.columns if str(i.name) not in excludes and str(i.name) in useColumns
|
|
389
389
|
}
|
|
390
|
+
fields['DTOE']={
|
|
391
|
+
'default':datetime.now(),
|
|
392
|
+
'type':'datetime',
|
|
393
|
+
}
|
|
390
394
|
if fields in [{},None]:
|
|
391
395
|
print(fields,"empty!")
|
|
392
396
|
return
|
|
Binary file
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.739'
|
|
Binary file
|
|
@@ -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=KI7Jmf3MX0Zng_YUvcjVKN2siyUOhaMAHQGzpPuX8KQ,41373
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=2LSVV09ampAjLPtQgPHSR0lxBGuStbr34SseANLRWAI,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
|
|
@@ -95,7 +95,7 @@ radboy/DB/SMLabelImporter.py,sha256=eUoBDxVUUEKGL2g_PwkASM67ZB7FmXtSnn4bCagskhY,
|
|
|
95
95
|
radboy/DB/__init__.py,sha256=JiigA9B7GalP7YuRdcwyGDu5PDSBahoi0lLjtScxlN8,49
|
|
96
96
|
radboy/DB/blankDataFile.py,sha256=YX_05Usi71UpDkZN9UTMYwUipbTndTAtEgqzBEga0kE,9285
|
|
97
97
|
radboy/DB/config.py,sha256=bvu43dUl1_yO3Zq3gsLuenGUgJSiS3S9Cs6ppFEvZbg,239
|
|
98
|
-
radboy/DB/db.py,sha256=
|
|
98
|
+
radboy/DB/db.py,sha256=pMJHs6-Pl341wDg1z-02FE0JdnQ__pJxbFh2F7_zi-k,262840
|
|
99
99
|
radboy/DB/glossary_db.py,sha256=1_qxeEpjjEtpWB_eDjsgJisimLv7OBm75MuqM-Lt6zg,28218
|
|
100
100
|
radboy/DB/masterLookup.py,sha256=DBaM2uscG3_X5dek49wjdnOzhrjWhKgvOEz_umdz0mY,4566
|
|
101
101
|
radboy/DB/msg.txt,sha256=YxWed6A6tuP1djJ5QPS2Rz3ING4TKKf8kUiCCPtzHXE,7937
|
|
@@ -135,7 +135,7 @@ radboy/DB/__pycache__/config.cpython-312.pyc,sha256=Qo7E6MHrF6yqvKgepNFyCoekZXiv
|
|
|
135
135
|
radboy/DB/__pycache__/config.cpython-313.pyc,sha256=_8wCIg_3jhyJjxnExD2Sm6aY-uZTw036p7Ki5znL7dc,376
|
|
136
136
|
radboy/DB/__pycache__/db.cpython-311.pyc,sha256=rNgigyBd0D-cg1JxKAS8t0B_k0IEJivgVlRaZE10Xis,210105
|
|
137
137
|
radboy/DB/__pycache__/db.cpython-312.pyc,sha256=ANDJPC0RoavbmSKFxG15vC7B4rEGyVt7xRJt7XGY3OA,334609
|
|
138
|
-
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=
|
|
138
|
+
radboy/DB/__pycache__/db.cpython-313.pyc,sha256=824ZgO1MYbuSwxiKYAE470kJq730UpqPPtEZyW8o1B4,411907
|
|
139
139
|
radboy/DB/__pycache__/glossary_db.cpython-312.pyc,sha256=8UL-29cKqtKovx0BANm6kzKKteef1BW_2qF3wumzst4,36023
|
|
140
140
|
radboy/DB/__pycache__/glossary_db.cpython-313.pyc,sha256=Ke9bkvllGv5CK0JdT9DRvQ3MOdrXxoYv7TVLNkqLux0,36582
|
|
141
141
|
radboy/DB/__pycache__/masterLookup.cpython-312.pyc,sha256=bQiOkmMwwHgcO18tYSWGQ-YUff4GQlKVhBMp1GoWAqY,6324
|
|
@@ -218,10 +218,10 @@ radboy/GeoTools/__pycache__/GeoClass.cpython-313.pyc,sha256=eZ6hpLKoic1XCb7BKKg-
|
|
|
218
218
|
radboy/GeoTools/__pycache__/OSMClass.cpython-312.pyc,sha256=5RoT8_wiI8R7yb_B9FWIC7mALdGNoqyWtkzsjM2pbh0,40387
|
|
219
219
|
radboy/GeoTools/__pycache__/__init__.cpython-312.pyc,sha256=Y7Xtrzwm44-xuY_4NK8aDjYfVmXIzUFWOyexJu9le8A,1238
|
|
220
220
|
radboy/GeoTools/__pycache__/__init__.cpython-313.pyc,sha256=-bk9eEIxWZgHYZHtNJbrpubDRWkbdYNkGr5J7sVhyIE,1238
|
|
221
|
-
radboy/HealthLog/HealthLog.py,sha256=
|
|
221
|
+
radboy/HealthLog/HealthLog.py,sha256=e7y_SaWM7-UqocbDhEQ7w4w008sQ9VDxN6SR1kxK0bo,48695
|
|
222
222
|
radboy/HealthLog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
223
|
radboy/HealthLog/__pycache__/HealthLog.cpython-312.pyc,sha256=hTo4o7jo9L2yqPZgzuKUw_kon_PVcCuTRguELTuLrIo,27946
|
|
224
|
-
radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256
|
|
224
|
+
radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=CD0s5dSzjWUx8E3jyqV-ftqwqlvbOykeSm_pwvYI4Y0,81524
|
|
225
225
|
radboy/HealthLog/__pycache__/__init__.cpython-312.pyc,sha256=yZrYKBk31pGSjCRqmqzpX409iw-muC1zsNO2ObqkGlY,272
|
|
226
226
|
radboy/HealthLog/__pycache__/__init__.cpython-313.pyc,sha256=cqdZbEJKq9XVoVqDAwsW0pwwBBGSerJNWGlST3YVR3g,151
|
|
227
227
|
radboy/InListRestore/ILR.py,sha256=s8fbbHLKQSVJX1VaeyGE-vdIUGBEbOPX29kRIG2j2WY,16847
|
|
@@ -406,7 +406,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
406
406
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
407
407
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
408
408
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
409
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
409
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=PaIZBRuu1gvyzhyqVSC8PSEnjVpOwF-qfZcH_zgxQ_g,165
|
|
410
410
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
411
411
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
412
412
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -434,7 +434,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
434
434
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
435
435
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
436
436
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
437
|
-
radboy-0.0.
|
|
438
|
-
radboy-0.0.
|
|
439
|
-
radboy-0.0.
|
|
440
|
-
radboy-0.0.
|
|
437
|
+
radboy-0.0.739.dist-info/METADATA,sha256=VCsPjJlP2kQtoU7cf5IzpQEohzxQv4njCXMCikEuMes,1891
|
|
438
|
+
radboy-0.0.739.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
439
|
+
radboy-0.0.739.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
440
|
+
radboy-0.0.739.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|