Metadata-Version: 2.1
Name: Eve-SQLAlchemy
Version: 0.3.dev0
Summary: REST API framework powered by Flask, SQLAlchemy and good intentions.
Home-page: http://github.com/redturtle/eve-sqlachemy
Author: Andrew Mleczko
Author-email: amleczko@redturtle.it
License: GPL
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
License-File: LICENSE
License-File: AUTHORS

Eve SQLAlchemy extension
========================

Powered by Eve, SQLAlchemy and good intentions this extenstion allows to 
effortlessly build and deploy highly customizable, fully featured RESTful Web 
Services with SQL-based backends.

Eve SQLAlchemy is Simple
------------------------
.. code-block:: python

    from eve import Eve
    from eve_sqlalchemy import SQL

    app = Eve(data=SQL)
    app.run()

The API is now live, ready to be consumed:

.. code-block:: console

    $ curl -i http://example.com/people
    HTTP/1.1 200 OK

All you need to bring your API online is a database, a configuration file
(defaults to ``settings.py``) and a launch script.  Overall, you will find that
configuring and fine-tuning your API is a very simple process.

Eve is thoroughly tested under Python 2.6, 2.7, 3.3, 3.4 and PyPy.

Make sure you check both these websites:

- `Official Eve Website <http://python-eve.org/>`_
- `Eve-SQLAlchemy Tutorials and Howtos <http://eve-sqlalchemy.readthedocs.org/>`_


