radboy 0.0.731__py3-none-any.whl → 0.0.733__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/HealthLog/HealthLog.py +11 -11
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.731.dist-info → radboy-0.0.733.dist-info}/METADATA +1 -1
- {radboy-0.0.731.dist-info → radboy-0.0.733.dist-info}/RECORD +7 -7
- {radboy-0.0.731.dist-info → radboy-0.0.733.dist-info}/WHEEL +0 -0
- {radboy-0.0.731.dist-info → radboy-0.0.733.dist-info}/top_level.txt +0 -0
radboy/HealthLog/HealthLog.py
CHANGED
|
@@ -39,7 +39,7 @@ 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("Long Acting Insulin")
|
|
42
|
+
print(f"Long Acting Insulin : HowLongAgo({datetime.now()-lai.DTOE})")
|
|
43
43
|
num=0
|
|
44
44
|
view=[]
|
|
45
45
|
for x in lai.__table__.columns:
|
|
@@ -53,7 +53,7 @@ class HealthLogUi:
|
|
|
53
53
|
sai=session.query(HealthLog).filter(and_(HealthLog.ShortActingInsulinName!=None,HealthLog.ShortActingInsulinTaken!=None))
|
|
54
54
|
sai=orderQuery(sai,HealthLog.DTOE,inverse=True).first()
|
|
55
55
|
if sai:
|
|
56
|
-
print("Short Acting Insulin")
|
|
56
|
+
print(f"Short Acting Insulin : HowLongAgo({datetime.now()-sai.DTOE})")
|
|
57
57
|
num=1
|
|
58
58
|
view=[]
|
|
59
59
|
for x in sai.__table__.columns:
|
|
@@ -67,7 +67,7 @@ class HealthLogUi:
|
|
|
67
67
|
last_carb=session.query(HealthLog).filter(and_(HealthLog.CarboHydrateIntake!=None,HealthLog.EntryName!=None))
|
|
68
68
|
last_carb=orderQuery(last_carb,HealthLog.DTOE,inverse=True).first()
|
|
69
69
|
if last_carb:
|
|
70
|
-
print("CarboHydrateIntake")
|
|
70
|
+
print(f"CarboHydrateIntake : HowLongAgo({datetime.now()-last_carb.DTOE})")
|
|
71
71
|
num=2
|
|
72
72
|
view=[]
|
|
73
73
|
for x in last_carb.__table__.columns:
|
|
@@ -81,7 +81,7 @@ class HealthLogUi:
|
|
|
81
81
|
drug=session.query(HealthLog).filter(HealthLog.DrugQtyConsumed!=None)
|
|
82
82
|
drug=orderQuery(drug,HealthLog.DTOE,inverse=True).first()
|
|
83
83
|
if drug:
|
|
84
|
-
print("Last Drug Dose Taken")
|
|
84
|
+
print(f"Last Drug Dose Taken : HowLongAgo({datetime.now()-drug.DTOE})")
|
|
85
85
|
num=3
|
|
86
86
|
view=[]
|
|
87
87
|
for x in drug.__table__.columns:
|
|
@@ -96,7 +96,7 @@ class HealthLogUi:
|
|
|
96
96
|
glucose=session.query(HealthLog).filter(and_(HealthLog.BloodSugar!=None,))
|
|
97
97
|
glucose=orderQuery(glucose,HealthLog.DTOE,inverse=True).first()
|
|
98
98
|
if glucose:
|
|
99
|
-
print("Blood Sugar")
|
|
99
|
+
print(f"Blood Sugar : HowLongAgo({datetime.now()-glucose.DTOE})")
|
|
100
100
|
num=0
|
|
101
101
|
view=[]
|
|
102
102
|
for x in glucose.__table__.columns:
|
|
@@ -107,10 +107,10 @@ class HealthLogUi:
|
|
|
107
107
|
else:
|
|
108
108
|
status+=1
|
|
109
109
|
|
|
110
|
-
height=session.query(HealthLog).filter(and_(HealthLog.
|
|
110
|
+
height=session.query(HealthLog).filter(and_(HealthLog.Height!=None,))
|
|
111
111
|
height=orderQuery(height,HealthLog.DTOE,inverse=True).first()
|
|
112
112
|
if height:
|
|
113
|
-
print("Height")
|
|
113
|
+
print(f"Height : HowLongAgo({datetime.now()-height.DTOE})")
|
|
114
114
|
num=0
|
|
115
115
|
view=[]
|
|
116
116
|
for x in height.__table__.columns:
|
|
@@ -121,10 +121,10 @@ class HealthLogUi:
|
|
|
121
121
|
else:
|
|
122
122
|
status+=1
|
|
123
123
|
|
|
124
|
-
weight=session.query(HealthLog).filter(and_(HealthLog.
|
|
124
|
+
weight=session.query(HealthLog).filter(and_(HealthLog.Weight!=None,))
|
|
125
125
|
weight=orderQuery(weight,HealthLog.DTOE,inverse=True).first()
|
|
126
126
|
if weight:
|
|
127
|
-
print("Weight")
|
|
127
|
+
print(f"Weight : HowLongAgo({datetime.now()-weight.DTOE})")
|
|
128
128
|
num=0
|
|
129
129
|
view=[]
|
|
130
130
|
for x in weight.__table__.columns:
|
|
@@ -135,10 +135,10 @@ class HealthLogUi:
|
|
|
135
135
|
else:
|
|
136
136
|
status+=1
|
|
137
137
|
|
|
138
|
-
heartRate=session.query(HealthLog).filter(and_(HealthLog.
|
|
138
|
+
heartRate=session.query(HealthLog).filter(and_(HealthLog.HeartRate!=None,))
|
|
139
139
|
heartRate=orderQuery(heartRate,HealthLog.DTOE,inverse=True).first()
|
|
140
140
|
if heartRate:
|
|
141
|
-
print("Heart Rate")
|
|
141
|
+
print(f"Heart Rate : HowLongAgo({datetime.now()-heartRate.DTOE})")
|
|
142
142
|
num=0
|
|
143
143
|
view=[]
|
|
144
144
|
for x in heartRate.__table__.columns:
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.733'
|
|
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=y3Y_iNDsLq4rBYhj1-3adYbB8fmilmvznPkBWHwMtgI,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
|
|
@@ -218,7 +218,7 @@ 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=-3udpzEAkry2-vR2hMoNwzVwgal9oli-ywzpBISubcQ,47770
|
|
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
224
|
radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=-doD_xALYWmcKT_tSVY_9LpWu4vdoWB169p07eWfxEo,72671
|
|
@@ -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=QbYfKpmh9mkuY7QH7yw3tgTMYV7ZuJiZEXdgu4zDYUs,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.733.dist-info/METADATA,sha256=edWBpedmLwCR4Bzkh5ExpAvjFmA1USZ_EjqkmK2q7EQ,1891
|
|
438
|
+
radboy-0.0.733.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
439
|
+
radboy-0.0.733.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
440
|
+
radboy-0.0.733.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|