Documentation: https://dbgen.modelyst.com
Github: https://github.com/modelyst/dbgen
❗ Please note that this project is actively under major rewrites and installations are subject to breaking changes.
DBgen (Database Generator) is an open-source Python library for connecting raw data, scientific theories, and relational databases. The package was designed with a focus on the developer experience at the core. DBgen was initially developed by Modelyst.
DBgen was designed to support scientific data analysis with the following characteristics:
-
Transparent
- Because scientific efforts ought be shareable and mutually understandable.
-
Flexible
- Because scientific theories are under continuous flux.
-
Maintainable
- Because the underlying scientific models one works with are complicated enough on their own, we can't afford to introduce any more complexity via our framework.
DBGen is an opinionated ETL tool. While many other ETL tools exist, they rarely give the tools necessary for a scientific workflow. DBGen is a tool that helps populate a single postgresql database using a transparent, flexible, and mainatable data pipeline.
Orchestrators: Many tools exist to orchestrate python workflows. However, these tools often often are too general to help the average scientist wrangle their data or are so specific to storing a given workflow type they lack the flexibility needed to address the specifics of a scientist's data problems. Many other tools also come packaged with powerful
-
An ORM tool (see Hibernate for Java or SQLAlchemy for Python)
- DBGen utilizes the popular SQLAlchemy ORM to operate at an even higher level extraction, allowing the users to build pipelines and schema without actively thinking about the database tables or insert and select statements required to connect the workflow together.
-
A database manager (see MySQLWorkbench, DBeaver, TablePlus, etc.)
-
An opinionated tool with a particular schema for scientific data / theories.
Currently, the only method of installing DBgen is through Github. This is best done by using the poetry package manager. To do this, first clone the repo to a local directory. Then use the command poetry install
in the directory to install the required dependencies. You will need at least python 3.7 to install the package.
# Get DBgen
git clone https://github.com/modelyst/dbgen
cd ./dbgen
# Get Poetry
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 - --preview
# Install Poetrywhich ma
poetry install
poetry shell
# Test dbgen
dbgen version
dbgen model validate --model tests.example.full_model:make_model
python -m pip install modelyst-dbgen
Documentation of modules and classes can be found in API docs </modules>.
Please report any bugs and issues at DBgen's Github Issues page.
DBgen is released under the Apache 2.0 License.
This work was funded in part by Toyota Research Institute, Inc.