cs-models 0.0.745__py3-none-any.whl → 0.0.747__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 cs-models might be problematic. Click here for more details.
- cs_models/resources/NCTStudy/models.py +2 -0
- cs_models/resources/NCTStudy/schemas.py +2 -0
- cs_models-0.0.747.dist-info/METADATA +29 -0
- {cs_models-0.0.745.dist-info → cs_models-0.0.747.dist-info}/RECORD +6 -6
- {cs_models-0.0.745.dist-info → cs_models-0.0.747.dist-info}/WHEEL +1 -1
- cs_models-0.0.745.dist-info/METADATA +0 -29
- {cs_models-0.0.745.dist-info → cs_models-0.0.747.dist-info}/top_level.txt +0 -0
|
@@ -17,6 +17,7 @@ class NCTStudyModel(Base):
|
|
|
17
17
|
nct_id = Column(String(128), nullable=False, unique=True)
|
|
18
18
|
acronym = Column(String(128), nullable=True)
|
|
19
19
|
brief_title = Column(Text)
|
|
20
|
+
official_title = Column(Text)
|
|
20
21
|
brief_summary = Column(Text, nullable=True)
|
|
21
22
|
description = Column(Text, nullable=True)
|
|
22
23
|
enrollment = Column(Integer, nullable=True)
|
|
@@ -36,6 +37,7 @@ class NCTStudyModel(Base):
|
|
|
36
37
|
conditions = Column(Text, nullable=True)
|
|
37
38
|
interventions = Column(Text, nullable=True)
|
|
38
39
|
industry_flag = Column(Boolean)
|
|
40
|
+
study_keywords = Column(Text)
|
|
39
41
|
updated_at = Column(
|
|
40
42
|
DateTime,
|
|
41
43
|
nullable=False,
|
|
@@ -14,6 +14,7 @@ class NCTStudyResourceSchema(Schema):
|
|
|
14
14
|
nct_id = fields.String(allow_none=False)
|
|
15
15
|
acronym = fields.String(allow_none=True)
|
|
16
16
|
brief_title = fields.String(allow_none=True)
|
|
17
|
+
official_title = fields.String(allow_none=True)
|
|
17
18
|
brief_summary = fields.String(allow_none=True)
|
|
18
19
|
description = fields.String(allow_none=True)
|
|
19
20
|
enrollment = fields.Integer(allow_none=True)
|
|
@@ -33,6 +34,7 @@ class NCTStudyResourceSchema(Schema):
|
|
|
33
34
|
conditions = fields.String(allow_none=True)
|
|
34
35
|
interventions = fields.String(allow_none=True)
|
|
35
36
|
industry_flag = fields.Boolean()
|
|
37
|
+
study_keywords = fields.String(allow_none=True)
|
|
36
38
|
updated_at = fields.DateTime(dump_only=True)
|
|
37
39
|
|
|
38
40
|
@pre_load
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: cs-models
|
|
3
|
+
Version: 0.0.747
|
|
4
|
+
Summary: MySQL db models
|
|
5
|
+
Home-page: https://github.com/mindgram/cs-models
|
|
6
|
+
Author: Shrey Verma
|
|
7
|
+
Author-email: sverma@mindgram.ai
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Requires-Dist: marshmallow==3.19.0
|
|
13
|
+
Requires-Dist: PyMySQL==1.1.1
|
|
14
|
+
Requires-Dist: python-dateutil==2.8.2
|
|
15
|
+
Requires-Dist: pytz==2022.1
|
|
16
|
+
Requires-Dist: SQLAlchemy==1.4.35
|
|
17
|
+
Requires-Dist: boto3>=1.28.30
|
|
18
|
+
Requires-Dist: botocore>=1.31.30
|
|
19
|
+
Requires-Dist: s3transfer>=0.6.2
|
|
20
|
+
Requires-Dist: six==1.16.0
|
|
21
|
+
Requires-Dist: urllib3>=1.26.19
|
|
22
|
+
Requires-Dist: dnspython==2.6.1
|
|
23
|
+
Requires-Dist: pymongo==4.6.3
|
|
24
|
+
Requires-Dist: psycopg2-binary==2.9.3
|
|
25
|
+
Requires-Dist: sshtunnel==0.4.0
|
|
26
|
+
|
|
27
|
+
UNKNOWN
|
|
28
|
+
|
|
29
|
+
|
|
@@ -612,8 +612,8 @@ cs_models/resources/NCTResult/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
612
612
|
cs_models/resources/NCTResult/models.py,sha256=8m9NfIcfc9fS3dsI_JUFpi-Kx1oZ2X5zbJTHl6kRVB0,683
|
|
613
613
|
cs_models/resources/NCTResult/schemas.py,sha256=JhRcOoAhbv1YwIevI0tVXi7iIsntBGegClIZt9fUflE,363
|
|
614
614
|
cs_models/resources/NCTStudy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
-
cs_models/resources/NCTStudy/models.py,sha256=
|
|
616
|
-
cs_models/resources/NCTStudy/schemas.py,sha256=
|
|
615
|
+
cs_models/resources/NCTStudy/models.py,sha256=zpNWMAaisTiCt-udA46Q2-OxX6QkQumjT4nK4zDohwg,1678
|
|
616
|
+
cs_models/resources/NCTStudy/schemas.py,sha256=jb9TDjA8-UICzVdLBa1eHUEjTZ1hj2ApUbYeyTacDno,1974
|
|
617
617
|
cs_models/resources/NCTSubsidiary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
618
618
|
cs_models/resources/NCTSubsidiary/models.py,sha256=X8MiopYVdGerWtV_scBnIeYCzYxWSfnelHpvDMfag98,1027
|
|
619
619
|
cs_models/resources/NCTSubsidiary/schemas.py,sha256=Q1menHAgm1_FUBECA2SF5Ri0vgovG_fIbvEpk4Cc6w0,517
|
|
@@ -1222,7 +1222,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1222
1222
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1223
1223
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1224
1224
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1225
|
-
cs_models-0.0.
|
|
1226
|
-
cs_models-0.0.
|
|
1227
|
-
cs_models-0.0.
|
|
1228
|
-
cs_models-0.0.
|
|
1225
|
+
cs_models-0.0.747.dist-info/METADATA,sha256=mZIwG4qnjF0mB37dvpTGayPh7MiXfmpX15YBSx4Qdpo,751
|
|
1226
|
+
cs_models-0.0.747.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1227
|
+
cs_models-0.0.747.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1228
|
+
cs_models-0.0.747.dist-info/RECORD,,
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: cs-models
|
|
3
|
-
Version: 0.0.745
|
|
4
|
-
Summary: MySQL db models
|
|
5
|
-
Home-page: https://github.com/mindgram/cs-models
|
|
6
|
-
Author: Shrey Verma
|
|
7
|
-
Author-email: sverma@mindgram.ai
|
|
8
|
-
License: UNKNOWN
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Requires-Python: >=3.8
|
|
12
|
-
Requires-Dist: marshmallow (==3.19.0)
|
|
13
|
-
Requires-Dist: PyMySQL (==1.0.2)
|
|
14
|
-
Requires-Dist: python-dateutil (==2.8.2)
|
|
15
|
-
Requires-Dist: pytz (==2022.1)
|
|
16
|
-
Requires-Dist: SQLAlchemy (==1.4.35)
|
|
17
|
-
Requires-Dist: boto3 (>=1.28.30)
|
|
18
|
-
Requires-Dist: botocore (>=1.31.30)
|
|
19
|
-
Requires-Dist: s3transfer (>=0.6.2)
|
|
20
|
-
Requires-Dist: six (==1.16.0)
|
|
21
|
-
Requires-Dist: urllib3 (>=1.26.9)
|
|
22
|
-
Requires-Dist: dnspython (==2.2.1)
|
|
23
|
-
Requires-Dist: pymongo (==4.1.1)
|
|
24
|
-
Requires-Dist: psycopg2-binary (==2.9.3)
|
|
25
|
-
Requires-Dist: sshtunnel (==0.4.0)
|
|
26
|
-
|
|
27
|
-
UNKNOWN
|
|
28
|
-
|
|
29
|
-
|
|
File without changes
|