healthdatalayer 1.4.3__py3-none-any.whl → 1.4.5__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 healthdatalayer might be problematic. Click here for more details.

@@ -24,6 +24,8 @@ from .client.pathological_history import PathologicalHistory
24
24
  from .client.pet import Pet
25
25
  from .client.profession import Profession
26
26
  from .client.px import Px
27
+ from .client.state import State
28
+ from .client.city import City
27
29
 
28
30
  from .collaborator.collaborator_speciality import CollaboratorSpeciality
29
31
  from .collaborator.collaborator import Collaborator
@@ -0,0 +1,11 @@
1
+ import uuid
2
+ from sqlmodel import SQLModel,Field
3
+ from typing import Optional
4
+
5
+ class City(SQLModel,table=True):
6
+ __tablename__ = "city"
7
+
8
+ city_id:uuid.UUID=Field(default_factory=uuid.uuid4,primary_key=True)
9
+ name:str
10
+ state_id: Optional[uuid.UUID] = Field(default=None, foreign_key="state.state_id")
11
+ is_active: bool = Field(default=True)
@@ -20,9 +20,11 @@ class Px(Client, table=True):
20
20
  profession_id: Optional[uuid.UUID] = Field(default=None, foreign_key="profession.profession_id")
21
21
  education_id: Optional[uuid.UUID] = Field(default=None, foreign_key="education.education_id")
22
22
  user_id: Optional[uuid.UUID] = Field(default=None, foreign_key="user.user_id")
23
+ nationality_id: Optional[uuid.UUID] = Field(default=None, foreign_key="nationality.nationality_id")
23
24
 
24
25
  Px.marriage_status = Relationship()
25
26
  Px.profession = Relationship()
26
27
  Px.education = Relationship()
27
28
  Px.user = Relationship()
29
+ Px.nationality = Relationship()
28
30
  Px.medical_labs = Relationship(back_populates="pxs", link_model="ClientLab")
@@ -0,0 +1,9 @@
1
+ import uuid
2
+ from sqlmodel import SQLModel,Field
3
+
4
+ class State(SQLModel,table=True):
5
+ __tablename__ = "state"
6
+
7
+ state_id:uuid.UUID=Field(default_factory=uuid.uuid4,primary_key=True)
8
+ name:str
9
+ is_active: bool = Field(default=True)
@@ -2,9 +2,10 @@ import uuid
2
2
  from datetime import datetime
3
3
  from typing import Optional, List, TYPE_CHECKING
4
4
  from sqlmodel import SQLModel, Field, Relationship
5
+ from sqlalchemy import Column, Enum as SqlEnum
5
6
 
6
7
  from healthdatalayer.models import Collaborator
7
-
8
+ from healthdatalayer.models.medical_visit.status_visit_enum import StatusVisitEnum
8
9
  from healthdatalayer.models import Speciality
9
10
  from healthdatalayer.models import BridgeAreaFloorBranch
10
11
  if TYPE_CHECKING:
@@ -28,7 +29,7 @@ class MedicalVisit(SQLModel, table=True):
28
29
  speciality_id:Optional[uuid.UUID]=Field(default=None,foreign_key="speciality.speciality_id")
29
30
  speciality: Optional[Speciality] = Relationship()
30
31
 
31
- status_visit:str
32
+ status_visit: StatusVisitEnum = Field(sa_column=Column(SqlEnum(StatusVisitEnum, native_enum=False), nullable=False))
32
33
 
33
34
  next_followup_visit_id:Optional[uuid.UUID]=Field(default=None,foreign_key="medical_visit.medical_visit_id")
34
35
 
@@ -0,0 +1,8 @@
1
+ from enum import Enum
2
+
3
+ class StatusVisitEnum(str, Enum):
4
+ AGENDADO = "AGENDADO"
5
+ REAGENDADO = "REAGENDADO"
6
+ CANCELADO = "CANCELADO"
7
+ ATENDIDO = "ATENDIDO"
8
+ NO_ATENDIDO = "NO_ATENDIDO"
@@ -2,7 +2,7 @@ from typing import Optional, List
2
2
  from uuid import UUID
3
3
  from sqlmodel import select
