Builds usable models from DBML
Project description
dbml-builder
Generates Pydantic and SQLAlchemy from a DBML file.
This package is for users wanting to use their data model represented
in DBML in production. dbml-builder
accomplishes this
by:
- Generating Pydantic and SQLAlchemy code.
- Verifying existing generated code to see if it matches the specified version and has not been changed since creation.
Currently, there doesn't seem to be a good solution for code generation with DBML in Python
hence the creation of dbml-builder
. Additionally, large software systems tend to break as
Pydantic schemas are modified which is the reason why the package includes verification
functionality.
dbml-builder
is new and actively developed. If you have any feature requests or issues,
please submit them here.
Installation
Install using pip:
pip install dbml_builder
Usage
Generate your ORM and schemas by running:
model-build generate ./project.dbml ./generated
or call generate_models
directly in Python code.
You can check to if the model code is still valid by running:
model-build check v0.9.3 ./generated
or call verify
directly in Python code.
Note that the version is what is specified in the note
for
a given project in DBML.
Example
Suppose we have a project:
>> ls
src/ LICENSE poetry.lock data-model.dbml pyproject.toml
where src
contains your code for your python project.
We can automatically generate code using:
pip install dbml_builder
model-build generate ./data-model.dbml ./src/generated
We can now submit src/generated
to version control and
use the generated code in a module:
from generated.schema import SOME_PYDANTIC_SCHEMA
from generated.orm import SOME_SQLALCHEMY_TABLE
We can also ensure the generated code is not changed by placing a check in our code:
# src/main.py
from dbml_builder import verify
verify('v0.1.0', '../data-model.dbml')
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
File details
Details for the file dbml_builder-0.4.1.tar.gz
.
File metadata
- Download URL: dbml_builder-0.4.1.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Linux/6.2.1-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ddbfa8f0906c689c40c0f142c19c23549c1dc4daba725d097222dcbe5b42bdf |
|
MD5 | 2e26e01589d786c300398300bee050eb |
|
BLAKE2b-256 | 067967d66ab2f108d7db035f6bfcc600b9d45fd504770d93a94a237189e69b4f |
File details
Details for the file dbml_builder-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: dbml_builder-0.4.1-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.9 Linux/6.2.1-arch1-1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9c9f5a950f9378fe98e9df3ed73661a8d8759dd0d3628b16bf6f9547e8287fe |
|
MD5 | 2dd64a242cc86da909b923025cc630cc |
|
BLAKE2b-256 | b04c083374df35b5a812430bdbe4dceaf7fdc0474319e3a37403857715f373ce |