NO LONGER MAINTAINED - A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.
This repository is no longer maintained due to lack of time.
You might check out the fork https://github.com/mrevutskyi/flask-restless-ng instead.
This is Flask-Restless, a Flask extension that creates URL endpoints that
satisfy the requirements of the JSON API specification. It is compatible
with models that have been defined using either SQLAlchemy or
Flask-SQLAlchemy.
This document contains some brief instructions concerning installation of
requirements, installation of this extension, configuration and usage of this
extension, and building of documentation.
For more information, see the
The code comprising this program is copyright 2011 Lincoln de Sousa and
copyright 2012, 2013, 2014, 2015, 2016 Jeffrey Finkelstein and contributors,
and is dual-licensed under the following two copyright licenses:
For more information, see the files LICENSE.AGPL
and LICENSE.BSD
in this
directory.
The documentation is licensed under the Creative Commons Attribution-ShareAlike
4.0 license.
This is a partial listing of the contents of this package.
LICENSE.AGPL
- one possible copyright license under which this program isLICENSE.BSD
- another possible copyright license under which this programdocs/
- the Sphinx documentation for Flask-Restlessexamples/
- example applications of Flask-Restlessflask_restless/
- the Python package containing the extensionMANIFEST.in
- indicates files to include when packaging Flask-RestlessREADME.md
- this filesetup.py
- Python setuptools configuration file for packaging thistests/
- unit tests for Flask-RestlessThe flask_restless
directory is a Python package containing the following
files and directory:
helpers.py
- utility functions, mainly for performing introspection onmanager.py
- contains the main class that end users will utilize to createsearch.py
- functions and classes that facilitate searching the databaseserialization.py
- basic serialization and deserialization for SQLAlchemyviews/
- the view classes that implement the JSON API interfaceThis application can be used with any Python version that Flask supports, which
currently includes versions 2.6, 2.7, 3.3, and 3.4. (Python 3.2 is not
supported by Flask and therefore cannot be supported by Flask-Restless.)
This application requires the following libraries to be installed:
These requirements (and some additional optional packages) are also listed in
the requirements/install.txt
file. Using pip
is probably the easiest way to
install these:
pip install -r requirements/install.txt
This package can be built, installed, etc. as a Python egg using the provided
setup.py
script. For more information, run
python setup.py --help
For information on how to use this extension, build the documentation here or
view it on the Web.
If your Python interpreter is cpython
, run:
pip install -r requirements/test-cpython.txt
Otherwise, if your Python interpreter is pypy
, run:
pip install -r requirements/test-pypy.txt
To run the tests:
python setup.py test
Flask-Restless requires the following program and supporting library to build
the documentation:
These requirements are also listed in the requirements/doc.txt
file. Using
pip
is probably the easiest way to install these:
pip install -r requirements/doc.txt
The documentation is written for Sphinx in reStructuredText files in the
docs/
directory. Documentation for each class and function is provided in the
docstring in the code.
The documentation uses the Flask Sphinx theme. It is included as a git
submodule of this project, rooted at docs/_themes
. To get the themes, do
git submodule update --init
Now to build the documentation, run the command
python setup.py build_sphinx
in the top-level directory. The output can be viewed in a web browser by
opening build/sphinx/html/index.html
.
Please report any issues on the GitHub Issue Tracker.
To suggest a change to the code or documentation, please create a new pull
request on GitHub. Contributed code must come with an appropriate unit
test. Please ensure that your code follows PEP8, by running, for example,
flake8 before submitting a pull request. Also, please squash multiple
commits into a single commit in your pull request by rebasing onto the
master branch.
By contributing to this project, you are agreeing to license your code
contributions under both the GNU Affero General Public License, either version
3 or any later version, and the 3-clause BSD License, and your documentation
contributions under the Creative Commons Attribution-ShareAlike License version
4.0, as described in the copyright license section above.
The artwork/flask-restless-small.svg
and
docs/_static/flask-restless-small.png
are licensed under the Creative
Commons Attribute-ShareAlike 4.0 license. The original image is a scan of
a (now public domain) illustration by Arthur Hopkins in a serial edition of
“The Return of the Native” by Thomas Hardy published in October 1878.
The artwork/flask-restless.svg
and docs/_static/flask-restless.png
are
licensed under the Flask Artwork License.
Jeffrey Finkelstein [email protected]