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

Support Falcon Development

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

Learn how to support Falcon development

Thanks!

What People are Saying

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

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

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

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

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

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

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

How is Falcon Different?

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

- Antoine de Saint-Exupéry

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

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

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

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

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

Features

  • ASGI and WSGI Support

  • WebSocket Support

  • Strict adherence to RFCs

  • Highly-optimized, extensible code base

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

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

  • DRY request processing via middleware components and hooks

  • Idiomatic HTTP error responses

  • Straightforward exception handling

  • Snappy testing through WSGI/ASGI helpers and mocks

  • CPython 3.5+ and PyPy 3.5+ support

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

Who’s Using Falcon?

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

  • 7ideas

  • Cronitor

  • EMC

  • Hurricane Electric

  • Leadpages

  • OpenStack

  • Rackspace

  • Shiftgig

  • tempfil.es

  • Opera Software

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

Community

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

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

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

Installation

PyPy

PyPy is the fastest way to run your Falcon app. 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+.

A universal wheel is available on PyPI for the the Falcon framework. Installing it is as simple as:

$ pip install falcon

Installing the Falcon wheel is a great way to get up and running quickly in a development environment, but for an extra speed boost when deploying your application in production, Falcon can compile itself with Cython. Note, however, that Cython is currently incompatible with the falcon.asgi module.

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

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

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

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

Installing on OS X

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

$ xcode-select --install

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

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

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

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

Dependencies