4
4
 
5
- from healthdatalayer.models import Address
5
+ from healthdatalayer.models import Address, City, State
6
6
  from healthdatalayer.config.db import engines, get_session
7
7
 
8
8
  class AddressRepository:
@@ -61,4 +61,34 @@ class AddressRepository:
61
61
  session.delete(db_address)
62
62
 
63
63
  session.commit()
64
- return True
64
+ return True
65
+
66
+ def list_all_state_command(self, active_only: bool = True) -> List[Address]:
67
+ with get_session(self.tenant) as session:
68
+ statement = select(State)
69
+
70
+ if active_only:
71
+ statement = statement.where(State.is_active == True)
72
+
73
+ results = session.exec(statement)
74
+ return results.all()
75
+
76
+ def list_all_city_command(self, active_only: bool = True) -> List[Address]:
77
+ with get_session(self.tenant) as session:
78
+ statement = select(City)
79
+
80
+ if active_only:
81
+ statement = statement.where(City.is_active == True)
82
+
83
+ results = session.exec(statement)
84
+ return results.all()
85
+
86
+ def list_city_by_state_id_command(self,state_id: UUID, active_only: bool = True) -> List[Address]:
87
+ with get_session(self.tenant) as session:
88
+ statement = select(City).where(City.state_id == state_id)
89
+
90
+ if active_only:
91
+ statement = statement.where(State.is_active == True)
92
+
93
+ results = session.exec(statement)
94
+ return results.all()
@@ -1,6 +1,7 @@
1
1
  from typing import Optional, List
2
+ from datetime import datetime
2
3
  from uuid import UUID
3
- from sqlmodel import select, or_
4
+ from sqlmodel import select
4
5
  from sqlalchemy.orm import selectinload,joinedload
5
6
  from healthdatalayer.models import MedicalVisit
6
7
  from healthdatalayer.config.db import engines, get_session
@@ -79,6 +80,123 @@ class MedicalVisitRepository:
79
80
 
80
81
  medical_visits = session.exec(statement).all()
81
82
  return medical_visits
