Skip to main content

An unladen web framework for building APIs and app backends.

Project description

Build Status Falcon web framework docs 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 or ASGI server, and run like a champ under CPython 3.5+ and PyPy 3.5+ (3.6+ required for ASGI).

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 ?”

Features

Falcon tries to do as little as possible while remaining highly effective.

  • ASGI, WSGI, and WebSocket support

  • Native asyncio support

  • No reliance on magic globals for routing and state management

  • Stable interfaces with an emphasis on backwards-compatibility

  • Simple API modeling through centralized RESTful routing

  • Highly-optimized, extensible code base

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

  • DRY request processing via middleware components and hooks

  • Strict adherence to RFCs

  • Idiomatic HTTP error responses

  • Straightforward exception handling

  • Snappy testing with WSGI/ASGI helpers and mocks

  • CPython 3.5+ and PyPy 3.5+ support

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.

Thanks!

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.

Debuggable. Falcon eschews magic. It’s easy to tell which inputs lead to which outputs. To avoid incentivizing the use of hard-to-debug global state, Falcon does not use decorators to define routes. Unhandled exceptions are never encapsulated or masked. Potentially surprising behaviors, such as automatic request body parsing, are well-documented and disabled by default. Finally, we take care to keep logic paths within the framework simple, shallow and understandable. All of this makes it easier to reason about the code and to debug edge cases in large-scale deployments.

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.

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. PyPy3.5+ is 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 3.5+.

The latest stable version of Falcon can be installed directly from PyPI:

$ pip install falcon

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

$ pip install --pre falcon

In order to provide an extra speed boost, Falcon can compile itself with Cython. Wheels containing pre-compiled binaries are available from PyPI for several common platforms. However, if a wheel for your platform of choice is not available, you can choose to stick with the source distribution, or use the instructions below to cythonize Falcon for your environment.

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-build-isolation --no-binary :all: falcon

Note that --no-build-isolation is necessary to override pip’s default PEP 517 behavior that can cause Cython not to be found in the build environment.

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-build-isolation --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 as explained above.

WSGI Server

Falcon speaks WSGI (or ASGI; see also below). 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]

ASGI Server

In order to serve a Falcon ASGI app, you will need an ASGI server. Uvicorn is a popular choice:

$ pip install uvicorn

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 --no-use-pep517 -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 WSGI app (the ASGI version is included further down):

# examples/things.py

# Let's get this party started!
from wsgiref.simple_server import make_server

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:
    def on_get(self, req, resp):
        """Handles GET requests"""
        resp.status = falcon.HTTP_200  # This is the default status
        resp.content_type = falcon.MEDIA_TEXT  # Default is JSON, so override
        resp.text = ('\nTwo things awe me most, the starry sky '
                     'above me and the moral law within me.\n'
                     '\n'
                     '    ~ Immanuel Kant\n\n')


# falcon.App instances are callable WSGI apps...
# in larger applications the app is created in a separate file
app = falcon.App()

# 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)

if __name__ == '__main__':
    with make_server('', 8000, app) as httpd:
        print('Serving on port 8000...')

        # Serve until process is killed
        httpd.serve_forever()

You can run the above example directly using the included wsgiref server:

$ pip install falcon
$ python things.py

Then, in another terminal:

$ curl localhost:8000/things

The ASGI version of the example is similar:

# examples/things_asgi.py

import falcon
import falcon.asgi


# 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:
    async def on_get(self, req, resp):
        """Handles GET requests"""
        resp.status = falcon.HTTP_200  # This is the default status
        resp.content_type = falcon.MEDIA_TEXT  # Default is JSON, so override
        resp.text = ('\nTwo things awe me most, the starry sky '
                     'above me and the moral law within me.\n'
                     '\n'
                     '    ~ Immanuel Kant\n\n')


# falcon.asgi.App instances are callable ASGI apps...
# in larger applications the app is created in a separate file
app = falcon.asgi.App()

# 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 ASGI version with uvicorn or any other ASGI server:

$ pip install falcon uvicorn
$ uvicorn things_asgi:app

