Skip to main content

Generate typed models from your database for Python, Go, and TypeScript.

Project description

db2model

Generate typed models from your database for Python, Go, and TypeScript.

Features

  • Database-first: generate from existing DB
  • Typed output
  • Customizable generation rules

Generation supported

  • python
    • postgresql

Install

pip install db2model

Quick start

It is strongly recommended to use the library within python script as it offers way more control than cli.

Within a script

import logging
from pathlib import Path

from db2model.config import Db2ModelSettings, DbSettings, PathSettings
from db2model.generator.python import generate_python_models
from db2model.types import SqlDialect

logging.basicConfig(level=logging.DEBUG)

logger = logging.getLogger()

db2model_settings = Db2ModelSettings(
    path_settings=PathSettings(
        output_python_models_path=Path(OUT_PY).resolve(),
        output_raw_path=Path(OUT_RAW).resolve(),
    ),
    db_settings=DbSettings(
        user="user",
        password="password",
        host="localhost",
        port=5432,
        db="my_db",
        default_schema="public",
        sql_dialect=SqlDialect.POSTGRESQL,
    ),
    globally_ignored_tables=[
        "_yoyo_log",
        "_yoyo_migration",
        "_yoyo_version",
        "yoyo_lock",
        "spatial_ref_sys",
    ],

    ## Specific to Postgresql
    schemas=["auth", "public", "schema1"],
    schema_to_ignored_tables_map={
        "auth": ["specific_table_of_auth"],
        "public": ["specific_table_of_public"],
        "schema1": [
            "specific_table_of_schema1",
            "other_specific_table_of_schema1",
        ],
    },

    ## Specific to python typing
    # These fields will not be arguments of the __init__ class function
    init_false_column_names=["created_at", "updated_at", "deleted_at"],
)

if __name__ == "__main__":
    generate_python_models(db2model_settings, logger)

Will generate

OUT_RAW/
├── <...>.py
└── ...

OUT_PY/
├── __init__.py
├── auth/
│   ├── __init__.py
│   ├── table1.py
│   ├── ...
│   └── tableN.py
├── public/
│   └── ...
└── schema1/
    └── ...

Using cli

Limited usage.

db2model generate \
  --db-url postgresql://user:pass@localhost:5432/mydb \
  --lang python \
  --output-path ./models
  ## To ignore tables
  --ignored-tables table_to_ignore1
  --ignored-tables table_to_ignore2
  --ignored-tables table_to_ignore3
  ## If dialect is postgresql you must provide the schemas targetted
  --schemas public
  --schemas my_schema1

Example

Input table:

CREATE TABLE sessions (
    id UUID DEFAULT uuidv7(),
    user_id UUID NOT NULL,
    created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
    expires_at TIMESTAMPTZ NOT NULL,
    last_used_at TIMESTAMPTZ,
    revoked_at TIMESTAMPTZ,
    ip_address INET,
    user_agent TEXT,

    CONSTRAINT pk_sessions_id PRIMARY KEY (id),

    CONSTRAINT fk_sessions_users FOREIGN KEY (user_id)
        REFERENCES users (id)
        ON DELETE CASCADE
);

CREATE INDEX idx_sessions_expiresat
    ON sessions (expires_at);

CREATE INDEX idx_sessions_revokedat
    ON sessions (revoked_at);

CREATE INDEX idx_sessions_userid
    ON sessions (user_id);

Generated (Python):

class Sessions(Base):
    __tablename__ = "sessions"
    __table_args__ = (
        ForeignKeyConstraint(
            ["user_id"], ["auth.users.id"], ondelete="CASCADE", name="fk_sessions_users"
        ),
        PrimaryKeyConstraint("id", name="pk_sessions_id"),
        Index("idx_sessions_expiresat", "expires_at"),
        Index("idx_sessions_revokedat", "revoked_at"),
        Index("idx_sessions_userid", "user_id"),
        {"schema": "auth"},
    )

    id: Mapped[uuid.UUID] = mapped_column(
        Uuid, primary_key=True, server_default=text("uuidv7()"), init=False
    )
    user_id: Mapped[uuid.UUID] = mapped_column(Uuid, nullable=False, init=False)
    created_at: Mapped[datetime.datetime] = mapped_column(
        DateTime(True), nullable=False, server_default=text("now()"), init=False
    )
    expires_at: Mapped[datetime.datetime] = mapped_column(
        DateTime(True), nullable=False
    )
    user: Mapped["Users"] = relationship("Users", back_populates="sessions")
    last_used_at: Mapped[Optional[datetime.datetime]] = mapped_column(
        DateTime(True), default=None
    )
    revoked_at: Mapped[Optional[datetime.datetime]] = mapped_column(
        DateTime(True), default=None
    )
    ip_address: Mapped[Optional[Any]] = mapped_column(INET, default=None)
    user_agent: Mapped[Optional[str]] = mapped_column(Text, default=None)

Roadmap

  • Generate in GO & Typescript.
  • Support other sql dialects.

Limitations

  • Two tables within the same database cannot have the same name.
  • In python models, init=False is only applied to child tables if the column holding the foreign key starts with the name of the parent table;
    • If the parent table is users and the column is user_id, behaves as expected.
    • If the parent table is users and the column is agent_id, then init=False will not be applied.
  • Does not support cross-db foreign constraint (neither SqlAlchemy though).

License

MIT

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

db2model-0.1.10.tar.gz (46.2 kB view details)

Uploaded Source

Built Distribution

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

db2model-0.1.10-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file db2model-0.1.10.tar.gz.

File metadata

  • Download URL: db2model-0.1.10.tar.gz
  • Upload date:
  • Size: 46.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for db2model-0.1.10.tar.gz
Algorithm Hash digest
SHA256 5e9615f27ba73f5b56b135c66f3ec4b6fd521fec809333974b09ba7facf26c8b
MD5 ed83237a2b931de9b2bca8b27c4f23a1
BLAKE2b-256 85b3a3406d08b393b104d7fab2a9ac8cbefb60ac22399d3757a4f392146aebe2

See more details on using hashes here.

File details

Details for the file db2model-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: db2model-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for db2model-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 b1c9211115049c4ff7194252d98a7a8d4f4f4cba717046e6c2051bc8e0e14a29
MD5 8bcf72b60f27afc894a63827cadbe828
BLAKE2b-256 d00eed21a0e72a46e270d5f2188c6ebfcf2323a54ebedc61b985825e2d412684

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