Skip to main content

('A collection of routines for building web APIs on top of Tornado web server. ',)

Project description

A collection of routines for building web APIs on top of Tornado web server.

Features

  • Automatic support multiple response formats (JSON, JSONP, XML)

  • Pluggable authentication

  • Error handling

Example usage

import apikit

# Returning objects as response (only basic JSON-encodable types supported):
class MyApiHander(apikit.ApiHandler):
    def get(self):
        self.write_response({'result' : 'sucess',
                             'x' : 1, y : [1,2,3]})

# Authentication:
class MyProtectedResourceBase(apikit.ProtectedResource):
    def authenticate(self, callback):
        if self.get_argument('password') != '12345':
            raise tornado.web.HTTPError(403, "Incorrect or missing password!")
        callback()

class MyProtectedResource(MyProtectedResourceBase):
    def get(self):
        ...

Installation

$ pip install tornado-api-kit

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-api-kit-0.0.1.tar.gz (2.6 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