A More Complex Example (WSGI)

Here is a more involved example that demonstrates reading headers and query parameters, handling errors, and working with request and response bodies. Note that this example assumes that the requests package has been installed.

(For the equivalent ASGI app, see: A More Complex Example (ASGI)).

# examples/things_advanced.py

import json
import logging
import uuid
from wsgiref import simple_server

import falcon
import requests


class StorageEngine:

    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):
        # TODO: Log the error, clean up, etc. before raising
        raise falcon.HTTPInternalServerError()


class SinkAdapter:

    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.text = result.text


class AuthMiddleware:

    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(title='Auth token required',
                                          description=description,
                                          challenges=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(title='Authentication required',
                                          description=description,
                                          challenges=challenges,
                                          href='http://docs.example.com/auth')

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


class RequireJSON:

    def process_request(self, req, resp):
        if not req.client_accepts_json:
            raise falcon.HTTPNotAcceptable(
                description='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(
                    title='This API only supports requests encoded as JSON.',
                    href='http://docs.examples.com/api/json')


class JSONTranslator:
    # NOTE: Normally you would simply use req.media and resp.media for
    # this particular use case; this example serves only to illustrate
    # what is possible.

    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(title='Empty request body',
                                        description='A valid JSON document is required.')

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

        except (ValueError, UnicodeDecodeError):
            description = ('Could not decode the request body. The '
                           'JSON was incorrect or not encoded as '
                           'UTF-8.')

            raise falcon.HTTPBadRequest(title='Malformed JSON',
                                        description=description)

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

        resp.text = 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(
                title='Request body is too large', description=msg)

    return hook


class ThingsResource:

    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(
                title='Service Outage',
                description=description,
                retry_after=30)

        # NOTE: Normally you would use resp.media for this sort of thing;
        # this example serves only to demonstrate how the context can be
        # used to pass arbitrary values between middleware components,
        # hooks, and resources.
        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:
            doc = req.context.doc
        except AttributeError:
            raise falcon.HTTPBadRequest(
                title='Missing thing',
                description='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.App(middleware=[
    AuthMiddleware(),
    RequireJSON(),
    JSONTranslator(),
])

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

# If a responder ever raises 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()

Again this code uses wsgiref, but you can also run the above example using any WSGI server, such as uWSGI or Gunicorn. For example:

$ pip install requests gunicorn
$ gunicorn things:app

On Windows you can run Gunicorn and uWSGI via WSL, or you might try Waitress:

$ pip install requests waitress
$ waitress-serve --port=8000 things:app

To test this example, open another terminal and run:

$ http localhost:8000/1/things authorization:custom-token

You can also view the the application configuration from the CLI via the falcon-inspect-app script that is bundled with the framework:

falcon-inspect-app things_advanced:app

A More Complex Example (ASGI)

Here’s the ASGI version of the app from above. Note that it uses the httpx package in lieu of requests.

# examples/things_advanced_asgi.py

import json
import logging
import uuid

import falcon
import falcon.asgi
import httpx


class StorageEngine:

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

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


class StorageError(Exception):

    @staticmethod
    async def handle(ex, req, resp, params):
        # TODO: Log the error, clean up, etc. before raising
        raise falcon.HTTPInternalServerError()


class SinkAdapter:

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

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

        async with httpx.AsyncClient() as client:
            result = await client.get(url, params=params)

        resp.status = result.status_code
        resp.content_type = result.headers['content-type']
        resp.text = result.text


