Skip to main content

An unladen web framework for building APIs and app backends.

Project description

Falcon web framework docs Build Status codecov.io

The Falcon Web Framework

Falcon is a reliable, high-performance Python web framework for building large-scale app backends and microservices. It encourages the REST architectural style, and tries to do as little as possible while remaining highly effective.

Falcon apps work with any WSGI server, and run like a champ under CPython 2.7, CPython 3.5+, PyPy2.7, and PyPy3.5.

Support Falcon Development

Has Falcon helped you make an awesome app? Show your support today with a one-time donation or by becoming a patron. Supporters get cool gear, an opportunity to promote their brand to Python developers, and prioritized support.

Learn how to support Falcon development

Thanks!

What People are Saying

“We have been using Falcon as a replacement for [framework] and we simply love the performance (three times faster) and code base size (easily half of our original [framework] code).”

“Falcon looks great so far. I hacked together a quick test for a tiny server of mine and was ~40% faster with only 20 minutes of work.”

“Falcon is rock solid and it’s fast.”

“I’m loving #falconframework! Super clean and simple, I finally have the speed and flexibility I need!”

“I feel like I’m just talking HTTP at last, with nothing in the middle. Falcon seems like the requests of backend.”

“The source code for Falcon is so good, I almost prefer it to documentation. It basically can’t be wrong.”

“What other framework has integrated support for 786 TRY IT NOW ?”

How is Falcon Different?

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

We designed Falcon to support the demanding needs of large-scale microservices and responsive app backends. Falcon complements more general Python web frameworks by providing bare-metal performance, reliability, and flexibility wherever you need it.

Fast. Same hardware, more requests. Falcon turns around requests several times faster than most other Python frameworks. For an extra speed boost, Falcon compiles itself with Cython when available, and also works well with PyPy. Considering a move to another programming language? Benchmark with Falcon + PyPy first.

Reliable. We go to great lengths to avoid introducing breaking changes, and when we do they are fully documented and only introduced (in the spirit of SemVer) with a major version increment. The code is rigorously tested with numerous inputs and we require 100% coverage at all times. Falcon does not depend on any external Python packages.

Flexible. Falcon leaves a lot of decisions and implementation details to you, the API developer. This gives you a lot of freedom to customize and tune your implementation. Due to Falcon’s minimalist design, Python community members are free to independently innovate on Falcon add-ons and complementary packages.

Debuggable. Falcon eschews magic. It’s easy to tell which inputs lead to which outputs. Unhandled exceptions are never encapsulated or masked. Potentially surprising behaviors, such as automatic request body parsing, are well-documented and disabled by default. Finally, when it comes to the framework itself, we take care to keep logic paths simple and understandable. All this makes it easier to reason about the code and to debug edge cases in large-scale deployments.

Features

  • Highly-optimized, extensible code base

  • Intuitive routing via URI templates and REST-inspired resource classes

  • Easy access to headers and bodies through request and response classes

  • DRY request processing via middleware components and hooks

  • Idiomatic HTTP error responses

  • Straightforward exception handling

  • Snappy unit testing through WSGI helpers and mocks

  • CPython 2.7, CPython 3.5+, PyPy2.7, and PyPy3.5 support

  • ~20% speed boost under CPython when Cython is available

Who’s Using Falcon?

Falcon is used around the world by a growing number of organizations, including:

  • 7ideas

  • Cronitor

  • EMC

  • Hurricane Electric

  • Leadpages

  • OpenStack

  • Rackspace

  • Shiftgig

  • tempfil.es

  • Opera Software

If you are using the Falcon framework for a community or commercial project, please consider adding your information to our wiki under Who’s Using Falcon?

Community

A number of Falcon add-ons, templates, and complementary packages are available for use in your projects. We’ve listed several of these on the Falcon wiki as a starting point, but you may also wish to search PyPI for additional resources.

The Falconry community on Gitter is a great place to ask questions and share your ideas. You can find us in falconry/user. We also have a falconry/dev room for discussing the design and development of the framework itself.

Per our Code of Conduct, we expect everyone who participates in community discussions to act professionally, and lead by example in encouraging constructive discussions. Each individual in the community is responsible for creating a positive, constructive, and productive culture.

Installation

PyPy

PyPy is the fastest way to run your Falcon app. Both PyPy2.7 and PyPy3.5 are supported as of PyPy v5.10.

