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

  • ASGI and WSGI Support

  • WebSocket Support

  • Native asyncio support (no hacks or compatibility layers)

  • Strict adherence to RFCs

  • Highly-optimized, extensible code base

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

  • No reliance on magic globals for routing and state management

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

  • DRY request processing via middleware components and hooks

  • Idiomatic HTTP error responses

  • Straightforward exception handling

  • Snappy testing through WSGI/ASGI helpers and mocks

  • CPython 3.5+ and PyPy 3.5+ support

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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 3.5m

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

File metadata

  • Download URL: falcon-3.0.0b2.tar.gz
  • Upload date:
  • Size: 627.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2.tar.gz
Algorithm Hash digest
SHA256 c213e71d6f481eb8e322aa19f1c855e72666632319e8f46c7fd5096c8e3355da
MD5 e6b4de9c748eaff11b4b8b822698424d
BLAKE2b-256 f76f781de3765ce7dd0d7768b760131d7c071c435a6f4bb706d79daef10826e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c1cca57e20927a282818ab5ba0b369753a2865290925d98efccab0e91b68b07
MD5 4947317fcd453704d792361130cfdf8c
BLAKE2b-256 142e5427d0d4932f810c1fa7eba78b3ecb368ade13bc3152ac481b0fbc442866

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316a23e56bc2eded047440f7377a758c8efa221cf0cb761c85755b35a021ebed
MD5 e1680da3cad78cf666a44ff2d641eafc
BLAKE2b-256 44dd6c25ebd81fe6250d6682742f4b6b7d4c942791bfbaff68e651f682230f89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29edc45e6083dc29319d4897194b005346d17b8a22faa3bf05acc12e90088455
MD5 eb89d204735c1a4696cff9c3dc2343c4
BLAKE2b-256 2cff2487468fd22138354df1ec21f56ff533f7542fe6ca4d7e7b53232119eecf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9718d5619048a2fca9de3c3dd8ce994d0873194fd730bcc3adc0a66fe241b20
MD5 ddae4d1b48ddde6c16edc97e17763d0b
BLAKE2b-256 8deb13ed0a968185002a3537cc31c80c9d28d67b71226ab6afe41e8aed21454f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c742bf4c714b6affce481c876e6f157a6f185be6af41fc0d2b05ba1f66e9e643
MD5 6b777f24105b2d02d70599f8f612497d
BLAKE2b-256 0922006cf06385a0e3a77186ae7ed828abbfe6ce88a8414dd97bccaf1854d02d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 90e250de055850f2319e8143cbe9cfce00c3ed4d0dbb1d3c12b3f06b95d77ab7
MD5 c6b065e7c32c25f11cb476b2eeeb12fc
BLAKE2b-256 301a86ca88655d247d31cccfd9d4c850420de2fe5ac48671d8089dbddccdde39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d70c2480d7c4d2d636e5769aacafb683839ecdae397c8475fb109139f9757622
MD5 8af35427628f8c35f1f99e6bc3c6f2da
BLAKE2b-256 ba701e86c167ccbc97544b442cf643ec22c0dec7ed2ff9ff48a26d23c96768bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 742af29f272db8460cf9ad08f9f15740ce126b7818368de5e5778bbf9f250ff3
MD5 1fa546dbc6459cb70bdd2ab675ba26f6
BLAKE2b-256 9e233a6716a857b295074bd7c95860d0f751f4552c59db0423738a8de2e78f3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 074c5d9b884f18f9dc6e2ab6d62526b6548a34ec1b1edd09e5cab49855869fd2
MD5 5137a36e74083da9cf15dba306db7adf
BLAKE2b-256 4321875b26f019f31ae2e820c5af505925a1075d0213ca0c782ecaa0e828235a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df35938f09a0351775fbef51e16831f49eeac8efb16c412c04436c1a40793ef0
MD5 2ea66c0619113a14a6374ab22bdd350d
BLAKE2b-256 520cb8bf80c53f7bfd03307edad5fbaa06e2117065140f828cc0a6495c8aa094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6bd4ba011113bff418a4618fe8d31344ee1733aae363bf74c592742ea649ec5
MD5 2aaf77b340774c926a046dde040dac01
BLAKE2b-256 b79b729e6b4b15ec6d33e7a733465f7c5bee8b66cb8fa01ac8b305fe41ea97d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d81d33353e94059dbdbb3c583ed2eee0ca00c17c83c7d77857c534b1a5f8566b
MD5 f6fb0ecd0f98ebe4dfb10278dd543e0c
BLAKE2b-256 2d29ca2edde9d2c72ee6dbdbe8cc358b187bebf28a04fa188c2008bf1de36895

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 72dd95603108dac48042638379886ac1138bcee6d9413ec962786c0799cef899
MD5 9715c2f7321b82741461d1dc7b13a60c
BLAKE2b-256 060b035cae3943b51313a0ad07a68002d60350a65f573a799bc58439a3850662

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2da911f4e2bc0454104c5502e82b9d2d702976faf29501d2e61534b114a8538c
MD5 fb8df94cae43dafdf324d6b5870c0d28
BLAKE2b-256 719f9afb6a6b0de7c08bbd1a8e2c0129132652f85f168dde22fae26a588ac31a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b9a07a4a198131d1fd76bf18287fc77687b5b8ad23aad0f3b1290449f1d001f4
MD5 f207d4b108e4442cd94b9ad2787fe0fe
BLAKE2b-256 aba9a41c035ce26e7a5573b641a5d2654d7c74f98d746bfed5a4afaaec7a7692

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75fce9d8e6afb73b01ff9b674308e9c3a734f763fa8dff120f332cfbbfeca337
MD5 638bd69c054be08eabb2e921667d598e
BLAKE2b-256 a47cbda6929a6ab4779cd322103e46a6ea75242fca75366f524cc2b9bbc44318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e779e4bf6181c0793a8bb566ec550f030383e6b49c8e06eefadb1c5234a6395
MD5 d6806654d31a388a7733c18a358a909f
BLAKE2b-256 ed4b3faa9009c8806927cf6b9ef4ff521562d3a9c9760369a6345f68f167a61f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e8705df50b88f23c0fe1296877d5840b54db11b3f76be7b910b989984b0f364
MD5 c539c33bf6f3985efdff8afab64106d4
BLAKE2b-256 0793d2c1288a3d88e0c99a153fa7eb6ad79059a8a83a525a5d1b818e5bafccbd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f12d95dabd5e768a87f07b49e4fb2edf98988ad4a9e53d24f9fec14a3170594
MD5 8f64deadfccaef5f2758c33d86b83776
BLAKE2b-256 deffae3a5229de46ec33ce177c3f41e0158fc6e29b159545e1d9db4192447642

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 48ac10a4afdcc42315dc2b68277576472faa82dd47ef73922968355ff0883b38
MD5 2b02b5b055c3b245c11448d792af5a49
BLAKE2b-256 e4b665d67200a591e512846eb1fdfb71d7b20ec5118e57d2d9dc0c6238959cc0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e618d0e0b7854fa52c36212a5ffc253abd42a0f66860a6f38ac717595157f04f
MD5 829260c459a6bcf40ffbb39f01e368ac
BLAKE2b-256 79a6d5849e9b085aaf380d045a72f028edb760608f1ced649e51d35e0477ae70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 498209d72547b29da01a0f2a6246a9c992ad65248331287aabdb14788eda9d0b
MD5 544761579bccad0b0332e20779221b5a
BLAKE2b-256 dbf683aa7bb131d1048b53e89f70e1f632e4c693bdadf4159b1ff90f3d484d7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69e14e8a5772f5f521439c5b8ec357b30466d99c8ff0181adcc66d7730dec8bc
MD5 c77adf3e59b33bef07ee3c9bb8c5cf0e
BLAKE2b-256 71bc733624cff28ed471b1b9715ae266e0e28622416b82309f4ce0511124d18b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1af4299d3fb26200717d26644b254d703bae672be506b69d159c37e833cdaeb
MD5 47cbafecf649aca67362e365f6a100ad
BLAKE2b-256 905c0fd0ded43d18c84178a38d913978bd761c5937a4372db4166b082a9ae674

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e07338f4b280b8f38f915d02113922ac00e5b82ccc3b5a483fd36dce308ab27
MD5 7139dc8b2d9b62b47b90ea878a4addc2
BLAKE2b-256 2f394ead8f645edbf39d83c9a4c65973f7f434ed4c40c10df82a4db2846a96cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0796098885bc4f66a04089abd5b156133d4ed74c7d9faeba0285ad5a0ca64aab
MD5 fcca143b85ccff0eb9e4f3d30476dee1
BLAKE2b-256 b1f85bdc9dcef49bf74226030a101245072837fef49df94866f57af403d31aaf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c767aedff6771760a519c5f8c4e80ff50743358111810c1d0861ce71bb273016
MD5 425f23e79c523321d2358b81a1b2044d
BLAKE2b-256 d8c8c0d68159bcbbb05dfa9f0ba1763a6b53ae7f8529ee6889148d81ca6dd029

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9e72f596be74e3ceceaaef15ceb4c91f84304a5068213dc8b4fbec8f138828d1
MD5 1a5d9c95556da5a59a7549156d28fe2c
BLAKE2b-256 e8e094f660caa08943a1d119285e0c060871db0f045d4d236a5802f8751647f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-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/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 8c7f4dc0152d86e22c4113557e5dd642b85d2c1f7dcb7c0faa425e845a5af219
MD5 856cf14e16195210838eb474397677ee
BLAKE2b-256 a8c68b7e0a470f4ecb4fffa39b21e93e4b130b06a9e16369645c789e373aa86a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa4ac165a6df6f9f6b0147585c67b279967f4b270688ac5081a53962ffecd948
MD5 069f13e295b24d83f068e9957db7364f
BLAKE2b-256 bc54e43fbb1eefe947ecffd52b23d42f8dc826394a4829b19e3c3548ea0c20b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f63d535c2782dc688903b538c6af6b08224ee327a444ca225b3b6ae2e8f81189
MD5 6216f8b9decc063fa6cbc4f5ecfb1ec9
BLAKE2b-256 ce0d3b46116e00e9b13238bdc95c4f2db060be81d775815a3e77d8ea760f6190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0c5383177bda0f13226d32a8b42bddc179a1e1e822ee814eadda4875c66bfd5
MD5 68256f69bf424c4b111aca591029545f
BLAKE2b-256 a0070ed832dcc413f04080c62b66697994f068d7edbaeaf1cc6b7b9888938b7f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5c3b9cc52296bd068bc051d83ab1853fe8969ba4b22823a0759e8bf4dd723802
MD5 bb487d1e28c43b87320c654629a3b11f
BLAKE2b-256 0017698f982598b6d10be4147962d1f33bee8c33aab1bf50686177aee32e56c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8e576c0b780471bfc1be429d5e1462bdb4452b294586b6f5a69a4c44c6ddbe4
MD5 37759cf74f5439470f55c906bffdb9ae
BLAKE2b-256 25d9d74a884d237b94582bd6eb0413007d0355abfa46e3daf05d96e98dc3b8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0b2-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/3.3.0 pkginfo/1.6.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0

File hashes

Hashes for falcon-3.0.0b2-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3d377d67706dbb0ae63339257771d6dd7cc90e13a5c119f7a821cfa9bd9c308c
MD5 6a472a03df5b6a34db67407cabc9f8b3
BLAKE2b-256 adab4a8ea6a46fd22c4cf5c03e652f5becbd12824106a694326fd1d5cf9d6d45

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