RETIRED, further work has moved to Debian project infrastructure
Go to file
kgriffs f2ecd52475 chore: Scale falcon.png
This was done to reduce download time for folks browsing to the rendered
version of README.md.
2013-05-14 17:12:28 -05:00
falcon test: Try again to get coveralls to show 100% 2013-05-14 17:12:28 -05:00
tools test: Enable coveralls (this will break py33 momentarily) 2013-04-26 15:36:38 -04:00
.coveragerc test: Try again to get coveralls to show 100% 2013-05-14 17:12:28 -05:00
.gitignore test(bench): Add bench entry point module 2013-05-14 17:12:27 -05:00
.travis.yml test: Enable coveralls (this will break py33 momentarily) 2013-04-26 15:36:38 -04:00
AUTHORS chore(AUTHORS): Add lichray. Thanks for contributing! 2013-04-26 15:24:24 -04:00
CHANGES.md chore: Update changelog, version string for v0.1.4 2013-04-04 13:33:37 -04:00
HACKING.md doc: Add some bullet points on what batteries come included to the README 2013-03-18 22:51:42 -04:00
LICENSE Added license file 2012-12-06 17:04:18 -05:00
NOTES.md fix: Return method not allowed for a route if responder doesn't handle fields 2013-03-23 15:09:52 -04:00
README.md test: Omit a few more subdirs from coverage that don't need to be checked 2013-05-14 17:12:28 -05:00
falcon.png chore: Scale falcon.png 2013-05-14 17:12:28 -05:00
publish-website.sh feat: Before hooks, also CherryPy benchmark 2013-02-13 17:47:23 -05:00
publish.sh fix(setup): Installing Falcon via PIP throws an error when six not installed. Fixes #81. 2013-02-18 11:42:20 -05:00
setup.cfg test: Only do coveralls on falcon package, and enable branch coverage 2013-05-14 17:12:28 -05:00
setup.py refactor(bench): Moved folder under falcon/ and added entrypoint to setup.py 2013-04-23 17:38:44 -04:00
tox.ini test: Enable coveralls (this will break py33 momentarily) 2013-04-26 15:36:38 -04:00

README.md

Falcon picture

Falcon Build Status Coverage Status

🏃 Come hang out with us in #falconframework on freenode.

Falcon is a high-performance Python framework for building cloud APIs. It tries to do as little as possible while remaining highly effective.

Perfection is finally attained not when there is no longer anything to add, but when there is no longer anything to take away.

- Antoine de Saint-Exupéry

Design Goals

Fast. Cloud APIs need to turn around requests quickly, and make efficient use of hardware. This is particularly important when serving many concurrent requests. Falcon processes requests several times faster than other popular web frameworks.

Light. Only the essentials are included, with six being the only dependency outside the standard library. We work to keep the code lean, making Falcon easier to test, optimize, and deploy.

Flexible. Falcon can be deployed in a variety of ways, depending on your needs. The framework speaks WSGI, and works great with Python 2.6 and 2.7, PyPy, and Python 3.3. There's no tight coupling with any async framework, leaving you free to mix-and-match what you need.

Features

  • Intuitive routing via URI templates and resource classes
  • Easy access to headers and bodies through request and response classes
  • Idiomatic HTTP error responses via a handy exception base class
  • DRY request processing using global, resource, and method hooks
  • Snappy unit testing through WSGI helpers and mocks
  • 20% speed boost when Cython is available
  • Python 2.6, Python 2.7, PyPy and Python 3.3 support
  • Speed, speed, and more speed!

Install

$ pip install cython falcon

Test

$ pip install nose && nosetests

To test across all supported Python versions:

$ pip install tox && tox

Usage

Read the source, Luke!

Docstrings can be found throughout the Falcon code base for your learning pleasure. You can also ask questions in #falconframework on freenode. We are planning on having real docs eventually; if you need them right away, consider sending a pull request. ;)

