Flask-APIAlchemy

Adds APIAlchemy support to your Flask application, modeled after Flask-SQLAlchemy.


License
BSD-3-Clause
Install
pip install Flask-APIAlchemy==1.1.0

Documentation

Flask-APIAlchemy

Flask-APIAlchemy is an extension for Flask, modeled after Flask-SQLAlchemy, that adds support for APIAlchemy to your application. It aims to simplify using APIAlchemy with Flask.

Installation

pip install Flask-APIAlchemy

A Simple Example

Output the contents of a file located in a GitHub repository:

from flask import Flask
from flask_apialchemy import APIAlchemy

app = Flask(__name__)
app.config['APIALCHEMY_SERVICE_URI'] = 'github://apikey@github.com'
aa = APIAlchemy(app)

kwargs = {
    'org': 'org_name',
    'repo': 'repo_name',
    'path': 'path/to/file'
}

file_contents = aa.service.get_file_contents(aa.service.client, **kwargs)

print(file_contents)

License

Distributed under the BSD 3-Clause license.