$ pip install falcon

Or, to install the latest beta or release candidate, if any:

$ pip install --pre falcon

CPython

Falcon also fully supports CPython 2.7 and 3.5+.

Universal and manylinux wheels are available on PyPI for the Falcon framework. Installation is as simple as:

$ pip install falcon

Installing one of the pre-built Falcon wheels is a great way to get up and running quickly. However, when deploying your application in production, you may wish to compile Falcon via Cython yourself, using the target system’s native toolchain.

The following commands tell pip to install Cython, and then to invoke Falcon’s setup.py, which will in turn detect the presence of Cython and then compile (AKA cythonize) the Falcon framework with the system’s default C compiler.

$ pip install cython
$ pip install --no-binary :all: falcon

If you want to verify that Cython is being invoked, simply pass -v to pip in order to echo the compilation commands:

$ pip install -v --no-binary :all: falcon

Installing on OS X

Xcode Command Line Tools are required to compile Cython. Install them with this command:

$ xcode-select --install

The Clang compiler treats unrecognized command-line options as errors, for example:

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future]

You might also see warnings about unused functions. You can work around these issues by setting additional Clang C compiler flags as follows:

$ export CFLAGS="-Qunused-arguments -Wno-unused-function"

Dependencies

Falcon does not require the installation of any other packages, although if Cython has been installed into the environment, it will be used to optimize the framework when not using a manylinux wheel, as explained above.

WSGI Server

Falcon speaks WSGI, and so in order to serve a Falcon app, you will need a WSGI server. Gunicorn and uWSGI are some of the more popular ones out there, but anything that can load a WSGI app will do.

$ pip install [gunicorn|uwsgi]

Source Code

Falcon lives on GitHub, making the code easy to browse, download, fork, etc. Pull requests are always welcome! Also, please remember to star the project if it makes you happy. :)

Once you have cloned the repo or downloaded a tarball from GitHub, you can install Falcon like this:

$ cd falcon
$ pip install .

Or, if you want to edit the code, first fork the main repo, clone the fork to your desktop, and then run the following to install it using symbolic linking, so that when you change your code, the changes will be automagically available to your app without having to reinstall the package:

$ cd falcon
$ pip install -e .

You can manually test changes to the Falcon framework by switching to the directory of the cloned repo and then running pytest:

$ cd falcon
$ pip install -r requirements/tests
$ pytest tests

Or, to run the default set of tests:

$ pip install tox && tox

See also the tox.ini file for a full list of available environments.

Read the docs

The docstrings in the Falcon code base are quite extensive, and we recommend keeping a REPL running while learning the framework so that you can query the various modules and classes as you have questions.

Online docs are available at: https://falcon.readthedocs.io

You can build the same docs locally as follows:

$ pip install tox && tox -e docs

Once the docs have been built, you can view them by opening the following index page in your browser. On OS X it’s as simple as:

$ open docs/_build/html/index.html

Or on Linux:

$ xdg-open docs/_build/html/index.html

Getting started

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

# things.py

# Let's get this party started!
import falcon


# Falcon follows the REST architectural style, meaning (among
# other things) that you think in terms of resources and state
# transitions, which map to HTTP verbs.
class ThingsResource(object):
    def on_get(self, req, resp):
        """Handles GET requests"""
        resp.status = falcon.HTTP_200  # This is the default status
        resp.body = ('\nTwo things awe me most, the starry sky '
                     'above me and the moral law within me.\n'
                     '\n'
                     '    ~ Immanuel Kant\n\n')

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

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

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

You can run the above example using any WSGI server, such as uWSGI or Gunicorn. For example:

$ pip install gunicorn
$ gunicorn things:app

Then, in another terminal:

$ curl localhost:8000/things

A more complex example

Here is a more involved example that demonstrates reading headers and query parameters, handling errors, and working with request and response bodies.

import json
import logging
import uuid
from wsgiref import simple_server

import falcon
import requests


class StorageEngine(object):

    def get_things(self, marker, limit):
        return [{'id': str(uuid.uuid4()), 'color': 'green'}]

    def add_thing(self, thing):
        thing['id'] = str(uuid.uuid4())
        return thing