83
+
84
+ def get_by_collaborator_id_command(self, collaborator_id: UUID, active_only: bool = True, load_relations: bool = False) -> List[MedicalVisit]:
85
+ with get_session(self.tenant) as session:
86
+ statement = select(MedicalVisit).where(MedicalVisit.collaborator_id == collaborator_id)
87
+
88
+ if active_only:
89
+ statement = statement.where(MedicalVisit.is_active == True)
90
+ if load_relations:
91
+ statement = statement.options(
92
+ joinedload(MedicalVisit.client),
93
+ joinedload(MedicalVisit.collaborator),
94
+ joinedload(MedicalVisit.speciality),
95
+ selectinload(MedicalVisit.medical_diagnosis_visits),
96
+ selectinload(MedicalVisit.medical_recipe_visits),
97
+ selectinload(MedicalVisit.organ_system_reviews),
98
+ selectinload(MedicalVisit.physical_exams)
99
+ )
100
+
101
+ medical_visits = session.exec(statement).all()
102
+ return medical_visits
103
+
104
+ def get_by_next_followup_id_command(self, next_followup_id: UUID, active_only: bool = True, load_relations: bool = False) -> List[MedicalVisit]:
105
+ with get_session(self.tenant) as session:
106
+ statement = select(MedicalVisit).where(MedicalVisit.next_followup_visit_id == next_followup_id)
107
+
108
+ if active_only:
109
+ statement = statement.where(MedicalVisit.is_active == True)
110
+ if load_relations:
111
+ statement = statement.options(
112
+ joinedload(MedicalVisit.client),
113
+ joinedload(MedicalVisit.collaborator),
114
+ joinedload(MedicalVisit.speciality),
115
+ selectinload(MedicalVisit.medical_diagnosis_visits),
116
+ selectinload(MedicalVisit.medical_recipe_visits),
117
+ selectinload(MedicalVisit.organ_system_reviews),
118
+ selectinload(MedicalVisit.physical_exams)
119
+ )
120
+
121
+ medical_visits = session.exec(statement).all()
122
+ return medical_visits
123
+
124
+ def get_by_collaboratorid_and_daterange_command(self, collaborator_id: UUID, start_date: datetime, end_date: datetime, active_only: bool = True, load_relations: bool = False) -> List[MedicalVisit]:
125
+ with get_session(self.tenant) as session:
126
+ statement = select(MedicalVisit).where(
127
+ MedicalVisit.collaborator_id == collaborator_id,
128
+ MedicalVisit.visit_date >= start_date
129
+ )
130
+
131
+ if end_date is not None:
132
+ statement = statement.where(MedicalVisit.visit_date <= end_date)
133
+ if active_only:
134
+ statement = statement.where(MedicalVisit.is_active == True)
135
+ if load_relations:
136
+ statement = statement.options(
137
+ joinedload(MedicalVisit.client),
138
+ joinedload(MedicalVisit.collaborator),
139
+ joinedload(MedicalVisit.speciality),
140
+ selectinload(MedicalVisit.medical_diagnosis_visits),
141
+ selectinload(MedicalVisit.medical_recipe_visits),
142
+ selectinload(MedicalVisit.organ_system_reviews),
143
+ selectinload(MedicalVisit.physical_exams)
144
+ )
145
+
146
+ medical_visits = session.exec(statement).all()
147
+ return medical_visits
148
+
149
+ def get_by_collaboratorid_and_targetdate_command(self, collaborator_id: UUID, target_date: datetime, active_only: bool = True, load_relations: bool = False) -> List[MedicalVisit]:
150
+ with get_session(self.tenant) as session:
151
+
152
+ start_of_day = datetime.combine(target_date.date(), datetime.min.time())
153
+ end_of_day = datetime.combine(target_date.date(), datetime.max.time())
154
+
155
+ statement = select(MedicalVisit).where(
156
+ MedicalVisit.collaborator_id == collaborator_id,
157
+ MedicalVisit.visit_date >= start_of_day,
158
+ MedicalVisit.visit_date <= end_of_day
159
+ )
160
+
161
+ if active_only:
162
+ statement = statement.where(MedicalVisit.is_active == True)
163
+ if load_relations:
164
+ statement = statement.options(
165
+ joinedload(MedicalVisit.client),
166
+ joinedload(MedicalVisit.collaborator),
167
+ joinedload(MedicalVisit.speciality),
168
+ selectinload(MedicalVisit.medical_diagnosis_visits),
169
+ selectinload(MedicalVisit.medical_recipe_visits),
170
+ selectinload(MedicalVisit.organ_system_reviews),
171
+ selectinload(MedicalVisit.physical_exams)
172
+ )
173
+
174
+ medical_visits = session.exec(statement).all()
175
+ return medical_visits
176
+
177
+ def get_by_collaboratorid_and_specificdatetime_command(self, collaborator_id: UUID, specific_datetime: datetime, active_only: bool = True, load_relations: bool = False) -> Optional[MedicalVisit]:
178
+ with get_session(self.tenant) as session:
179
+
180
+ statement = select(MedicalVisit).where(
181
+ MedicalVisit.collaborator_id == collaborator_id,
182
+ MedicalVisit.visit_date == specific_datetime
183
+ )
184
+
185
+ if active_only:
186
+ statement = statement.where(MedicalVisit.is_active == True)
187
+ if load_relations:
188
+ statement = statement.options(
189
+ joinedload(MedicalVisit.client),
190
+ joinedload(MedicalVisit.collaborator),
191
+ joinedload(MedicalVisit.speciality),
192
+ selectinload(MedicalVisit.medical_diagnosis_visits),
193
+ selectinload(MedicalVisit.medical_recipe_visits),
194
+ selectinload(MedicalVisit.organ_system_reviews),
195
+ selectinload(MedicalVisit.physical_exams)
196
+ )
197
+
198
+ medical_visit = session.exec(statement).first()
199
+ return medical_visit
82
200
 
83
201
  def update_command(self, medical_visit: MedicalVisit) -> MedicalVisit:
84
202
  with get_session(self.tenant) as session:
@@ -107,4 +225,10 @@ class MedicalVisitRepository:
107
225
  session.delete(existing_bridge)
