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)

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.0rc1.tar.gz (632.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

falcon-3.0.0rc1-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.0rc1-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

falcon-3.0.0rc1-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.0rc1-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

falcon-3.0.0rc1-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.0rc1-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

falcon-3.0.0rc1-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.0rc1-cp35-cp35m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 3.5m

falcon-3.0.0rc1-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.0rc1.tar.gz.

File metadata

  • Download URL: falcon-3.0.0rc1.tar.gz
  • Upload date:
  • Size: 632.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 61a33199e2570b07437a952928c56b6119c0d256a004fea6a533087381d46333
MD5 ace451e12a8efdee1ecdeaeacf4212dc
BLAKE2b-256 c4d26fd9158e1122b6f003a06dae433b3659f9ecc80ed126c611c7a2e7152496

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9bc06c8a2b6ab0269566ed98f8b878506bbd8f41d5af484044def427edd37c2
MD5 13e68d1bbc779f4587a3e452fcd7d2c2
BLAKE2b-256 3f168d27fe2d83ec8c17c1321bddca557609effd78da37d11a14283274bbdbfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ceeb6281acd2cde36f46343caf497463a9c4ebd448a7b5918e8b210526df26b
MD5 b96e43c23d3dc52f4d9c2a15d35c12d4
BLAKE2b-256 5ab6c9cd5d8d53d73fcedf72fcea0d61605e14dbf2aea805cbb5cb75fb44bfe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e81b31b87f0d629b73318cf8c24029b2367a8d007a4a562d0647106692cb6bde
MD5 35a02479190d1a1e5c3d2b1f6206c244
BLAKE2b-256 4324dbde52fe4f4d9af766d31b53161b2369006ddcc5344a9ed6464d52262955

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3ce6e6b889aa86722c2274333c2ec62fd5dee5263554b14191e194a019b1c64
MD5 f9c77c4a5eb8fed4e31bea74287feefe
BLAKE2b-256 a94989422e40bba6b54b6fdecc403bfc5e3f1ff8201b75b219f8856f87681272

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 98d89dceea7d1c78f506e66be9ba84c417b42f44802d8086a2bf075211c8fa44
MD5 d0b6e7bdb01ef019b694034c5e3ca890
BLAKE2b-256 8eb00c4d64ed477af6f8ceef14016ce363c3e91bae0428646949aebf67ac25d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6111bfad94d669493c1973d43c2cd67b7bbc7a4c9ed7571e9f7950ff004a766e
MD5 166c3dc25e31cdf5ca2bfbed7a45c3ac
BLAKE2b-256 97783a4d0bbb94b3fe80757530a94eab8dd08d4bb4585de2d340085f2f6d4dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a17ab78eef49ce7c70b40de1b805811a9750e03704fd3f6681a882b2b5315763
MD5 0a9498fbfa28e9fc05bce4b24735e2a0
BLAKE2b-256 6a457361a9e1e278e77e843ebf0c3e334d8c9255013842c2ebf127588fd378b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d83db75f73ef4a8db09806c00fb47734e0faf8b21a935f397f510b3c61ec3881
MD5 f3aa2d919487e443cab001eda2c05ad4
BLAKE2b-256 e53d982f74bdcf5d7eef467e371b08e1146ee72e0e32b2006d933d14757c8409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 636dd59535f541b540a25368c7740cb1832a91e3e70fa4ff906fb708285a589c
MD5 8814e093f3de2ddca21a9f53ad01ba96
BLAKE2b-256 62f538c7ffd98a743a0880f89f3bf16bee5c9753c7255e2a7206eeed33dd2520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef6def33248746d48fc1dcc636f50e3c6e2a21f3f8b62c1971db9ae6845acd2e
MD5 25192cb1c3ec51834b02d491d88648f4
BLAKE2b-256 183cd4c03a76556dc624e74d93faa041649f5534711a837a68d87024da723240

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bff8450bbbd056e1ab84404d0c5b33796962d1e38d52644febb87eade18b42cd
MD5 08450a83915f31fe68a0a53315eae7e9
BLAKE2b-256 c6194257e266f8cd77eccbcb6677aa769a2139dc3ad0123f3a48d1668297d72a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 99aefe04ea94c7ebffc97d5aff611cfe306874d3e8c373b1bf341ea29681620d
MD5 aa9e084cf5df36f32c081240f08bc5f3
BLAKE2b-256 1e1fb075f692823cdf093ad6d32db9d7c0bbd426fb433d51fe7355fe1af5dffb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b6990a8afecbb044bb8233c8dcae1cf9e2d53e5ef660ff4ce27421e9482936f5
MD5 40edc5303f210b73bcd97fe303cf967c
BLAKE2b-256 7a1d5a01fc7695388e176c637782d770a0f6f1eb256540a7d75d70dec07727bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.2 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.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5309a547f3fa82321214b0fc034ce16572694add6afc71010e1d35b1fcc11d95
MD5 8556b76b391e23fb787bd6a7a1d5e6a9
BLAKE2b-256 8999d988930a92ad192843d04898bb82200370dacff9ea438840eda443264cd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b58a3064928dce9358a1571f51541740e2f07efe9dc6b53b807a751e12836bcc
MD5 b21a07a377963e17cb8789f6218bf5be
BLAKE2b-256 d365a051ba81be78b4343e428bf0ba892c3c170f2de4372fa33006777ffa3c25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f02b3779171717b008c29676b9e1b3df440dcd379b5c808b71ac9e38b3c0779
MD5 51eb6a275fa8c15b64671557cff2a6e4
BLAKE2b-256 98c622e8e37d40d2918b8bc10ff9f0e0862f34868fbca18477a63a0083777615

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dee9326e975a76d853f9c85169602b27a6ab1110d6409f9f4a69186103ee8067
MD5 32d3de8d1a1d8c691b95dec43201cf56
BLAKE2b-256 cc442edba965c89a435bb6fa4308aa276eb4d60e824fd7591114f71c7b9d8df8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8c7228bcd11c7964a2ac78a51dd8135e2de5b6fcb0b36937dc1dbe466fd3b83c
MD5 9170669abf22f335c39e3a07afd40310
BLAKE2b-256 4ce6236595bbdadaede7ec21ab85d72f1152cf69f6a7edd4877a8a2cda314c59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0763c7ffdea7fdbb3bc5a5fa102eb1221c11c8bb3aa9879879e8233282eb2164
MD5 b3d15aeecdc5358bfa0c387fd169142c
BLAKE2b-256 e8825960c1442aa58cc243295aa6fff10801e483fdcafa6d40cdde6130e8ac8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f5c72be5a15826374197186d79512d40842b60835106f77459a5e10ee53764bc
MD5 352c1d17b8e917ffb16cd78cb7cfc0a6
BLAKE2b-256 4d539ffc2e85b7e4025c43254ec88adf1e374e408db4a9a395b0eac30ad4665f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31ac416fc442275d20163ba98a0ba81a422e14196a45a4e94ccba79f3a2f132d
MD5 8e9e2e0c32f6a524389eeb87e56dfbbf
BLAKE2b-256 3ea8ce3f5690820f4ef3b52a8fd8819966a7fa898c40c96bc39082e55eebf8b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f5382e63cc3d8c85b19e3b1cd43322f3474d445fcdea56a5c6efacd82b2b894
MD5 17cfb9a166d76cd0253882029363ce75
BLAKE2b-256 679dc0e00a526fcde9be8eb50f2e70ba85afe06a21e19f5e83e1ca410a80ced5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f39984d0a82e8b6b9695a0dff6c0777ec0b10075e64c88fa8690985484af2541
MD5 4ab9f6914490fd923ccacb40fecde093
BLAKE2b-256 62dbe28ee9f06f5954fdca583edf568cefa1aab152508fa6aec573dca4f1d886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e0a32575bdd1d9f37a03daf1f9eca3323256ce63443e8c3af11424219e8240b
MD5 e9e4737e038dbaa86c86107b17d0f58a
BLAKE2b-256 818298207f8c1218dc3262dcba9799623e3d4f3ac3d6f90febf7a00df8cc209f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9db84335795419ed6a20b798996dd21e77b301da08503557c8d1a5cde049fd0f
MD5 2532ffb1bfe23abff1e2ed51765ee45e
BLAKE2b-256 685cf3d9edfe24c9ef1c2372a2e6a7d154734197c3578728b82cad1efdce62db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d257c9e3f538757163a05281aeb5c9a1284333ec6831d66e21dbe9310ca6845b
MD5 2282b88474b25280b29a5b77c86c51ed
BLAKE2b-256 a0496233230e3063a8c20cd96ced23bdbcdcf0eb1dac25013a1369d6dd541eed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 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.0rc1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0a7c94f560716f8e51b85e63b729698566a4e71e1f9111fbcde255157c067984
MD5 908fdce07a2d755d0e4b7559debfcfa5
BLAKE2b-256 1d1825387d7285675596c850226947e404929346a5bc29c79252406573254abc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.0rc1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d448821dcaf61b8cd7877bf2fe6db60b4d2701cb9692dd9e101e5a0f262c1fbc
MD5 73dd290346400c6d3ec494fb27c59036
BLAKE2b-256 35c6e3e6c84e36646a4fcd802591b7c5a6d278f7191cc3eeb79d4582f93c994c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dfa20bb88d60e3893f416775d68015b259b0453cde3bac8567ef2cba4fd35a5
MD5 cf23bec47b5d83c0ffab4e738277b55f
BLAKE2b-256 f71741488c4ddc6faf4080b5842c81f7c43b85bdc6e4252e9a52db1a42c04630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70fcfe054da725a46c7be9884c9f2c9bdff1c1d029d5a336cc997aa0e71a7a51
MD5 bed6fb1e604456fc0503bd763a6638e2
BLAKE2b-256 050985df9f533b45882bfc3ab402a6194d5947faed2622b06e20bf0cc75e8cca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b639f32f1fa06574bcf12214fb8426c773fd980090b9415387e51b5cbc5643f
MD5 1b564e040f7e42fcff390e33ff2d3654
BLAKE2b-256 986bd5196249552755a5fc501fe60f0a6dacff833be257885fcb954e437ab096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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/3.4.1 importlib_metadata/3.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d612e57e495ca1d469b78731972231f602acf5f48e15750ef456c806180c706
MD5 2cdcfa9a2585cfd05197b5bed240b0ec
BLAKE2b-256 04fcbe26d102580082d3fb6d970e3c5fc2e383c52b08bbc924701aa6fc556ad1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.6.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c91f0a4ea63e7fd5e417b0cc0999f3ceb0ea9ec2c607289e3cb9ac911b34bec8
MD5 0355beabd87a9b20dc368ef072c343bd
BLAKE2b-256 8b5f1c558cfdcc7ca986467d74c63aef47a707a225eede29914ea7f6696d9127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0rc1-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.0rc1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 08c15065f52a155098fe839a3089fe919803c28baf3ece7cab6b48ee9b39d5e5
MD5 3d57985462d52921c7dfbc36b898876b
BLAKE2b-256 71f5ba65155b98779b98568a3ab9c428b552a93a09e523665a57ae62e3095118

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