class StorageError(Exception):

    @staticmethod
    def handle(ex, req, resp, params):
        description = ('Sorry, couldn\'t write your thing to the '
                       'database. It worked on my box.')

        raise falcon.HTTPError(falcon.HTTP_725,
                               'Database Error',
                               description)


class SinkAdapter(object):

    engines = {
        'ddg': 'https://duckduckgo.com',
        'y': 'https://search.yahoo.com/search',
    }

    def __call__(self, req, resp, engine):
        url = self.engines[engine]
        params = {'q': req.get_param('q', True)}
        result = requests.get(url, params=params)

        resp.status = str(result.status_code) + ' ' + result.reason
        resp.content_type = result.headers['content-type']
        resp.body = result.text


class AuthMiddleware(object):

    def process_request(self, req, resp):
        token = req.get_header('Authorization')
        account_id = req.get_header('Account-ID')

        challenges = ['Token type="Fernet"']

        if token is None:
            description = ('Please provide an auth token '
                           'as part of the request.')

            raise falcon.HTTPUnauthorized('Auth token required',
                                          description,
                                          challenges,
                                          href='http://docs.example.com/auth')

        if not self._token_is_valid(token, account_id):
            description = ('The provided auth token is not valid. '
                           'Please request a new token and try again.')

            raise falcon.HTTPUnauthorized('Authentication required',
                                          description,
                                          challenges,
                                          href='http://docs.example.com/auth')

    def _token_is_valid(self, token, account_id):
        return True  # Suuuuuure it's valid...


class RequireJSON(object):

    def process_request(self, req, resp):
        if not req.client_accepts_json:
            raise falcon.HTTPNotAcceptable(
                'This API only supports responses encoded as JSON.',
                href='http://docs.examples.com/api/json')

        if req.method in ('POST', 'PUT'):
            if 'application/json' not in req.content_type:
                raise falcon.HTTPUnsupportedMediaType(
                    'This API only supports requests encoded as JSON.',
                    href='http://docs.examples.com/api/json')


class JSONTranslator(object):
    # NOTE: Starting with Falcon 1.3, you can simply
    # use req.media and resp.media for this instead.

    def process_request(self, req, resp):
        # req.stream corresponds to the WSGI wsgi.input environ variable,
        # and allows you to read bytes from the request body.
        #
        # See also: PEP 3333
        if req.content_length in (None, 0):
            # Nothing to do
            return

        body = req.stream.read()
        if not body:
            raise falcon.HTTPBadRequest('Empty request body',
                                        'A valid JSON document is required.')

        try:
            req.context.doc = json.loads(body.decode('utf-8'))

        except (ValueError, UnicodeDecodeError):
            raise falcon.HTTPError(falcon.HTTP_753,
                                   'Malformed JSON',
                                   'Could not decode the request body. The '
                                   'JSON was incorrect or not encoded as '
                                   'UTF-8.')

    def process_response(self, req, resp, resource):
        if not hasattr(resp.context, 'result'):
            return

        resp.body = json.dumps(resp.context.result)


def max_body(limit):

    def hook(req, resp, resource, params):
        length = req.content_length
        if length is not None and length > limit:
            msg = ('The size of the request is too large. The body must not '
                   'exceed ' + str(limit) + ' bytes in length.')

            raise falcon.HTTPPayloadTooLarge(
                'Request body is too large', msg)

    return hook


class ThingsResource(object):

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

    def on_get(self, req, resp, user_id):
        marker = req.get_param('marker') or ''
        limit = req.get_param_as_int('limit') or 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,
                30)

        # An alternative way of doing DRY serialization would be to
        # create a custom class that inherits from falcon.Request. This
        # class could, for example, have an additional 'doc' property
        # that would serialize to JSON under the covers.
        #
        # NOTE: Starting with Falcon 1.3, you can simply
        # use resp.media for this instead.
        resp.context.result = result

        resp.set_header('Powered-By', 'Falcon')
        resp.status = falcon.HTTP_200

    @falcon.before(max_body(64 * 1024))
    def on_post(self, req, resp, user_id):
        try:
            # NOTE: Starting with Falcon 1.3, you can simply
            # use req.media for this instead.
            doc = req.context.doc
        except AttributeError:
            raise falcon.HTTPBadRequest(
                'Missing thing',
                'A thing must be submitted in the request body.')

        proper_thing = self.db.add_thing(doc)

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


