Connexion Sqlalchemy Utils

https://img.shields.io/pypi/v/connexion_sql_utils.svg https://img.shields.io/travis/m-housh/connexion_sql_utils.svg https://coveralls.io/repos/github/m-housh/connexion_sql_utils/badge.svg?branch=master Documentation Status

Sqlalchemy, Postgres, Connexion utility

Features

  • Helps create REST api’s quickly with Connexion, Sqlalchemy, and Postgresql

Running example api in Docker

By cloning the repo:

git clone https://github.com/m-housh/connexion_sql_utils.git

cd ./connexion_sql_utils

docker-compose up

Without cloning the repo:

docker pull mhoush/connexion_sql_utils
docker pull postgres/alpine

docker run -d --name some_postgres \
    -e POSTGRES_PASSWORD=postgres \
    postgres:alpine

docker run --rm -it --link some_postgres:postgres \
    -e DB_HOST=postgres \
    -e DB_PASSWORD=postgres \
    -p "8080:8080" \
    mhoush/connexion_sql_utils

Check out the example api at http://localhost:8080/ui

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.