108
226
 
109
227
  session.commit()
228
+
229
+ def exists_by_collaboratoid_and_targetdate_command(self, collaborator_id: UUID, target_date: datetime) -> bool:
230
+ with get_session(self.tenant) as session:
231
+ statement = select(MedicalVisit).where(MedicalVisit.collaborator_id == collaborator_id, MedicalVisit.visit_date == target_date)
232
+ result = session.exec(statement).first()
233
+ return result is not None
110
234
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: healthdatalayer
3
- Version: 1.4.3
3
+ Version: 1.4.5
4
4
  Summary: Health Datalayer to access data from different sources
5
5
  Author: Jesus Martinez
6
6
  Author-email: jesusmartinez@noosds.com
@@ -3,7 +3,7 @@ healthdatalayer/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
3
3
  healthdatalayer/config/config.py,sha256=vyqrlHDgCGpYX7V9fDn4g671lUU1RuWlSYCIazI-SqQ,689
4
4
  healthdatalayer/config/db.py,sha256=b_SWTINJSVUhR0uyD4h93jPLKUzRm6Ky0tmALWbjM18,342
5
5
  healthdatalayer/config/vault.py,sha256=9yUMXjaTYSnqr0npcQXDsg6Z7G3DityqpmHl1x42zS0,748
6
- healthdatalayer/models/__init__.py,sha256=aHts_4fmmSgAGlKe-qZ9aCXjeYPBVaB-VM4LqH-y4_4,1994
6
+ healthdatalayer/models/__init__.py,sha256=ZBY7CL172P68TWRWVTpzHO0_cnFzDRGz7aTy85Z8HPI,2056
7
7
  healthdatalayer/models/bridge_area_floor_branch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  healthdatalayer/models/bridge_area_floor_branch/area.py,sha256=g_u6RoorLJ7XUx7qcqXLavrHxpflHGi0p77f-3RPbVU,201
9
9
  healthdatalayer/models/bridge_area_floor_branch/branch.py,sha256=lW2pbZVKkQeEWuShOLKFiNJAKt01mBswczk1hRELInw,515
@@ -13,6 +13,7 @@ healthdatalayer/models/bridge_area_floor_branch/room.py,sha256=nub6QIFyl6ZxGENru
13
13
  healthdatalayer/models/bridge_area_floor_branch/system.py,sha256=10r59kLMsLEv9cKa4hEZJoFAicVPS0rw4UNiN5nhsnI,212
14
14
  healthdatalayer/models/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  healthdatalayer/models/client/address.py,sha256=rc_Vw9qWECmGcf0GGTChZZj8m6whWSFFGA3xIcsYaBk,343
16
+ healthdatalayer/models/client/city.py,sha256=TYSthPrhdb9iTzDSUC9ZGmx7ZZ0PacxNS2S3ajMhnJU,355
16
17
  healthdatalayer/models/client/client.py,sha256=DjW64iOeGKPluKLqyWTTHVste0Y3pF0VL_FvHNLtvyM,786
17
18
  healthdatalayer/models/client/client_type.py,sha256=ElTYCXLkVItIhEIj2ZhXqHV872kY4A7gUuhwpm-BKjQ,261
18
19
  healthdatalayer/models/client/education.py,sha256=MQN-7Oh1PdneytDmm1DZuZ7wrXzXSTeu08SeKhZ0fi8,256
@@ -23,7 +24,8 @@ healthdatalayer/models/client/nationality.py,sha256=k1CKQTQIJAJP_qmeYB-AkRQ1Q5x9
23
24
  healthdatalayer/models/client/pathological_history.py,sha256=8jsOAaSGqk1M-60sLhoJuuz9MeUKbk693dARXgBriTY,1029
24
25
  healthdatalayer/models/client/pet.py,sha256=y7jiNF_9Jri0_55geo2hweEj4zdsHKu9ZCelBwfVWeA,516
25
26
  healthdatalayer/models/client/profession.py,sha256=eKX6Gf93qwQg2NyJsXKKbmEwQTxHvJCnOwQ5pxCpM0I,259
