Skip to main content

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqltypes-0.1.8.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sqltypes-0.1.8-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file sqltypes-0.1.8.tar.gz.

File metadata

  • Download URL: sqltypes-0.1.8.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.10

File hashes

Hashes for sqltypes-0.1.8.tar.gz
Algorithm Hash digest
SHA256 d865c8fc0b10bbfbacbdf8f464bc4e5b43a1bc3580f62b03ffd4567b616c2495
MD5 62b148e1661600308faac44c845cce23
BLAKE2b-256 b1663008f2623832d16b4112704a430d33e1a14172c9e9ea698ab102d013e82b

See more details on using hashes here.

File details

Details for the file sqltypes-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: sqltypes-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 4.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.10

File hashes

Hashes for sqltypes-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 4ffa4dd9c61ca62f5fabdb036fbabaf47f79a42be51697a415bd357380603c15
MD5 6194dea3ce24d9111cd8aa25092ac97d
BLAKE2b-256 eed63d696174015e7e1bf096f4d61b6b228b9fca1e24427b696e94005876bbdb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page