Skip to main content

The ultra-reliable, fast ASGI+WSGI framework for building data plane APIs at scale.

Project description

Build Status Falcon web framework docs codecov.io code style: blue

The Falcon Web Framework

Falcon is a minimalist ASGI/WSGI framework for building mission-critical REST APIs and microservices, with a focus on reliability, correctness, and performance at scale.

When it comes to building HTTP APIs, other frameworks weigh you down with tons of dependencies and unnecessary abstractions. Falcon cuts to the chase with a clean design that embraces HTTP and the REST architectural style.

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

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

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

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

“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.”

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

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

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

Features

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

  • ASGI, WSGI, and WebSocket support

  • Native asyncio support

  • No reliance on magic globals for routing and state management

  • Stable interfaces with an emphasis on backwards-compatibility

  • Simple API modeling through centralized RESTful routing

  • Highly-optimized, extensible code base

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

  • DRY request processing via middleware components and hooks

  • Strict adherence to RFCs

  • Idiomatic HTTP error responses

  • Straightforward exception handling

  • Snappy testing with WSGI/ASGI helpers and mocks

  • CPython 3.5+ and PyPy 3.5+ support

Support Falcon Development

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

Thanks!

How is Falcon Different?

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

- Antoine de Saint-Exupéry

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

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 has no dependencies outside the standard library, helping minimize your app’s attack surface while avoiding transitive bugs and breaking changes.

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.

Fast. Same hardware, more requests. Falcon turns around requests significantly faster than other popular Python frameworks like Django and Flask. 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!

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. It also helps you understand your apps at a deeper level, making them easier to tune, debug, and refactor over the long run. Falcon’s minimalist design provides space for Python community members 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 install the source distribution. The installation process will automatically try to cythonize Falcon for your environment, falling back to a normal pure-Python install if any issues are encountered during the cythonization step:

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

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

The cythonization step is only active when using the CPython Python implementation, so installing using PyPy will skip it. If you want to skip Cython compilation step and install the pure-Python version directly you can set the environment variable FALCON_DISABLE_CYTHON to a non empty value before install:

$ FALCON_DISABLE_CYTHON=Y pip install -v --no-binary :all: falcon

Please note that pip>=10 is required to be able to install Falcon from source.

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 -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 application configuration from the CLI via the falcon-inspect-app script that is bundled with the framework:

falcon-inspect-app things_advanced:app

A More Complex Example (ASGI)

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

# examples/things_advanced_asgi.py

import json
import logging
import uuid

import falcon
import falcon.asgi
import httpx


class StorageEngine:

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

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


class StorageError(Exception):

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


class SinkAdapter:

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

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

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

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


class AuthMiddleware:

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

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

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

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

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

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

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


class RequireJSON:

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

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


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

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

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

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

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

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

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

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


def max_body(limit):

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

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

    return hook


class ThingsResource:

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

    async def on_get(self, req, resp, user_id):
        marker = req.get_param('marker') or ''
        limit = req.get_param_as_int('limit') or 50

        try:
            result = await self.db.get_things(marker, limit)
        except Exception as ex:
            self.logger.error(ex)

            description = ('Aliens have attacked our base! We will '
                           'be back as soon as we fight them off. '
                           'We appreciate your patience.')

            raise falcon.HTTPServiceUnavailable(
                title='Service Outage',
                description=description,
                retry_after=30)

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

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

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

        proper_thing = await self.db.add_thing(doc)

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


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

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

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

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

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

$ pip install falcon httpx uvicorn
$ uvicorn things_advanced_asgi:app

Contributing

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

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

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

Before submitting a pull request, please ensure you have added/updated the appropriate tests (and that all existing tests still pass with your changes), and that your coding style follows PEP 8 and doesn’t cause pyflakes to complain.

Commit messages should be formatted using AngularJS conventions.

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

  • TODO(riker): Damage report!

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

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

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

