Maps an OpenAPI schema to SQLAlchemy models.
Project description
OpenAlchemy
Translates an OpenAPI schema to SQLAlchemy models.
Supports OpenAPI 3.0 and 3.1.
Get started with the online editor that will guide you through using your
existing OpenAPI specification to define your database schema and offers
installing your models using pip
:
Online Editor
Installation
python -m pip install OpenAlchemy
# To be able to load YAML file
python -m pip install OpenAlchemy[yaml]
Example
For example, given the following OpenAPI specification:
# ./examples/simple/example-spec.yml
openapi: "3.0.0"
info:
title: Test Schema
description: API to illustrate OpenAlchemy MVP.
version: "0.1"
paths:
/employee:
get:
summary: Used to retrieve all employees.
responses:
200:
description: Return all employees from the database.
content:
application/json:
schema:
type: array
items:
"$ref": "#/components/schemas/Employee"
components:
schemas:
Employee:
description: Person that works for a company.
type: object
x-tablename: employee
properties:
id:
type: integer
description: Unique identifier for the employee.
example: 0
x-primary-key: true
x-autoincrement: true
name:
type: string
description: The name of the employee.
example: David Andersson
x-index: true
division:
type: string
description: The part of the company the employee works in.
example: Engineering
x-index: true
salary:
type: number
description: The amount of money the employee is paid.
example: 1000000.00
required:
- id
- name
- division
The SQLALchemy models file then becomes:
# models.py
from open_alchemy import init_yaml
init_yaml("./examples/simple/example-spec.yml")
The Base and Employee objects can be accessed:
from open_alchemy.models import Base
from open_alchemy.models import Employee
With the models_filename parameter a file is auto generated with type hints for the SQLAlchemy models at the specified location, for example: type hinted models example. This adds support for IDE auto complete, for example for the model initialization:
and for properties and methods available on an instance:
An extensive set of examples with a range of features is here:
An example API has been defined using connexion and Flask here:
Documentation
Buy me a coffee
Features
- initializing from JSON,
- initializing from YAML,
- build a package with the models for distribution, packaged as sdist or wheel,
- automatically generate a models file,
integer
(32 and 64 bit),number
(float only),boolean
,string
,password
,byte
,binary
,date
,date-time
,- generic JSON data,
$ref
references for columns and models,- remote
$ref
to other files on the same file system (not supported on Windows), - remote
$ref
to other files at a URL, - primary keys,
- auto incrementing,
- indexes,
- composite indexes,
- unique constraints,
- composite unique constraints,
- column nullability,
- foreign keys,
- default values for columns (both application and database side),
- many to one relationships,
- one to one relationships,
- one to many relationships,
- many to many relationships,
- many to many relationships with custom association tables,
- custom foreign keys for relationships,
- back references for relationships,
allOf
inheritance for columns and models,- joined and single table inheritance,
from_str
model methods to construct from JSON string,from_dict
model methods to construct from dictionaries,to_str
model methods to convert instances to JSON string,__str__
model methods to support the pythonstr
function,__repr__
model methods to support the pythonrepr
function,to_dict
model methods to convert instances to dictionaries,readOnly
andwriteOnly
for influence the conversion to and from dictionaries,- exposing created models under
open_alchemy.models
removing the need formodels.py
files, - ability to mix in arbitrary classes into a model,
- can use the short
x-
prefix or a namespacedx-open-alchemy-
prefix for extension properties and - grouping models into schemas.
Contributing
Fork and checkout the repository. To install:
poetry install
To run tests:
poetry run pytest
Make your changes and raise a pull request.
Compiling Docs
poetry shell
cd docs
make html
This creates the index.html
file in docs/build/html/index.html
.
Release Commands
rm -r dist/*
poetry build
poetry publish
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 OpenAlchemy-2.5.0.tar.gz
.
File metadata
- Download URL: OpenAlchemy-2.5.0.tar.gz
- Upload date:
- Size: 89.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23aee416e86e90ff77e122fa0999261f35628643af2955f9d89fec4b62875525 |
|
MD5 | 343d9ce03fe09c4d827f41f2e9960e5f |
|
BLAKE2b-256 | ac2020530bc445d1fbbed62bfa8fdd1a762665c0c5fe40bf4a02b00b799adc6c |
File details
Details for the file OpenAlchemy-2.5.0-py3-none-any.whl
.
File metadata
- Download URL: OpenAlchemy-2.5.0-py3-none-any.whl
- Upload date:
- Size: 132.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 108a4adc58c681bcadd1e022ef1e3e96f75610f59a6c476966f8d2b270c14776 |
|
MD5 | 0eaa3954d3a125ae74a88c693f6c9f1a |
|
BLAKE2b-256 | 0001c0d3b542baa6b153bb42006c8aabf28d1e29a08a3bc38dfcd806ff2492d2 |