Custom types for SQLModel/SQLalchemy
Project description
SQL Types
Custom type decorators for SQLModel/SQLAlchemy with Pydantic validation
Installation
pip install sqltypes
Quick Start
from typing import Sequence
from pydantic import BaseModel
from sqlmodel import Field, SQLModel
from sqltypes import ValidatedJSON, SpaceDelimitedList
class User(BaseModel):
name: str
age: int
class Article(SQLModel, table=True):
id: int | None = Field(default=None, primary_key=True)
tags: Sequence[str] = Field(sa_type=SpaceDelimitedList)
author: User = Field(sa_type=ValidatedJSON(User))
Available Types
ValidatedJSON(T, name?)
Stores any Pydantic model or complex type as JSON with automatic validation.
config: Config = Field(sa_type=ValidatedJSON(Config))
SpaceDelimitedList
Stores sequences as space-delimited strings.
tags: Sequence[str] = Field(sa_type=SpaceDelimitedList)
# Database: "python sql database"
# Python: ["python", "sql", "database"]
ValidatedStr(LiteralType)
Validates strings against Pydantic literal types.
from typing import Literal
Status = Literal["pending", "active", "completed"]
status: Status = Field(sa_type=ValidatedStr(Status))
Custom Types
Use CustomTypeMeta to create your own types:
from sqltypes import CustomTypeMeta
from sqlalchemy.types import String
CommaSeparatedList = CustomTypeMeta(
'CommaSeparatedList',
(), {},
Impl=String,
dump=lambda lst: ','.join(lst),
parse=lambda s: s.split(',')
)
Or use CustomStringMeta for string-based types:
from sqltypes import CustomStringMeta
class CommaSeparatedList(metaclass=CustomStringMeta,
dump=lambda lst: ','.join(lst),
parse=lambda s: s.split(',')):
...
Links
- PyPI: https://pypi.org/project/sqltypes/
- Repository: https://github.com/marciclabas/sqltypes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sqltypes-0.1.6.tar.gz.
File metadata
- Download URL: sqltypes-0.1.6.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e3a35c3ea1a6e97f52560018445c65b1801263c84d43450dc21dc1bd5165345
|
|
| MD5 |
c7197956361f8e9ea353260cf39b15ab
|
|
| BLAKE2b-256 |
28c7208723bdd650e8da856ed5b42a4274cec5d1425f39acfc55aea4e06240a2
|
File details
Details for the file sqltypes-0.1.6-py3-none-any.whl.
File metadata
- Download URL: sqltypes-0.1.6-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
607afe2e6b429a5188d0f9d8c8d1975d8a8635912756ffa44a48c0f07958418f
|
|
| MD5 |
f329de5cd90645ddde0bde15aac62d71
|
|
| BLAKE2b-256 |
81fefdf01674a64727b2e52ae63b7ee00dc03af790a979b3da5350bd35a19829
|