flask-restless adopted for tornado
Project description
tornado-restless
================
Inspired on flask-restless this is a sqlalchemy restless api wrapper for tornado.
Flask-Restless provides a ReSTful JSON API for sqlalchemy.
Due to the fact that I'm a tornado fan I adapted Lincoln de Sousa's and Jeffrey Finkelstein's great library for using with tornado.
In many details this implementation follows the documentation of Flask-Restless:
https://flask-restless.readthedocs.org/en/latest/index.html
However there are some restrictions that are currently not implemented (like processors) or are slightly differ.
A autogenerated (using sphinx) version of the documentation for tornado-restless can be found at http://tornado-utils.github.io/tornado-restless/
Copyright license
=================
flask-restless was dual licensed under the GNU Affero General Public License and 3-clause BSD License.
tornado-restless is dual licences under the GNU Affero General Public License or the 3-clause BSD License.
For more information see the [LICENSE.AGPL.txt] or [LICENSE.BSD.txt].
Installing
==========
tornado-restless was developed under python3.3, sqlalchemy0.9 and tornado3.1
To install this library as an egg use:
python setup.py install
Quickstart
==========
import tornado.ioloop
import tornado.web
from tornado_restless import ApiManager
from sqlalchemy import create_engine, schema, Column
from sqlalchemy.types import Integer, String
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
# Init Tornado Application
application = tornado.web.Application([])
# Init SQLAlchemy
engine = create_engine('sqlite:///:memory:')
metadata = schema.MetaData()
Session = sessionmaker(bind=engine)
Base = declarative_base(metadata=metadata)
session = Session()
# Create some model
class Person(Base):
__tablename__ = 'persons'
id = Column(Integer, primary_key=True)
name = Column(String, unique=True)
metadata.create_all(engine)
# Create restless api handlers
api = ApiManager(application=application, session_maker=Session)
api.create_api(Person)
if __name__ == "__main__":
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()
================
Inspired on flask-restless this is a sqlalchemy restless api wrapper for tornado.
Flask-Restless provides a ReSTful JSON API for sqlalchemy.
Due to the fact that I'm a tornado fan I adapted Lincoln de Sousa's and Jeffrey Finkelstein's great library for using with tornado.
In many details this implementation follows the documentation of Flask-Restless:
https://flask-restless.readthedocs.org/en/latest/index.html
However there are some restrictions that are currently not implemented (like processors) or are slightly differ.
A autogenerated (using sphinx) version of the documentation for tornado-restless can be found at http://tornado-utils.github.io/tornado-restless/
Copyright license
=================
flask-restless was dual licensed under the GNU Affero General Public License and 3-clause BSD License.
tornado-restless is dual licences under the GNU Affero General Public License or the 3-clause BSD License.
For more information see the [LICENSE.AGPL.txt] or [LICENSE.BSD.txt].
Installing
==========
tornado-restless was developed under python3.3, sqlalchemy0.9 and tornado3.1
To install this library as an egg use:
python setup.py install
Quickstart
==========
import tornado.ioloop
import tornado.web
from tornado_restless import ApiManager
from sqlalchemy import create_engine, schema, Column
from sqlalchemy.types import Integer, String
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
# Init Tornado Application
application = tornado.web.Application([])
# Init SQLAlchemy
engine = create_engine('sqlite:///:memory:')
metadata = schema.MetaData()
Session = sessionmaker(bind=engine)
Base = declarative_base(metadata=metadata)
session = Session()
# Create some model
class Person(Base):
__tablename__ = 'persons'
id = Column(Integer, primary_key=True)
name = Column(String, unique=True)
metadata.create_all(engine)
# Create restless api handlers
api = ApiManager(application=application, session_maker=Session)
api.create_api(Person)
if __name__ == "__main__":
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Tornado-Restless-0.4.5.tar.gz
(28.0 kB
view details)
File details
Details for the file Tornado-Restless-0.4.5.tar.gz
.
File metadata
- Download URL: Tornado-Restless-0.4.5.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d013496969325030d843a1a4c5762e05899902c7a6f307adbcd371d079e52082 |
|
MD5 | 0ea047434f9b935dcc6d353fef01e9eb |
|
BLAKE2b-256 | 4715d3e4327d72808e7ad7ae3f166beeaf4c74b201ae03b16598c1197489a8d2 |