The core Falcon project maintainers are:

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

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

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

  • Nick Zaccardi (nZac on GH and Gitter)

  • Federico Caselli (CaselIT on GH and Gitter)

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

See also: CONTRIBUTING.md

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.1.1b3.tar.gz (647.2 kB view details)

Uploaded Source

Built Distributions

falcon-3.1.1b3-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

falcon-3.1.1b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

falcon-3.1.1b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

falcon-3.1.1b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

falcon-3.1.1b3-cp311-cp311-macosx_10_9_universal2.whl (3.6 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

falcon-3.1.1b3-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

falcon-3.1.1b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

falcon-3.1.1b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp310-cp310-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

falcon-3.1.1b3-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

falcon-3.1.1b3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

falcon-3.1.1b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp39-cp39-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

falcon-3.1.1b3-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

falcon-3.1.1b3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

falcon-3.1.1b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp38-cp38-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

falcon-3.1.1b3-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (7.6 MB view details)

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

falcon-3.1.1b3-cp37-cp37m-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

falcon-3.1.1b3-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

falcon-3.1.1b3-cp36-cp36m-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

Details for the file falcon-3.1.1b3.tar.gz.

File metadata

  • Download URL: falcon-3.1.1b3.tar.gz
  • Upload date:
  • Size: 647.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for falcon-3.1.1b3.tar.gz
Algorithm Hash digest
SHA256 0606a4953b8f3b70744dbe647250fa77c0f01550c07ed959e7700738e16578cd
MD5 7aa24ae428fe7df4d08ced3a28a2d50d
BLAKE2b-256 acae4e2e395a709337d1178ff509382863f3ea3513d3c89184a324b2150380f0

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3f194b07b7161e0d62eed12030449b384ff5214b29832f12663d2b34844df8f
MD5 05d98da559ed4421569f0d2bc3a072d0
BLAKE2b-256 025ff6e1afd0527a76b9919c2f4f616a37378d5e01e26e52ad87bf9dd6ccd421

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeaa85a6320b37458668bac666613f5335b6fdf64ae695555144233c2981fab4
MD5 711b61efdb887abbc6c0bbcc4886234d
BLAKE2b-256 d65561f08a42bd98cf00b5fc16c8232813737e661bef34238ce12267baae3981

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31c8c9d3d015a825d1e16492ae30d90c182c5a11f65982893cabf89800c95f77
MD5 d3f31308fdc8353fe11a4faf3fc05259
BLAKE2b-256 6bce2f69f70d3888e8867ed4e4e2918ae1074c67c4adc172f64c964af6affe81

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 599a8e4aaa163c65c7b34f0dda1e37b8b3ca66d2154f45c054ecb47ddaaba643
MD5 6c7814a079180f5c47ce740e0398338b
BLAKE2b-256 6e1b488841cbe4a2b29f179bb6f84fad8d295cdc4aa6ace13b6f4d46b4014883

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be8301cc9ca0ec2b2c03935630f7cac6acdc7824edd9ea1efafac11f4e3f0876
MD5 10c7ca30a22aff3e167a270b6a42bd15
BLAKE2b-256 d206884b04b5ea1954e6c8549165908676614552f4d6bd6fe946219f0f497cc9

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8334d9a278a154dd51c55486cbc331f60f865f9247f4890615e06f9f28bc4357
MD5 5948ad8ac0f62a9ba1c96d953b680943
BLAKE2b-256 d4acca67cabf93c584b64afdd058f5f10dbd9f5cab9e0b51b917de0fbd5ecb0c

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7563442096476e9fd908702c05d7d736176ec2762c947f41dfe9095c28cfd11
MD5 935cc432fd8ee53b69395b050fa64437
BLAKE2b-256 0a47f6cd2eee913dab871f2053e1660518ca85b958b062ebe73cc594b36bbb4a

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8600c1f1b24c3bd6e168d508065fa76e284cc0152756cfabfe813dc9da15913c
MD5 f1a0585f5f2a1949270a9963d8fce3c3
BLAKE2b-256 44e487dc96a6beea6739e1d8f5d776ab3e6497a3f68fb7289a79c0574965ff2f

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a4f5175d3a39e44cbb4c549796dc6102ee1efe211cdd8df9fa4cab69ed25837
MD5 61831d8ef24b778f752ff1425a2fe3d3
BLAKE2b-256 85664edce95005d5b7ee0912fc2ad9a1514297ad6bc07b52691432679e7abfa4

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 110c3f3fbacbaeb84b8a352693ee3824c21439d0f3260abd16e1dc12d52c0d64
MD5 6a90ba0ed73b7ef556125caa0624c949
BLAKE2b-256 16c6301ed9f971ae02e95dc394a6d8989a802c0d6308d12018c97fd401e9d99a

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 62e28967ce33516a2f643aab51e9faba050aab9677073bce4fafc42dbc25c91b
MD5 6002c166e3385307ea7471e3ca55f325
BLAKE2b-256 b3105fd27e8fee320377524d770253bc505311c1a739bb56406b6b5db789e82d

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: falcon-3.1.1b3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b14dfded348e039a169a6a273d61bbb7858f9bf95419891c773a35f2f1824387
MD5 314ef6138bfe31e15100d1e372edbb76
BLAKE2b-256 26a78e2e8615d83c844c27005abb98365dc4fcd1e239a95ba5d98c62ff59632b

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22184302989399eebfdabb09ae17c149ca48cea759ec8a2e869b6cda1e98b0b1
MD5 e55498fdb3d47447ac7a5bf2b07edf8a
BLAKE2b-256 285c6b48697044895fca21577a8e25bf165813830f48bdf383e5b9bc699ffad6

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185449c806b831bb2cad08850e3c1d474104afc14b111adc2bf472fd753fd0b3
MD5 9e497fe6d6ab46d02803fa3e4ef7e57c
BLAKE2b-256 49c64bf46e588470ff8ca08d8099788325956e5c9931fea8a6422538c487677f

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d03e7d9343a17cfca20a385f010abab59e89ae36e4ecc4e64556bbbfd072799
MD5 d89ec4c23992d7a87ea3d5364427139a
BLAKE2b-256 e3cad5ff0e197ec9d2b6d065db2fe58fd4dc6168531dc780bc8dcf26a8915628

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 deebdeb8f9c61f003ffb21e7ef1bc1d5cd0bee331152331468dbb6c2a4a1227e
MD5 c16fecffd2b0c287f6c2a2480de77d8e
BLAKE2b-256 652aed182792fa9d97b245e67d35a877f9abc63b3c637c02781be097e1825c10

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7c73993c050ad984835a1b71d79a2112a0a87972ec19a4d16634fdce17068d6c
MD5 ef5ca42ecab798d1ef114f33fbe89094
BLAKE2b-256 dc8eb2161be5cae17340eb7b765993aa496999bb6ba1bd4c0b111fe0a72533ed

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: falcon-3.1.1b3-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/4.0.1 CPython/3.8.10

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e1c2d4a892031d65660899f039de8280f1e05685fadb0a6615b82c69781f5f3
MD5 adef373234329cb31eaba80e6d5f962c
BLAKE2b-256 d10677e6f378e74456ee5d0b6bdd9d9036715840aad3002581a466914d4030b6

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6de1c8be27f53f90f69babeeaf1648d220df88fd1ffad87712b12c3ada633fd3
MD5 687cf9add12fc226df675d68a3647423
BLAKE2b-256 6f57baae2872cd97d606e8fae8de917095745a9ddff22d3034be599351a8d3e7

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8055f4452a0780f8004211a748dc1e298d4fc6ee885de031b48a217c194dfa1
MD5 47747b2b90ce6e6db75bc24aa85fe48c
BLAKE2b-256 f581bfed7f4ce4ecbb78c7466e3c07682fddd4e3ce8dc4572a8ed9399a2153cf

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd0dd6de032cd2f6117ea1aab338c4f24f8f7bb8f81523d67c0c8a39533f1ea6
MD5 8f43e78d5f62efcb838c38a0627f1f92
BLAKE2b-256 8939f480940250e89eacc90a1e9fce95d7cf783c2b266d3a6c8e0867456fcebd

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2e0441f7a73e8da786d4fbf1fff351191899e00da876570b24e9adcca0939ed2
MD5 65cf095eec5fd79c7f3f34bc5259ff54
BLAKE2b-256 4ddd31759da97219dcdc1c90bcb1e951c808a3cd54298d9d58a9bca8c5b339bb

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31402dc377cbf8cc37d9dc4a16f648aa3013a0db3441ac541ec3d7c242fcd779
MD5 530b6e581fe48db8df16f843cd4adf2a
BLAKE2b-256 9be19c8dd892086657c289a709473f7ad1ec645207eb0fa8cd27af8b3497b932

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: falcon-3.1.1b3-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/4.0.1 CPython/3.7.9

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 04d502239aa1999d1c06f4e91a977e5042eb2e84f93e54df6ff942101f5d7f06
MD5 13ed8cc7054e9656bb1c59f53f7202c9
BLAKE2b-256 e42f6eb8abd234fed071489879006c9e2b3954b3b67b00c8c4a9943cdb381795

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50d38fc49ab1de153177fd217425587bc9d57501082e4bfa90ca797e7794bcec
MD5 39c67059b7102d6b5f3ae3b4cb22da3b
BLAKE2b-256 7d9ecd3ca54511a392d1ac5086e9b3f04bacd03e986f398962f2ff0b1c23b534

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2f03914184c7f7a2c67f61e23101f52f2606f2b4766fe198461374530648a4c
MD5 7e86aa8f6843253aff1382f9823747ef
BLAKE2b-256 103274ed0c818474ecdd298c5d37c3890aaadb758e247cd50df6dc8d826e7614

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94e750db7ab97e3c34ead96a9acaba0b28161404ed10d7ff876ef08358391b5e
MD5 3212ae9af057d757e32ba85348da3755
BLAKE2b-256 37f5f3d93f6837cace4e2d3e890e0f3cc253c8e71474a22c580df88ce0d3766a

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1e5c2f600a797a430064a758cc64f745a7f9905cdecf0b879f1793c49ed0e273
MD5 c6e5416117cfb4cf8c500625af9a3e09
BLAKE2b-256 84820ebec7594f1ad5b213d71143ef1684eb93ce8d9dd2cdacd521dd93a0faaa

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.1b3-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b5d4c447541f4b87eebde8119a01c662ad8579c598c75f7f4660820221b66b56
MD5 03b0ca0af5419b48582ef3460b29ac57
BLAKE2b-256 894db9aba6540de89e91934ee13801961f5e4555ffbb1b6f9b70cd8ed1bc85b2

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: falcon-3.1.1b3-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.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for falcon-3.1.1b3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3ff9b76b6bb25ff1a188c3ae8ab42584a3d19fa6528022122b328e1fbf976b73
MD5 5d01c1b024fb55f038ce6fbd6dd37ace
BLAKE2b-256 bf76e5aa93c8c4e688fa17628596bba059e5b5aa43a1593d105a55f6a476c1b8

See more details on using hashes here.

File details

Details for the file falcon-3.1.1b3-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: falcon-3.1.1b3-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.10.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15

File hashes

Hashes for falcon-3.1.1b3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 14e4abe60d30efbb73a5c604a797953c73d361f15a6401802ea01e655459c466
MD5 40b66cebe123e82fb0d1ff86448be7d7
BLAKE2b-256 1c81d2e6162ff4cf0e652ef6b0548bda7a50f073291f947eed3250d8d8fe1d7e

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