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

Uploaded Source

Built Distributions

falcon-3.1.3rc1-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (11.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp312-cp312-macosx_10_9_universal2.whl (3.9 MB view details)

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

falcon-3.1.3rc1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (11.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp311-cp311-macosx_10_9_universal2.whl (4.0 MB view details)

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

falcon-3.1.3rc1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (10.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp310-cp310-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

falcon-3.1.3rc1-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (10.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp39-cp39-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

falcon-3.1.3rc1-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (10.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp38-cp38-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

falcon-3.1.3rc1-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

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

falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

falcon-3.1.3rc1-cp37-cp37m-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m macOS 11.0+ x86-64

falcon-3.1.3rc1-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

falcon-3.1.3rc1-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.3rc1.tar.gz.

File metadata

  • Download URL: falcon-3.1.3rc1.tar.gz
  • Upload date:
  • Size: 577.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for falcon-3.1.3rc1.tar.gz
Algorithm Hash digest
SHA256 3d292d9dea157ae43a313d86d2ccc2a1bd2fde900c01c15243e04c9b2a3505f3
MD5 95475b0652883736040e4d57ab52896f
BLAKE2b-256 6774eccf026a1c5a9a09f25b97f7b69a643ace5d61cf13b3bdbe303a7b227eeb

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4aee81c33da084b640991a5f0886f8df8bedebd27686e1023b7206d55b77c7ab
MD5 5dbfb2a36852c011ac486c7e92979316
BLAKE2b-256 531a4c69ee2b42b4f2acbe56433c0ad47550edef35c58df17a57be927cf5c4e2

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0929af264bd5a60ea79372a0165e13ede75a8dee02f59772033a1ab334f4c090
MD5 9e4bf510f243be453d1f5195f0d8531f
BLAKE2b-256 a90e62c2ea195490925ed6b0709b24c4d4531b309d8a65033e31f191e0081492

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a95a75ddfd7a35bf0172b566ae5b72580e92ef8fd268cf04af62e1f1acd8d8c
MD5 5abb2df5d0aeb9db3a99a2562e7ea1dc
BLAKE2b-256 36631fc6bd5a438aaece64fc379b1f7178190370da010dbf695f74d08dcb1dbc

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e2db46c7b37a0bb51d396ea24c35aac76626d47353f9f4f1c2e89616660b8fd
MD5 f9b357a0433497d2d0288ccbb6f199e5
BLAKE2b-256 db28e82f09bd64876300d1f4ddcb1e4aab4563cff00b40077f6ce8e2c4be4cf7

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3c55df2c4e4fed0fe34733f28e06d1620f673b5a82626d335820b0cd17afa429
MD5 29d28ff5e2477e658ce71401813b786f
BLAKE2b-256 59ab23ff34c3aad12d6b83af5ec37c0b98b7fe334f4cb4ae7d1d5e41a5854956

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dbd96dcfda759e3a3ed05caddc4d3d571998aa1d271d8b86adfc035627cda40
MD5 a20bcd75700dad03027c53d6b220076d
BLAKE2b-256 74e8f3b8a6e2be8a3bfc58b3c67c8ce03bfcffc2e90daf6473df18482fba5e8f

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f34f029d791ec1442e3eddb7130a6c033bd07df7c6bcf5be56b9466c141c11ff
MD5 9ac4a94ae83b5f7761cd7b8c2d6cd2f0
BLAKE2b-256 4e15de034c7baed1fdb76dc61fe12f328943f89b70436e86d243cf9ab5d5f19a

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64808dcadb3071bd53f2c59bfdba00f5a0167d5edee059e5b3bd6184003c5c62
MD5 ffa89cf5e22e0b91aa2fa64694bbd064
BLAKE2b-256 d4b78079a00a851169b434b193a7aa588f16cc4ed04a4546756ec3b1b642623c

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d9fec71c9c38d6b08337ca43f68c8b29fad4b1f719063517a2d4e66dee7ff34
MD5 73ffe9ef6ce099ad38b58e9c568b6434
BLAKE2b-256 a0a321b5ab39c8cd7bd3481e7a1f24620a3aefb19a85ff663757d9a3901355e5

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3ddb0767deaa7ec027880708df5152130840d7a0d1d28ba71fa62a007ed9b745
MD5 f37c99fdb19b1740ac9bd668c79466fb
BLAKE2b-256 19df233335de2bfdd622ce959264e4eea9192998fbaec509d6970037c15c8699

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9112f1a4c3481d63698de96788d75a25ea8d6ca4c147c632cc26aa594dba7dc
MD5 781bde5e2795fd6f56f6c2dc5bb3aa6d
BLAKE2b-256 484d3d7f2d8fd01c1d572e09ae13918a1deee3077b9a90161f564b30184908e8

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac854877a179be1bf568db8684d49ce6f1b367fd0b2782844c23ef5189604bf3
MD5 fe18cb6b0dddc1f169c4272b83c9a613
BLAKE2b-256 4b6c883607c8bef6614b26912e32604cc8497d742ec50cae9be13b85e3765a23

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26f37d8516e3f06f42e77a96f143bcbcbeadeb110c3222b2882f14384d958962
MD5 a9f33f6d06e2fd90f54aa33ef4d8cd96
BLAKE2b-256 189c46254f83dcf7e8ed7e4cf1f0b738dcbda7af7cfe92061704b70fc6af4382

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92a86e0509de826b38fc4b9c5b271dbfa56b979a688b3125bd093d1faa523e62
MD5 33a44f2b270208789a58d0d85deefe21
BLAKE2b-256 c9e7274814cc17677d9e9479f133962975680d96af32f2e2c48d997790fece09

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ea4356ef72af29f6e6d73913f48acf8edbe5f3df4c866d9edbec00fe8950349b
MD5 8e1bfc8f473f3143e1a9ce48f90d5be3
BLAKE2b-256 8259dc4549ea33c8d95cec1938931f988edd479216a229775ca5eaccb28a610d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.3rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for falcon-3.1.3rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2249f748a1469a7702ad135ef32ef36b9bc40789317572b2244ac1b059d7a98b
MD5 7c102afee8261a48065a60befe68dce3
BLAKE2b-256 e11666008b764ac4f16495be7b5831618e1df13e327e93d9ba36a9952b0a741f

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ec3f55fed9b2723c97d12917922d3a2468cb7949c0a4cc7635efeaacb526693
MD5 067bb186e6f28e2261afb6f0d88279f4
BLAKE2b-256 beca773b484b7a47ed7c17255934cd8f5710e26c3b4c87e987facb7b11a9b9c2

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34b83f697cc9962f08b5a5059bca85d614d2e6169771f733333ba4bd6c28149f
MD5 94b4f92d786de3e7c107c370f52f639c
BLAKE2b-256 993cbc81ee63f2ebfa3969df0112c7b40f477571876fc4ce3fbebd540863d633

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5278b0bd32f4d5fc42dbeedaff89970ceba1265b1a456b4ffbdafb9d16b1202b
MD5 3adc5869affc9a331eecb8e0ad694d10
BLAKE2b-256 0e6766872dcf3d899113e89e147eb86650cfb1ce2eb3a295427517419e1472dd

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e373a464366759ace614c398d23309fa043f3b14cfc05a7ee519b20eb4d08139
MD5 880e1f8bc0fe7002c2cfc091d7548f98
BLAKE2b-256 bc1a09ca9731475fc448fe4a4ef67922ce34a8e53613a6d05591cbf421c49bc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.3rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for falcon-3.1.3rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c6330e1a6d83fdbe144a7b47079f0a9239bb5c7994111c99bca7b2e8ee8d07d
MD5 951b82489f17a2d1250e74bf24ed538e
BLAKE2b-256 56cef6473f64a790db84e7b1892f722dba545fe6d63e638496c426ffc5501c97

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5572788e9feacbabfc8d782b86e452667f0fbbff98a90dcf3cf4cda6cf752e7
MD5 239811644bd67d4dd37db2c116345919
BLAKE2b-256 2219de3c0b9338690badc653cd104786335c2a9473cfa7a94f6ccd61efd5fff1

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d34b47c48b79a02b50f6859d27f90219466520e926bc2dc83ed4fb3ea0cbb77c
MD5 d99561a642c22e0de2a39cc15fc9cef4
BLAKE2b-256 8b350ad19238ba0af5fe08c1b1bdc8736594e5069ce3d1d83bac9b02db74cb36

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 858624beecbe6e562c8519580eb1a7a1ff327db88f50f08d18fb9b6b5e2eb055
MD5 1e82190fec9966b51968518b6d9eabe0
BLAKE2b-256 bc980959b969c1946dbc547b58aa333ccd5e5078d674dc8ab666dff57d018b5a

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fd9f5b8c5fa2636d1b088a02efa6139b84ba65a8ccb12ee60e1068300441c741
MD5 0bf0f33e3ed481a6bff0386f41f1497a
BLAKE2b-256 ddf285032ba3229e30830c033d14297ca667effaa24d1b9cffb182a3964b4375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 642e9d5864f62f9040f79564e7327dcb6eebddbba9905130991b319eed215bce
MD5 d200d2f269fe04303e4f0489b2006c3e
BLAKE2b-256 45ae72f8430ae7111b5996645d14f33c6c87db4b5418240a2cbacf60d70e46f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 107fc1b0ef9d732b0f46a5eeead9946fc629984da6d85f1a9c7996810111cc62
MD5 6de46e80536eb15fee009c1dd0ba5beb
BLAKE2b-256 916e8635c1c51525ce935a71c198e8d549b6937627e24c30d29b6e87c03c2b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ca764c596a78d9f08579877eb83866c61cb076936941b70fe115966e309e09d
MD5 487b844eb275cd46a9e7f911ce91f00e
BLAKE2b-256 72c748170345b4b1c3d762a090c2e19ad6438cda0381dfe5f4744818ebdd6e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fbafd2eea0614622a7ab959a29cd9f02cb3a5a7a3b2f4f2f9941a5d3f62c37c
MD5 d1c738ba4f9715cb8920cf39d4e96d0a
BLAKE2b-256 3325341394930d66af580935d3688e49442e1b43c48253c3396f408cd74be025

See more details on using hashes here.

File details

Details for the file falcon-3.1.3rc1-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for falcon-3.1.3rc1-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8bd962fa8d8cfdb790607500f4389b486458cc44f35ecf89511277b3fcb544ba
MD5 4d508db29e80720e4360308f3f451958
BLAKE2b-256 433eac639f99ead51fa2d937a574cf47b5f7a565f7bd42a0bcde783c2a111356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.3rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.18 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.3rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5962d6f10ac5816d954814dde0cb031803a5cd57b6bee5ad41d44059289a3ba8
MD5 d082d44ab653a9d16fe0c6b536013b22
BLAKE2b-256 0a9eee0c5d38097d2a4a2fcfc9a2355043f9f3c850e98a07e11f973d84d1e0f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.3rc1-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.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.18 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.3rc1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 85be50d9b764db2cf8337a3f8b0b669fb1b8d9d1ebf1bb9111048926d8be33c5
MD5 78b8fbed6dfb316f923550043abc3d4e
BLAKE2b-256 c2fdef548ab429e994ee570d1ef68dfad38b1deefb0da36781f14cf637201b9a

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