sqltypes 0.1.4__tar.gz → 0.1.5__tar.gz

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.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: sqltypes
3
+ Version: 0.1.5
4
+ Summary: Custom types for SQLModel/SQLalchemy
5
+ Author-email: Marcel Claramunt <marcel@marcelc.uk>
6
+ Project-URL: repo, https://github.com/marciclabas/sqltypes.git
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: pydantic
10
+ Requires-Dist: sqlalchemy
11
+ Requires-Dist: lazy-loader
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sqltypes"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  authors = [
9
9
  {name="Marcel Claramunt", email="marcel@marcelc.uk"}
10
10
  ]
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: sqltypes
3
+ Version: 0.1.5
4
+ Summary: Custom types for SQLModel/SQLalchemy
5
+ Author-email: Marcel Claramunt <marcel@marcelc.uk>
6
+ Project-URL: repo, https://github.com/marciclabas/sqltypes.git
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: pydantic
10
+ Requires-Dist: sqlalchemy
11
+ Requires-Dist: lazy-loader
@@ -1,4 +1,3 @@
1
- README.md
2
1
  pyproject.toml
3
2
  src/sqltypes/__init__.py
4
3
  src/sqltypes/__init__.pyi
sqltypes-0.1.4/PKG-INFO DELETED
@@ -1,33 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: sqltypes
3
- Version: 0.1.4
4
- Summary: Custom types for SQLModel/SQLalchemy
5
- Author-email: Marcel Claramunt <marcel@marcelc.uk>
6
- Project-URL: repo, https://github.com/marciclabas/sqltypes.git
7
- Requires-Python: >=3.10
8
- Description-Content-Type: text/markdown
9
- Requires-Dist: pydantic
10
- Requires-Dist: sqlalchemy
11
- Requires-Dist: lazy-loader
12
-
13
- # Sql Types
14
-
15
- > Custom types for SQLModel/SQLalchemy
16
-
17
- ## Usage
18
-
19
- ```python
20
- from typing import Sequence
21
- from pydantic import BaseModel
22
- from sqlmodel import Field, SQLModel
23
- from sqltypes import PydanticModel, SpaceDelimitedList
24
-
25
- class User(BaseModel):
26
- name: str
27
- age: int
28
-
29
- class MyDBItem(SQLModel, table=True):
30
- id: int | None = Field(default=None, primary_key=True)
31
- tags: Sequence[str] = Field(sa_type=SpaceDelimitedList)
32
- user: User = Field(sa_type=PydanticModel(User))
33
- ```
sqltypes-0.1.4/README.md DELETED
@@ -1,21 +0,0 @@
1
- # Sql Types
2
-
3
- > Custom types for SQLModel/SQLalchemy
4
-
5
- ## Usage
6
-
7
- ```python
8
- from typing import Sequence
9
- from pydantic import BaseModel
10
- from sqlmodel import Field, SQLModel
11
- from sqltypes import PydanticModel, SpaceDelimitedList
12
-
13
- class User(BaseModel):
14
- name: str
15
- age: int
16
-
17
- class MyDBItem(SQLModel, table=True):
18
- id: int | None = Field(default=None, primary_key=True)
19
- tags: Sequence[str] = Field(sa_type=SpaceDelimitedList)
20
- user: User = Field(sa_type=PydanticModel(User))
21
- ```
@@ -1,33 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: sqltypes
3
- Version: 0.1.4
4
- Summary: Custom types for SQLModel/SQLalchemy
5
- Author-email: Marcel Claramunt <marcel@marcelc.uk>
6
- Project-URL: repo, https://github.com/marciclabas/sqltypes.git
7
- Requires-Python: >=3.10
8
- Description-Content-Type: text/markdown
9
- Requires-Dist: pydantic
10
- Requires-Dist: sqlalchemy
11
- Requires-Dist: lazy-loader
12
-
13
- # Sql Types
14
-
15
- > Custom types for SQLModel/SQLalchemy
16
-
17
- ## Usage
18
-
19
- ```python
20
- from typing import Sequence
21
- from pydantic import BaseModel
22
- from sqlmodel import Field, SQLModel
23
- from sqltypes import PydanticModel, SpaceDelimitedList
24
-
25
- class User(BaseModel):
26
- name: str
27
- age: int
28
-
29
- class MyDBItem(SQLModel, table=True):
30
- id: int | None = Field(default=None, primary_key=True)
31
- tags: Sequence[str] = Field(sa_type=SpaceDelimitedList)
32
- user: User = Field(sa_type=PydanticModel(User))
33
- ```
File without changes
File without changes
File without changes