Skip to main content

A RESTful extention on Tornado. Mingcai SHEN <archsh@gmail.com>

Project description

Express Extension for Tornado
======================

**A RESTful extension for tornado.**

*Note: It's under very basic development now, every thing can be changed in the next commit.*

Features
----------------------
1. XXX
1. XXXX
1. XXXX
1. XXXX
1. XXXX

Quick Start
----------------------

# -*- coding: utf-8 -*-
from torexpress.application import ExpressApplication
from torexpress.handler import ExpressHandler
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, Sequence, MetaData, ForeignKey
from sqlalchemy.orm import relationship, backref
from sqlalchemy.orm.query import Query

Base = declarative_base()

class User(Base):
__tablename__ = 'users'
id = Column(Integer, Sequence('user_id_seq'), primary_key=True)
name = Column(String(50), nullable=False, unique=True)
fullname = Column(String(50), nullable=True)
password = Column(String(40), nullable=True)

class UserHandler(ExpressHandler):
"""UserHandler to process User table."""

class Meta:
table = User

@encoder('password')
def password_encoder(self, passwd, inst=None):
import hashlib
return hashlib.new('md5', passwd).hexdigest()

if __name__ == "__main__":
import tornado.ioloop
application = ExpressApplication([UserHandler.route_to('/users'), ],
dburi='sqlite:///:memory:', loglevel='DEBUG', debug=True)
Base.metadata.create_all(application.db_engine)
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()


Requirements
----------------------

- Tornado >= 3.1.1
- SQLAlchemy >= 0.8
- Simplejson
- PyYAML

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-torexpress-0.1.5.tar.gz (19.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page