Translates an OpenAPI schema to SQLAlchemy models.
python3 -m pip install OpenAPI-SQLAlchemy
# To be able to load yaml file
python3 -m pip install PyYAML
For example, given the following OpenAPI specification:
# example-spec.yml
openapi: "3.0.0"
info:
title: Test Schema
description: API to illustrate OpenAPI-SQLALchemy 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 openapi_sqlalchemy import init_yaml
Base, model_factory = init_yaml('./examples/simple-example-spec.yml')
Employee = model_factory(name="Employee")
The following features are supported:
integer
(32 and 64 bit),number
(float only),boolean
,string
,$ref
references for columns and models,- foreign keys,
- many to one relationships and
allOf
inheritance for columns and models.
The following features are on the backlog:
- one to many relationships.
Fork and checkout the repository. To install:
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install -e .[dev]
To run tests:
tox
Make your changes and raise a pull request.
python3 -m venv venv
cd docs
make html
This creates the index.html
file in docs/build/html/index.html
.
rm -r dist/*
python -m pip install --upgrade setuptools wheel
python setup.py sdist bdist_wheel
python -m pip install --upgrade twine
python -m twine upload dist/*