cs-models 0.0.707__py3-none-any.whl → 0.0.709__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.

File without changes
@@ -0,0 +1,39 @@
1
+ from datetime import datetime
2
+
3
+ from sqlalchemy import (
4
+ Column,
5
+ Integer,
6
+ DateTime,
7
+ String,
8
+ Text,
9
+ Boolean,
10
+ ForeignKey,
11
+ )
12
+
13
+ from ...database import Base
14
+
15
+
16
+ class TableFigureModel(Base):
17
+ __tablename__ = "table_figures"
18
+
19
+ id = Column(Integer, primary_key=True)
20
+ file_id = Column(
21
+ Integer,
22
+ ForeignKey('files.id'),
23
+ nullable=True,
24
+ )
25
+ source_type = Column(String(50), nullable=False)
26
+ source_id = Column(Integer, nullable=False)
27
+ label = Column(String(50), nullable=True)
28
+ caption = Column(Text, nullable=True)
29
+ description = Column(Text, nullable=True)
30
+ content = Column(Text, nullable=True)
31
+ link = Column(String(255), nullable=True)
32
+ llm_processed = Column(Boolean, nullable=True)
33
+ updated_at = Column(
34
+ DateTime,
35
+ nullable=False,
36
+ # https://stackoverflow.com/questions/58776476/why-doesnt-freezegun-work-with-sqlalchemy-default-values
37
+ default=lambda: datetime.utcnow(),
38
+ onupdate=lambda: datetime.utcnow(),
39
+ )
@@ -0,0 +1,21 @@
1
+ from marshmallow import (
2
+ Schema,
3
+ fields,
4
+ validate,
5
+ )
6
+
7
+
8
+ class TableFigureResourceSchema(Schema):
9
+ not_blank = validate.Length(min=1, error='Field cannot be blank')
10
+
11
+ id = fields.Integer(dump_only=True)
12
+ file_id = fields.Integer(required=True)
13
+ source_type = fields.String(required=True)
14
+ source_id = fields.Integer(required=True)
15
+ label = fields.String(allow_none=True)
16
+ caption = fields.String(allow_none=True)
17
+ description = fields.String(allow_none=True)
18
+ content = fields.String(allow_none=True)
19
+ link = fields.String(allow_none=True)
20
+ llm_processed = fields.Boolean(allow_none=True)
21
+ updated_at = fields.DateTime()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cs-models
3
- Version: 0.0.707
3
+ Version: 0.0.709
4
4
  Summary: MySQL db models
5
5
  Home-page: https://github.com/mindgram/cs-models
6
6
  Author: Shrey Verma
@@ -904,6 +904,9 @@ cs_models/resources/SubsidiarySponsorMapping/__init__.py,sha256=eQazWQtc47V22tJx
904
904
  cs_models/resources/SubsidiarySponsorMapping/models.py,sha256=nzTbV96Dy25NmvFrWzrJmcY16q1aXVDH6ZnpHSYUovY,792
905
905
  cs_models/resources/SubsidiarySponsorMapping/schemas.py,sha256=RjiN4h8HMKsaGRVGWHrO_LdH6A5zzl2WfieEJJQv7I8,813
906
906
  cs_models/resources/SubsidiarySponsorMapping/test_subsidiary_sponsor_mapping.py,sha256=vMCJDohlOdZaUxMuAnqRy6hEUepc_EE-6nVElM8WUtY,5977
907
+ cs_models/resources/TableFigure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
908
+ cs_models/resources/TableFigure/models.py,sha256=9QDvBIetzIrJFtCFx8E6azow5n62vTxD0vsNR0X8EKc,1036
909
+ cs_models/resources/TableFigure/schemas.py,sha256=VGt0vS84l8IXFG_qwbbCGZ-zqi8EhcqIixlCVCVv1z0,668
907
910
  cs_models/resources/TableOutbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
908
911
  cs_models/resources/TableOutbox/models.py,sha256=NAq51yqxx4tRWsIoPKSOhRXkAAX0Yom7146qOJ4fX5E,837
909
912
  cs_models/resources/TableOutbox/schemas.py,sha256=zTR8wSwu9YSgsZX2CH7wPi-toGAkJDAQMPcYwBzWX8g,546
@@ -1171,7 +1174,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1171
1174
  cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
1172
1175
  cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
1173
1176
  cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
1174
- cs_models-0.0.707.dist-info/METADATA,sha256=tsC9psgnm-6g4MZNZCAMaC493P8bz-skTsgQFsF8lfM,792
1175
- cs_models-0.0.707.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
1176
- cs_models-0.0.707.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
1177
- cs_models-0.0.707.dist-info/RECORD,,
1177
+ cs_models-0.0.709.dist-info/METADATA,sha256=85Q2DUnT4GHLwoHCKQaYoTB6qHiSkA48RSKopYqzaao,792
1178
+ cs_models-0.0.709.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
1179
+ cs_models-0.0.709.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
1180
+ cs_models-0.0.709.dist-info/RECORD,,