Falcon does not require the installation of any other packages, although if Cython has been installed into the environment, it will be used to optimize the framework 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.body = ('\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.body = ('\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.body = 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.body = json.dumps(resp.context.result)


def max_body(limit):

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

            raise falcon.HTTPPayloadTooLarge(
                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.body = 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.body = 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.0a3.tar.gz (597.4 kB view details)

Uploaded Source

Built Distributions

falcon-3.0.0a3-cp39-cp39-manylinux2014_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

falcon-3.0.0a3-cp38-cp38-manylinux2014_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.8

falcon-3.0.0a3-cp38-cp38-manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.8

falcon-3.0.0a3-cp38-cp38-manylinux2010_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

falcon-3.0.0a3-cp38-cp38-manylinux1_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8

falcon-3.0.0a3-cp38-cp38-macosx_10_14_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

falcon-3.0.0a3-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

falcon-3.0.0a3-cp37-cp37m-manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0a3-cp37-cp37m-manylinux2014_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0a3-cp37-cp37m-manylinux2010_x86_64.whl (7.2 MB view details)

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

falcon-3.0.0a3-cp37-cp37m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.7m

falcon-3.0.0a3-cp37-cp37m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

falcon-3.0.0a3-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

falcon-3.0.0a3-cp36-cp36m-manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0a3-cp36-cp36m-manylinux2014_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.6m

falcon-3.0.0a3-cp36-cp36m-manylinux2010_x86_64.whl (7.2 MB view details)

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

falcon-3.0.0a3-cp36-cp36m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

falcon-3.0.0a3-cp35-cp35m-manylinux2014_s390x.whl (7.8 MB view details)

Uploaded CPython 3.5m

falcon-3.0.0a3-cp35-cp35m-manylinux2014_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.5m

File details

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

File metadata

  • Download URL: falcon-3.0.0a3.tar.gz
  • Upload date:
  • Size: 597.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3.tar.gz
Algorithm Hash digest
SHA256 606c681c89dcce4fcf09971d7f3d147b16142139dcddbcb93d6eb83ef6941e19
MD5 5a3c38d7f526f9623aba3b9dcf6ca7a2
BLAKE2b-256 540e14754b110047c4a3426a6d2a6c33f8925a8b71d616f7339c2f5564ad5bee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03fe8c047a8b5fc9567ec87cfd876121dac9ec38b42ffd40d53b4d4bed99f2a6
MD5 d0bdda1f9bb048a945f49e9807355b55
BLAKE2b-256 8ecc1ca82ecd5711259e363a264b12a5e9cf9c60eecfcd7c9d6b479c4dd3f2c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-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.2.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.0a3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ea7385b18efa174e78db5c8845768c1349cbec4bd4faf5aad176993c8d61f385
MD5 6a79fd358a1868c7500474ee8fedf63a
BLAKE2b-256 ee5ceaf1d88d4e03fde998f55442ad980f48fea4dcc441868ed8e9e12e553ad5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ce3a862e6cb3452984f2f0033262c3347ae208186daf6cb924e880dd4b4981c
MD5 6a367a755f55dc40801ed9232f982104
BLAKE2b-256 1e94df39d4a5051569633de2407c849730519ea522ad57e59501a575382a203a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe11cfbef95452971201700ffb6935956ff0384c0f3e2bf0acfd667f74bc216e
MD5 7ea698bb31196243dc079847db8c67c6
BLAKE2b-256 e8e6cc279f6c5ca20cb91b6b5a9dc86ca3cac85b81a378aade220f2ca6b50f3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09fb87dc4852c71cb7d00e2f902ff122f64bf66441d947f8ad9fdd73d007d3d2
MD5 16918112fce9d2342cb042482655f6cc
BLAKE2b-256 29949b6b6283f049b99450334ba626f474c7c8ee0ca023ea920586e43c22a7f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e5ffe554f9af1f7c185caf2d909cb1374160cdbb81cae3fc8a65bf92f77a1541
MD5 a0fc0255197e1856a0ae948e8e1bbfb8
BLAKE2b-256 8f593ad22ad2cc2fda1a0e87d44708e2fe5bf9d6189d030cdf4efd24e83e53b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f6248c108603eb5037768168ba5a766db78d3843e08f7fbc41d4b4ce4bac8276
MD5 6f54cba73d2b452528235e4b6a97afeb
BLAKE2b-256 d735202a925a28d0cde30839ea40aae8c40891066ec92caf6601e91092ff7e41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e9d1b03f864389b6ede1f01a1c0d46090d880be036b311f3c182cf522dc32adb
MD5 f2c5b986fb125d1a7c673b190672e096
BLAKE2b-256 b48f8611762bc64a564b24a7660733ac597d80eb09ed77ca8189bd79b1c9b13e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f17d56f1a773ae0f4803a9d1b64c8d8df565beac96c7ef245937bb2f04656110
MD5 f241cc8639f1c41cd94d7cd88a90bc97
BLAKE2b-256 3d5cb383d5343174f23692050c4cfac9af19190806465d7afdd4492c87b6d6e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4eab1570a9ba743c27dc2865c78bcd265481d51848e3754da7e266fdcbd495e9
MD5 6d01f23f223556dc798407181d66bcef
BLAKE2b-256 b6ecdddafcc016fc3935a6be61be84ee1b2154e5dd9c7fc2b9e8085f364b4e7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2fb54c4bc4ec6d8d57b19bbf706a81f34d4e717391a8bb250925ed146ce00c34
MD5 b62da350aafc7cff84eeb51826da78bc
BLAKE2b-256 e4755764bbbe7f7ff533ec47d23f8ca4cd52d146238c96108a31ee2c3a606a58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9f9a9ba3e1619d7f5f9120269667a96cd8e000c20c7a7057fdd1dbb2292bdb09
MD5 cb3f833baea8d0843cd6d2254b50212b
BLAKE2b-256 fae2260269bff70cc748018e4466da5d4679f5d64ae7da2c82b12109c0492951

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 06d9fff87c842550fb987238157c9350d24a23b9e67e0769a9971e1897e418aa
MD5 854dff256b4e644c16c2b3e91aa6ff7f
BLAKE2b-256 29d65e7f3a3b9a52404c273328a4202b1908d64e58a3dd8e240008431a338938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ed3ee4c436e06de3487b80857223d2778943a5e4a977afd485511963029a6b52
MD5 f2a9c7ca11fa90b97daaccd48d6eeb55
BLAKE2b-256 8a1dba9dceee9628153c8bcc214983d30dae94f64acb3977b96790ff3f94c1cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78d9b14ca40f1bdaea4401f989640da09e5fa825a9c1fdae22c28d091aca386a
MD5 a804fd0065e6b83a40530a9e74d17fe8
BLAKE2b-256 cc91f8d2e9504f7d52c44a83896d3c22f2c5d193e87779bf0cae31ed69457524

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4122d8397307a6e85ffd00ec030def71eca78a73166e3d4e4e96a2baaf20984e
MD5 acea407397a6c1dbfe9e07c321a23e7d
BLAKE2b-256 1c252ce04496b856587dc1458bc5e790f46310ab12d1f7489379f3d4346a5f18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7564aae93b0a542f59ecce4c6281aceafe7ac08dec6b546d4e0df815837f94c8
MD5 62de4711502f8b25187907b9d984cb4b
BLAKE2b-256 42ff962e51d0deebffef0f896c8b595b0229aa04e1e33575031bb6131a4f548b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb5b378bbf7b2981e58a70a689102e5a4c991f5a5cb0ec8144f3ce732932d0dd
MD5 cb362fdf8eaa436833f44daddb36d9d8
BLAKE2b-256 ac7e1f3984fbf7edba3d02337e61f0576cfd2643ae237b2320d74acae0a0b611

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-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.2.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.0a3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8539f84bbe4e5f5004058624016161d965805899aaf4f7703281d28ef5e80cca
MD5 a050ad349dce38b0f8f5c55ae2261838
BLAKE2b-256 d8e6dbc9a588e25e60814d2d274ceee4e7883ea5ecbf343afd45fb3c83eba0ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-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.2.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.0a3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 612664c7c250b790c7ca3730f7f7d226953386154f2a051d1065104c4b1eedef
MD5 a8187a3c48458f18333a3270b8d4f77c
BLAKE2b-256 4e561ff3deecddc3190315b382100f3a91a1dbff087f60ec13f2d12b5e4623dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ffeee4aabce9dc667a8d0b8f0c0f6761f0adf7d1d06080ce3cd5f58b8d52564
MD5 823e3b2087334baee3f8a4e6611b0bff
BLAKE2b-256 33809f173eb9389accdb8b6fb16ebdd8b302b3b156a478ad7369dae49d187d8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.0.0a3-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.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.0a3-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10060e9c801fbceb61f7e66df109881bbc48f9beb3966d7bfc363f5ddac735f2
MD5 f536628aa6b6898e481a98c1bb6dd76d
BLAKE2b-256 1c714bee86356e65dc0fd9df075c74975df84128255b60666844b3c9a898048c

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