Here is a simple example showing how to create a Falcon-based API.

class ThingsResource:
    def on_get(self, req, resp):
        """Handles GET requests"""
        resp.status = falcon.HTTP_200
        resp.body = 'Hello world!'

# falcon.API instances are callable WSGI apps
wsgi_app = api = falcon.API()

# Resources are represented by long-lived class instances
things = ThingsResource()

# things will handle all requests to the '/things' URL path
api.add_route('/things', things)

Here is a more involved example, demonstrating getting headers and query parameters, handling errors, and reading/writing message bodies.


import json
import logging

import falcon


class StorageEngine:
    pass


class StorageError(Exception):
    pass


def token_is_valid(token, user_id):
    return True  # Suuuuuure it's valid...


def auth(req, resp, params):
    # Alternatively, do this in middleware
    token = req.get_header('X-Auth-Token')

    if token is None:
        raise falcon.HTTPUnauthorized('Auth token required',
                                      'Please provide an auth token '
                                      'as part of the request',
                                      'http://docs.example.com/auth')

    if not token_is_valid(token, params['user_id']):
        raise falcon.HTTPUnauthorized('Authentication required',
                                      'The provided auth token is '
                                      'not valid. Please request a '
                                      'new token and try again.',
                                      'http://docs.example.com/auth')


def check_media_type(req, resp, params):
    if not req.client_accepts_json():
        raise falcon.HTTPUnsupportedMediaType(
            'Media Type not Supported',
            'This API only supports the JSON media type.',
            'http://docs.examples.com/api/json')


class ThingsResource:

    def __init__(self, db):
        self.db = db
        self.logger = logging.getLogger('thingsapi.' + __name__)

    def on_get(self, req, resp, user_id):
        marker = req.get_param('marker', default='')
        limit = req.get_param_as_int('limit', default=50)

        try:
            result = self.db.get_things(marker, limit)
        except Exception as ex:
            self.logger.error(ex)

            description = ('Aliens have attacked our base! We will '
                           'be back as soon as we fight them off. '
                           'We appreciate your patience.')

            raise falcon.HTTPServiceUnavailable('Service Outage', description)

        resp.set_header('X-Powered-By', 'Donuts')
        resp.status = falcon.HTTP_200
        resp.body = json.dumps(result)

    def on_post(self, req, resp, user_id):
        try:
            raw_json = req.stream.read()
        except Exception:
            raise falcon.HTTPError(falcon.HTTP_748,
                                   'Read Error',
                                   'Could not read the request body. Must be '
                                   'them ponies again.')

        try:
            thing = json.loads(raw_json, 'utf-8')
        except ValueError:
            raise falcon.HTTPError(falcon.HTTP_753,
                                   'Malformed JSON',
                                   'Could not decode the request body. The '
                                   'JSON was incorrect.')

        try:
            proper_thing = self.db.add_thing(thing)

        except StorageError:
            raise falcon.HTTPError(falcon.HTTP_725,
                                   'Database Error',
                                   "Sorry, couldn't write your thing to the "
                                   'database. It worked on my machine.')

        resp.status = falcon.HTTP_201
        resp.location = '/%s/things/%s' % (user_id, proper_thing.id)

wsgi_app = api = falcon.API(before=[auth, check_media_type])

db = StorageEngine()
things = ThingsResource(db)
api.add_route('/{user_id}/things', things)

Contributing

Kurt Griffiths (kgriffs) is the creator and current maintainer of the Falcon framework. Pull requests are always welcome.

Before submitting a pull request, please ensure you have added/updated the appropriate tests (and that all existing tests still pass with your changes), and that your coding style follows PEP 8 and doesn't cause pyflakes to complain.

Commit messages should be formatted using AngularJS conventions (one-liners are OK for now but body and footer may be required as the project matures).

Comments follow Google's style guide.

Copyright 2013 by Rackspace Hosting, Inc.

Falcon image courtesy of John O'Neill.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.