# Configure your WSGI server to load "things.app" (app is a WSGI callable)
app = falcon.API(middleware=[
    AuthMiddleware(),
    RequireJSON(),
    JSONTranslator(),
])

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

# If a responder ever raised an instance of StorageError, pass control to
# the given handler.
app.add_error_handler(StorageError, StorageError.handle)

# Proxy some things to another service; this example shows how you might
# send parts of an API off to a legacy system that hasn't been upgraded
# yet, or perhaps is a single cluster that all data centers have to share.
sink = SinkAdapter()
app.add_sink(sink, r'/search/(?P<engine>ddg|y)\Z')

# Useful for debugging problems in your API; works with pdb.set_trace(). You
# can also use Gunicorn to host your app. Gunicorn can be configured to
# auto-restart workers when it detects a code change, and it also works
# with pdb.
if __name__ == '__main__':
    httpd = simple_server.make_server('127.0.0.1', 8000, app)
    httpd.serve_forever()

Contributing

Thanks for your interest in the project! We welcome pull requests from developers of all skill levels. To get started, simply fork the master branch on GitHub to your personal account and then clone the fork into your development environment.

If you would like to contribute but don’t already have something in mind, we invite you to take a look at the issues listed under our next milestone. If you see one you’d like to work on, please leave a quick comment so that we don’t end up with duplicated effort. Thanks in advance!

Please note that all contributors and maintainers of this project are subject to our Code of Conduct.

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.

Comments follow Google’s style guide, with the additional requirement of prefixing inline comments using your GitHub nick and an appropriate prefix:

  • TODO(riker): Damage report!

  • NOTE(riker): Well, that’s certainly good to know.

  • PERF(riker): Travel time to the nearest starbase?

  • APPSEC(riker): In all trust, there is the possibility for betrayal.

The core Falcon project maintainers are:

  • Kurt Griffiths, Project Lead (kgriffs on GH, Gitter, and Twitter)

  • John Vrbanac (jmvrbanac on GH and Gitter, and jvrbanac on Twitter)

  • Vytautas Liuolia (vytas7 on GH and Gitter)

  • Nick Zaccardi (nZac on GH and Gitter)

Please don’t hesitate to reach out if you have any questions, or just need a little help getting started. You can find us in falconry/dev on Gitter.

See also: CONTRIBUTING.md

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

falcon-2.0.0rc2.tar.gz (398.5 kB view details)

Uploaded Source

Built Distributions

falcon-2.0.0rc2-py2.py3-none-any.whl (164.0 kB view details)

Uploaded Python 2 Python 3

falcon-2.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7m

falcon-2.0.0rc2-cp37-cp37m-manylinux1_i686.whl (4.4 MB view details)

Uploaded CPython 3.7m

falcon-2.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6m

falcon-2.0.0rc2-cp36-cp36m-manylinux1_i686.whl (4.4 MB view details)

Uploaded CPython 3.6m

falcon-2.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.5m

falcon-2.0.0rc2-cp35-cp35m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.5m

falcon-2.0.0rc2-cp34-cp34m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.4m

falcon-2.0.0rc2-cp34-cp34m-manylinux1_i686.whl (4.2 MB view details)

Uploaded CPython 3.4m

falcon-2.0.0rc2-cp27-cp27mu-manylinux1_x86_64.whl (4.1 MB view details)

Uploaded CPython 2.7mu

falcon-2.0.0rc2-cp27-cp27mu-manylinux1_i686.whl (3.8 MB view details)

Uploaded CPython 2.7mu

falcon-2.0.0rc2-cp27-cp27m-manylinux1_x86_64.whl (4.1 MB view details)

Uploaded CPython 2.7m

falcon-2.0.0rc2-cp27-cp27m-manylinux1_i686.whl (3.8 MB view details)

Uploaded CPython 2.7m

File details

Details for the file falcon-2.0.0rc2.tar.gz.

File metadata

  • Download URL: falcon-2.0.0rc2.tar.gz
  • Upload date:
  • Size: 398.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2.tar.gz