class AuthMiddleware:

    async 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(title='Auth token required',
                                          description=description,
                                          challenges=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(title='Authentication required',
                                          description=description,
                                          challenges=challenges,
                                          href='http://docs.example.com/auth')

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


class RequireJSON:

    async def process_request(self, req, resp):
        if not req.client_accepts_json:
            raise falcon.HTTPNotAcceptable(
                description='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(
                    description='This API only supports requests encoded as JSON.',
                    href='http://docs.examples.com/api/json')


class JSONTranslator:
    # NOTE: Normally you would simply use req.get_media() and resp.media for
    # this particular use case; this example serves only to illustrate
    # what is possible.

    async def process_request(self, req, resp):
        # NOTE: Test explicitly for 0, since this property could be None in
        # the case that the Content-Length header is missing (in which case we
        # can't know if there is a body without actually attempting to read
        # it from the request stream.)
        if req.content_length == 0:
            # Nothing to do
            return

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

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

        except (ValueError, UnicodeDecodeError):
            description = ('Could not decode the request body. The '
                           'JSON was incorrect or not encoded as '
                           'UTF-8.')

            raise falcon.HTTPBadRequest(title='Malformed JSON',
                                        description=description)

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

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


def max_body(limit):

    async 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(
                title='Request body is too large', description=msg)

    return hook


class ThingsResource:

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

    async 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 = await 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(
                title='Service Outage',
                description=description,
                retry_after=30)

        # NOTE: Normally you would use resp.media for this sort of thing;
        # this example serves only to demonstrate how the context can be
        # used to pass arbitrary values between middleware components,
        # hooks, and resources.
        resp.context.result = result

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

    @falcon.before(max_body(64 * 1024))
    async def on_post(self, req, resp, user_id):
        try:
            doc = req.context.doc
        except AttributeError:
            raise falcon.HTTPBadRequest(
                title='Missing thing',
                description='A thing must be submitted in the request body.')

        proper_thing = await self.db.add_thing(doc)

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


# The app instance is an ASGI callable
app = falcon.asgi.App(middleware=[
    # AuthMiddleware(),
    RequireJSON(),
    JSONTranslator(),
])

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

# If a responder ever raises 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')

You can run the ASGI version with any ASGI server, such as uvicorn:

$ pip install falcon httpx uvicorn
$ uvicorn things_advanced_asgi:app

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, Gitter, and Twitter)

  • Vytautas Liuolia (vytas7 on GH and Gitter, and vliuolia on Twitter)

  • Nick Zaccardi (nZac on GH and Gitter)

  • Federico Caselli (CaselIT 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-3.0.0rc2.tar.gz (632.9 kB view details)

Uploaded Source

Built Distributions

falcon-3.0.0rc2-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

falcon-3.0.0rc2-cp39-cp39-manylinux2014_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9

falcon-3.0.0rc2-cp39-cp39-manylinux2014_s390x.whl (9.2 MB view details)

Uploaded CPython 3.9

falcon-3.0.0rc2-cp39-cp39-manylinux2014_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.9

falcon-3.0.0rc2-cp39-cp39-manylinux2010_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

falcon-3.0.0rc2-cp39-cp39-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.9

falcon-3.0.0rc2-cp39-cp39-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

falcon-3.0.0rc2-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

falcon-3.0.0rc2-cp38-cp38-manylinux2014_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.8

falcon-3.0.0rc2-cp38-cp38-manylinux2014_s390x.whl (10.2 MB view details)

Uploaded CPython 3.8

falcon-3.0.0rc2-cp38-cp38-manylinux2014_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.8

falcon-3.0.0rc2-cp38-cp38-manylinux2010_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

falcon-3.0.0rc2-cp38-cp38-manylinux1_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.8

falcon-3.0.0rc2-cp38-cp38-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

falcon-3.0.0rc2-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

falcon-3.0.0rc2-cp37-cp37m-manylinux2014_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0rc2-cp37-cp37m-manylinux2014_s390x.whl (8.4 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0rc2-cp37-cp37m-manylinux2014_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0rc2-cp37-cp37m-manylinux2010_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

falcon-3.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0rc2-cp37-cp37m-macosx_10_14_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

falcon-3.0.0rc2-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

falcon-3.0.0rc2-cp36-cp36m-manylinux2014_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0rc2-cp36-cp36m-manylinux2014_s390x.whl (8.4 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0rc2-cp36-cp36m-manylinux2014_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0rc2-cp36-cp36m-manylinux2010_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

falcon-3.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0rc2-cp36-cp36m-macosx_10_14_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

falcon-3.0.0rc2-cp35-cp35m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

falcon-3.0.0rc2-cp35-cp35m-manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.5m

falcon-3.0.0rc2-cp35-cp35m-manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.5m

falcon-3.0.0rc2-cp35-cp35m-manylinux2014_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.5m

falcon-3.0.0rc2-cp35-cp35m-manylinux2010_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

falcon-3.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.5m

falcon-3.0.0rc2-cp35-cp35m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: falcon-3.0.0rc2.tar.gz
  • Upload date:
  • Size: 632.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2.tar.gz
Algorithm Hash digest
SHA256 a1ed97b23c1942865e065c4f383731224f7a7092e178dd809e4846b7dc88671e
MD5 ba7bc17944c2975971b4a1a26f029bb4
BLAKE2b-256 b1912f507f47bfb60fde484f4d5aa9f4bede13dd7a11a33cb1ae6379529fb614

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 890d0b53ec40b5c66d626a493df1c284e669e825dfa51c88d5110a0f8e352d9f
MD5 63fb226c27f6c2ca19123246d47812f8
BLAKE2b-256 88702aef10fddc95ef22e493c3613484a2178409553105a293f113c6975cc2b2

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb009f8bfabaadf8e9fca3d70fd845b0d674fe7ac679457c8e1cd26508b1e992
MD5 da7551899ad14239f2373847fd875415
BLAKE2b-256 dc2f39055fed633fdb980aff15b52c621ae4d07bf450bb44ce45a1b732cdb116

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84a3cff89f0d53902273b2f9be2a000acc7512782662328b141f8199628de8cb
MD5 e033516e70b76575994c2f4f64f55381
BLAKE2b-256 68deae416ef067986e01caf0f25daf8eb54314f990e20ad0a22743b2aa2e5783

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3754bf2493ae8028038d0e70dc3e9e2e46e36a7de76cf98d5d84855140b27f3
MD5 cf2afa2745897ac4798e87070e50df31
BLAKE2b-256 9661d8295ead803170dfaefa30922569e666c7ee7355eceb57bbc4e4319cf388

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 138791f20a948bbcab736eaaf8f9a77527e830faa70a6ca91297ef7ef36eb7c6
MD5 7e36d42a54c951a1155b0db47eab3273
BLAKE2b-256 afdf9dc899a6662ca9dede668edc0445d6af498b0e08628be9932441bc6d7c2c

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e972c131ecf08d684dbfe92ffe1ceb1bfbf9b719a2f18fdc8153ad7b7adeac35
MD5 c92ea3cdac3c9f2b8f064e41bb51538e
BLAKE2b-256 72d613fc119f88ab4bb2e1e805de9858e88720127d63e9f32c165eca3ced1e51

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for falcon-3.0.0rc2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 77910082df73780f1c27b8e20b33a43b5b87f39dc0d30dad18d531d66a21ccaf
MD5 b2b98fc045383338786e494beba0361f
BLAKE2b-256 1b452dafe2e473657a3ade91c67bdf8c2022f030133d99c2ea6b0e8e58f920fd

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c7cbbb7e8a64b4ba9cad27e4a185142016d13c94dbc28a955b924cdfbf30931
MD5 2149bdc90ba643f0d1ad9dbf6cfca061
BLAKE2b-256 aa58656e7a302552e2ca4b953621daa7689aa0a6125ac32d52fc2735002b6df6

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05e826441594ba9cdd16b91debbde60f0b916b3359cb99c341f8ab5225abe2d0
MD5 49b0e9b8f22ddae0571e3d838d3da76e
BLAKE2b-256 34908df57ea3eca12c153d86f7625aec316d585865257137ca37fd1851905fbc

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0411247e4f6c99707424ea0e13d292bc533d7df4bb0bc3c5b0e969a777b21a1
MD5 d1a4c97c354adcbc56ddaa5ae72bcc12
BLAKE2b-256 c6297c49ab0ade51a085265c00c88ca01f4529dceed045aff8d4f7a5199e33ba

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89cde4de90c6e9f2a8c7e9d524dbb0abdd16b2105bd5684eacf6ba74d703a7f1
MD5 d851f6b78abacc7e90deb49d1777cfbf
BLAKE2b-256 390bf40f2c4d6b2d0f39102bdbf336f495d12189218dfd9b2117db13c4e35862

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 356cf2b5d05b115e37d86d2acd066b239119ca82ade8d4501f9aa05f3c1e2b7a
MD5 f12d464523703f7081d6fb4344e59518
BLAKE2b-256 f29f05de6f97eb87a158ef9669b70b6e506ad9c7235eb98a2401e889d468a66c

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdfac5c19299ea1df7c31bc81c6b75aff46a807e7ed0da0e4df2cca5b1807d6c
MD5 8b81bb96b1d23e895d33bb2d13178b30
BLAKE2b-256 65ae756b75ac62a0afbf3d2be407f7c2bff4700107a90d471bebaf8372214dd3

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c24c7697998c297ebea3a6c380c051d0390692271fb7427bccdccef5e47437df
MD5 76607528ab69c191a68dfb5f794c56e0
BLAKE2b-256 520f0a01ab5d08d2e0731f5bbbe9deb71b973e823d28fe111f3706276517f5b7

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 03f443100c1fb24e6de89610109f8c89a680122ef21c2b99724d6bb167707522
MD5 1805d5ee1aef50845b35f89818b6a0d2
BLAKE2b-256 5ac897c4bd57dd22ad13c70a712fd834d658105aeb8d6487a5c32f37ef2e05ca

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a8f598267516232dfb2e5ec046588a87530ce57317cb6aad8aba34e540d1bce
MD5 3d7aa34a8f169accc1a98a2d76948463
BLAKE2b-256 d3c9a02b9fb2563f4f93c265239a0d3afb26565e85355526b227d2484b3019d7

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b91962ae0566770b2bf2af09c45d9225e2550576f52bfbbce9f9f72a39a8d271
MD5 abe6624f1f78f795871631ecec69901b
BLAKE2b-256 4fcac993fcd01004068ac22fef4b4a95e6f914cec3a2c26e269835a899795f94

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 620a77ef2972348fbd8641f1a68b2687247504c93cc08b8f22f6f4e726da3d44
MD5 84f2f5de50a0884c2f011f2edcf1795f
BLAKE2b-256 ed888e395d17c91d7decc2b302f11308c286e95f9bd13e97679972984bead33f

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07bac3dd26f597663d8ed02ad48995f97d5b5b2872917714cbb42f11d671ce6d
MD5 97fa06fbe5402c199c225266f4eb0617
BLAKE2b-256 ee652d727e4ca80a7e4c68e75c9c92e1e369ed1c7ab21bc1e7321531bfc22134

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 691c8462544761cccefe3061138b2830d8fc966248681a2186eb485bd571f430
MD5 12cd41de38048aa11dd6af498b64906a
BLAKE2b-256 586f0ef18ce0a5259bc680589609a18add8a3d5cafd5a1dc676889f9da09adc3

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for falcon-3.0.0rc2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5617cf54b4ed90d3b2ff2f09007ab655abc30be04ef6067090552098b63eae2b
MD5 4f5e75e6b7781c70f60b144f2394b50a
BLAKE2b-256 4931510719f5cf1cc25f65a6a8c294b3556f59889347e29fa2b9984054b0ffd8

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.8

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 30a9c7f491f3d9c4ee7c4c078decdad4d94c1da736de141994ab3c92046769a0
MD5 924c8b1814909fb7d4b31c2a8a195fe1
BLAKE2b-256 e909e6db8e5ed6ed1a0a44d1c4b813653d5fa01cfd9879417805dce8fd33ce33

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.13

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6492f117f42fc18a31c903ce6aa164fb98b887690d2037172cbdb50b58408beb
MD5 4c24e88fa242849f9945fcccc8229e4d
BLAKE2b-256 02113bcd364f259ef4639d623df5a3fb01317cc06be704278d84bbdef0fb1599

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31ee02f303959280a205240a2ee222de9910a9c9adefe3795909876a3b9d0546
MD5 d8ce1c330c463b5910a19609756d7f23
BLAKE2b-256 7bd717c8cea08dcd39280e4e19ac178d43d34d443169734f0214540e8be13083

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6086030f2258175d5ac7ce7ed5407e7361654ac4392a6e1e8dcb8e64631776e
MD5 8aad7ab5b277d3ec64cc692fdb84d79b
BLAKE2b-256 908ac6e1aecb77afc15b89c64db0357745438ca0b946f1e4a3ecf64cdd60558a

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.13

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 425a154a6ec78c43a817074e6f039cb86ade2751eab83d87ab494c9b9bdcd23a
MD5 4527e15a261202df02e56685ee429347
BLAKE2b-256 9e5774f665ea3a04f995379fd1457d12c4d31caaca6a232519d07de4407ceba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.13

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c5d15048be46a5d96900623912d25890aaf13b145d54207dc1b1c4092486be8
MD5 251a77938077991ff0f3ab9fe0166641
BLAKE2b-256 3d6fc3db759e9597ad5ad8c46fcf31de5f13f49539f1583276122c1d3ac1202f

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.13

File hashes

Hashes for falcon-3.0.0rc2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a368ad815e42c7278160b811cd1d7cd88397742e379cf13ef6c9772fb39f2de5
MD5 a9058a50f3348d3da7ea7fb06c7b32c9
BLAKE2b-256 605965c234b30b0208decbad60336ddb0cb1981214456dbc01ddb72107fe4416

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.5.4

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fd86e9e2f9e22e45954dcc75f1c5b99d19ee0f9460e87343a3821a4ad59a2554
MD5 3a1bf31ca095e2101c05334352d6e81e
BLAKE2b-256 233a2b6a0f2d39c2ab377025f455da09d0f81e0f56cfea9e1e819c8f1dae1231

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.5.10

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c27d031cc7ad98f10ba3bb26e129fd1a6ff7edde04f04ab3489cd8d055b5987f
MD5 c1a4c02e4aab749275698aee777a68fa
BLAKE2b-256 4c8a857dcd0e2680a5eef548c977dba6d373508071d02bc510d8e47539c2d610

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ebf70e66ee97f4b37d0648a64efb750fdb11194b00f0b2f12b02cf830c2e4e1
MD5 11a35327619a32e479b75e817eb55657
BLAKE2b-256 c84a1520e8e68117813fdcd52886439aeccd2e1d2cd4b23e5d5680d1af3775b3

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc8f72bd9bcf85db09eabcd370e3e4e5426e1f6bb08889a676db6cc5c2515bb2
MD5 90d6286e34f40fc8e3b0e8ce52559487
BLAKE2b-256 52333d980cf9b25beb1923dc54f5bef44f31227cea69b85f287bf317afe63e28

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.5.10

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0310edeed397cb8a484af09fd860ab2e88a2f4b00366e2acc6520ed70bd832d2
MD5 cad2c9bb594436b0fdabaa025962e155
BLAKE2b-256 329a0c682d9c6c0181f0f9631f27fa3942efc270a37461bc0427e4d6dc35c9ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.5.10

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e65eab8fb4e8749db18a38bc48ca8f6a9a98e29c8f7abfbdd5159c7a582fc3b
MD5 ca562142889a48412708ee5549ab3ca6
BLAKE2b-256 24cd47e1799405533d44bb60b26fdfd104b21e6a4a06a938fbf025be20fcf7d9

See more details on using hashes here.

File details

Details for the file falcon-3.0.0rc2-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.0.0rc2-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.5.10

File hashes

Hashes for falcon-3.0.0rc2-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 178d19d9eba85c3f719de176da71bbe6e63983d6948a614297deaa335f59d726
MD5 0d241dbf32f5e3ad608997a43913470b
BLAKE2b-256 bbca0f054eb9d16d01436dc42a99cbec71171addcab6657dad1716478cda5e93

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