26
- healthdatalayer/models/client/px.py,sha256=R1RsEwLx3fQ8fPX5Mq7FrWtoexgL-RddDMs_D2PYs5Y,959
27
+ healthdatalayer/models/client/px.py,sha256=4HgPzbm_OdaQvOHC5-QLQA35VTK83QkaqX-rUF2kVYk,1095
28
+ healthdatalayer/models/client/state.py,sha256=G_AJOKKfkufZw_axfwSrcL3ZVtKY1FOm0AmCcHfn9Ao,244
27
29
  healthdatalayer/models/collaborator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
30
  healthdatalayer/models/collaborator/collaborator.py,sha256=Hju_VTUEgA22KJ5-lr-8dl8UsgeSEj2c5OxuGjU71oM,1064
29
31
  healthdatalayer/models/collaborator/collaborator_speciality.py,sha256=TQK8dbbM7LE14MpEpWjTmcYRJCOLlBGxQwrs7zkR5ao,346
@@ -39,9 +41,10 @@ healthdatalayer/models/medical_visit/medical_diagnosis_visit.py,sha256=3ZoWxhqln
39
41
  healthdatalayer/models/medical_visit/medical_drug.py,sha256=zG3oqzq0fGZQNkY7AmFZQaHTG7BVQ3kGJ-tgLgfwNdc,829
40
42
  healthdatalayer/models/medical_visit/medical_drug_recipe.py,sha256=DiygpjyX72sc5jD-h9hue5kU0T4YgZyLxD_qVacnxV0,657
41
43
  healthdatalayer/models/medical_visit/medical_recipe_visit.py,sha256=W8E8RAOtow_-NbEr8SBHnoq_huJlx-6zDrJL98vzNQ4,1042
42
- healthdatalayer/models/medical_visit/medical_visit.py,sha256=ow5KTmRCaTj5RBKeQ-gfTms-L3kBgqZl90elSbImsVc,2338
44
+ healthdatalayer/models/medical_visit/medical_visit.py,sha256=3CtXkXiFasuYEXGGHVfAKYu4VSsv8Xj8tTcR-dzqqmI,2567
43
45
  healthdatalayer/models/medical_visit/organ_system_review.py,sha256=fXWbuDfdy6QBBl-c5X14XBHpyCqLqqZdPNbzdq5H58U,1168
44
46
  healthdatalayer/models/medical_visit/physical_exam.py,sha256=VaezGMp4eptJH-mco-SCumATkcpp2xSA6zBtw9LrMFM,1772
47
+ healthdatalayer/models/medical_visit/status_visit_enum.py,sha256=p4krEZXsXpeAtedCwlj1vcPMPM9y-LHWHfkOVEgZtBY,199
45
48
  healthdatalayer/models/medical_visit/visit_triage.py,sha256=RrTQ_ckAkOTdNfHXetqKt3a1VmvHSkMZ_5VkGvJQheE,1093
46
49
  healthdatalayer/models/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
50
  healthdatalayer/models/user/permission.py,sha256=U4sU_l68X7lMIooaxJN3aZ7eVJT-DDCTI_ApKyvPo-E,801
@@ -52,7 +55,7 @@ healthdatalayer/models/user/role_user.py,sha256=HBLzwY5712DISqBTxrVOrNjnUOAHSYUf
52
55
  healthdatalayer/models/user/user.py,sha256=Fc1m5xluZMZPHe_TIsRu43dOXdjk3TNU4drrMLcfb9g,975
53
56
  healthdatalayer/repositories/__init__.py,sha256=mu3VrCXi7GBJqwjsJHWDuyFFTX0wqBZzmJ7CyAypP6U,2766
54
57
  healthdatalayer/repositories/client_repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- healthdatalayer/repositories/client_repositories/address_repository.py,sha256=CPU4jayxAZVPCQaezINxQM3f87ls-Y8xfxlAfZaj8Hc,2240
58
+ healthdatalayer/repositories/client_repositories/address_repository.py,sha256=Ae2rHG0zXyqoovcfyGh1hMPBQKLoBVKR5SlytnPO5iA,3436
56
59
  healthdatalayer/repositories/client_repositories/client_type_repository.py,sha256=RddxYRoBpktXqbLZy2JC2MDWaXCq9_Auhk1peqe9hSw,2637