Algorithm Hash digest
SHA256 65ea1b37b74f7b09e1e0831b1f477d9c3e1d7c63fc8fee03bcb849c6eabd34c4
MD5 681995ef30f693106d08a4935e0046db
BLAKE2b-256 3d4e09ea27cb5364db30cfad78ef5178e7aa3e5365a24a343384b6282cca8e6d

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-py2.py3-none-any.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-py2.py3-none-any.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1f19f5a359b372d1c64eee9abb66025fe3bcad088693523d0a11f6acbe1aab83
MD5 27e0db12eb590aabe0b4829c7be78ecd
BLAKE2b-256 41679867c4a1d4c073bde92424943a4f7bd9c78378f3fae3b15942cbb3056a93

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 719787beae0a7f1ade35a399114fb8f29670c69bad151fb71927b43861f9dcb7
MD5 5842016c74c011a55863092cb24f5b5f
BLAKE2b-256 f689bc03156bed6c744e6891ebbf834e533becf44348f82615273100f15d483e

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 188524fd39bc97267d2cef898dbe42b4a8e25baa4baf144d8a6b287a16affcb8
MD5 baad23f2a7b988d1fe6200e745ebafb7
BLAKE2b-256 4d36d02d65340ca24fe47ace1b3f9255165df5bc009213125ab46f6f74ad3495

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aeac9f3218d292b87fcb8ed33dd2937bd4989bd05c4e72636ce406b8647cb688
MD5 540e9fdb909188b93ca42fe5f833cdf6
BLAKE2b-256 922171ac410ab13f92f9b0e45ec1be36b1ad42f28967b40cfb4de654dce23d55

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d54600d97bf5fc941c544ac3e0bfd42124ffe616789bf2534bccad669bf105c
MD5 61af591cd30b6bd45b696a1884b6c12d
BLAKE2b-256 93fac45b52d7ba54e5938a4cb6b45ed0271fcd0cd7b05091879afd904be2ca64

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0456a9fba86798d75706c848cd373ea7d783b54a829e340592bd972afd0fee82
MD5 2aa76480db672743169fd28921983065
BLAKE2b-256 db75478211f8f221e1658132842ff03c4f4d6701998229c08c1a9c624d20dac0

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4094164d02a59610c5ee7d2e9b4bb5287c1e2703574e81a16caacb425c428b6
MD5 81559e4e90c6f0d073523008a85dcbb7
BLAKE2b-256 0d90062ab37024c84b4563147b2413eee454b12d8e40284a2b87d675fc22e4d5

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c6b4c1e187cb953975f3f37478754111b22b00bf52f65c6cf32aa5fe41578b4
MD5 4f99a603787f175e9896447971498a0f
BLAKE2b-256 992aa5a942fb5ae873e61fdc060cf0ee47a05b182d115aaad3f60e8beaf43885

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 322a2d0853381aefe04616549e07f94838e450bf2d6055fd1a31dae7a78b905c
MD5 ac20cc25203732a8d52251ad112bf194
BLAKE2b-256 3ef1d0e76aa758c186f332fa115407d76cef01fbc1695c54016250c73b0a3094

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 84a0cff18b68e9e8aca5c18f97468b4a0c16a308901b9b44cf08a61271305b8c
MD5 35e3e7ad2fa6a9a6c160ecd12cba43ed
BLAKE2b-256 99b4850831dc2f199336c8303c0e83051ddaf5ed6742f74d0062561e46a75127

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b52aa9befe59c4302546ceefd4a93aef08fda824be744a405f9b405b2a215d1
MD5 d089dcfe5d74573b362d44fdfd3a02eb
BLAKE2b-256 ac775ee97b67dd4fee98051c98c4caff9199426c988e62dd5b6a468f72740e4d

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d3b982d3c2c2fb6a6c0ed94c459010bb7a284af92b4bc4832af0c83b6e3f687b
MD5 441ba4ac4f0990e7879a989882a98ebf
BLAKE2b-256 2369c082b9c09adc08b9bf3eb8abec4f63e5a8db777280ca1d30b60dc2a00469

See more details on using hashes here.

File details

Details for the file falcon-2.0.0rc2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: falcon-2.0.0rc2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 PyPy/7.1.0beta

File hashes

Hashes for falcon-2.0.0rc2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcacf85d91261ccd981ccc40ebba27a25318ffadc165d4d02a83b57f7c06e54c
MD5 d45b17c8215b71b2a397dea3670295d1
BLAKE2b-256 4e7ad78547feee0c709a0ba238c22adc9c19b76253c9070bdc350d2db0999beb

See more details on using hashes here.

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