Skip to content

Adds APIAlchemy support to Flask, modeled after Flask-SQLAlchemy

License

Notifications You must be signed in to change notification settings

homedepot/flask-apialchemy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.