57
60
  healthdatalayer/repositories/client_repositories/education_repository.py,sha256=T-coaux5h35nkvOr9VPi7Ri_ETtlPdziJAhF2pCFNDo,2583
58
61
  healthdatalayer/repositories/client_repositories/emergency_contact_repository.py,sha256=kCPrVY1thMJ1tcybaRupw9L8RB4GhnYbYPincH8bRFI,3259
@@ -83,7 +86,7 @@ healthdatalayer/repositories/medical_visit_repositories/medical_diagnosis_visit_
83
86
  healthdatalayer/repositories/medical_visit_repositories/medical_drug_recipe_repository.py,sha256=6rubP_KtheyJSvLmpBJwYuPKNsjhSvKi-_HM2QoP1hM,3141
84
87
  healthdatalayer/repositories/medical_visit_repositories/medical_drug_repository.py,sha256=mJNN6_aAK3eY9IpFc16nT3IshObGcFE5fi27SK-Sjio,2401
85
88
  healthdatalayer/repositories/medical_visit_repositories/medical_recipe_visit_repository.py,sha256=j4cJ4zURKILN3lkqfpXya29MQYFIMiTmJukOADBj5_c,4551
86
- healthdatalayer/repositories/medical_visit_repositories/medical_visit_repository.py,sha256=r6l4L2AuStV_9NO208_GG8REJRnFtHBU2zx0BjnYuCI,5151
89
+ healthdatalayer/repositories/medical_visit_repositories/medical_visit_repository.py,sha256=BmPLxuB22QOPukAAduIKwWq5lQkhKdILF4AuCF7Bj-s,11693
87
90
  healthdatalayer/repositories/medical_visit_repositories/organ_system_review_repository.py,sha256=-BTfgzvt8VlE2FsBHX3snzRl2VDrRClqz-dJL3bLheE,4192
88
91
  healthdatalayer/repositories/medical_visit_repositories/physical_exam_repository.py,sha256=Q4R2-6fv57jqZrGUMFQw4YZgZGQbn8UmSRS3UhUSZQg,3877
89
92
  healthdatalayer/repositories/medical_visit_repositories/visit_triage_repository.py,sha256=0xVnhXV2CSNi2FcW2tG_BGsqlm_oA9jvXP5qz5Aqj_c,3821
@@ -91,7 +94,7 @@ healthdatalayer/repositories/user_repositories/__init__.py,sha256=47DEQpj8HBSa-_
91
94
  healthdatalayer/repositories/user_repositories/permission_repository.py,sha256=3L4y-zCkI2PIRo-L3FJRSk4g3nZnu6q35lEY4ACJyq4,9630
92
95
  healthdatalayer/repositories/user_repositories/role_repository.py,sha256=jIsbeAFFQQ_CZJqBMcOskuMXtT1Il6eiN0Y2BpVO1JE,6821
93
96
  healthdatalayer/repositories/user_repositories/user_repository.py,sha256=FUCNdRRGc12dq5XuwDT3btvDETt6HGXh_xQIPTLCAvk,9839
94
- healthdatalayer-1.4.3.dist-info/METADATA,sha256=L-a_MY4FT7TQj1yV9jeLJJ8GV2j6aAd8Pd5hug-opO4,827
95
- healthdatalayer-1.4.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
96
- healthdatalayer-1.4.3.dist-info/top_level.txt,sha256=6f1-gvpg533UEVuYsRJCDhdSDQUBwijyAHylyS4nG_4,16
97
- healthdatalayer-1.4.3.dist-info/RECORD,,
97
+ healthdatalayer-1.4.5.dist-info/METADATA,sha256=8JRrMnan-t3mU9GK2JZ_dYAW2nUjvg3de0Mm04juGKY,827
98
+ healthdatalayer-1.4.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
99
+ healthdatalayer-1.4.5.dist-info/top_level.txt,sha256=6f1-gvpg533UEVuYsRJCDhdSDQUBwijyAHylyS4nG_4,16
100
+ healthdatalayer-1.4.5.dist-info/RECORD,,