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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

falcon-3.1.2rc1-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.2rc1-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.2rc1-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.2rc1-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.2rc1-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

falcon-3.1.2rc1-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.2rc1.tar.gz.

File metadata

  • Download URL: falcon-3.1.2rc1.tar.gz
  • Upload date:
  • Size: 577.6 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.2rc1.tar.gz
Algorithm Hash digest
SHA256 59b15e237b1d1e98b9d7a0b4073e83a56fcb4729bd43346dda02c7354a6f8554
MD5 ca899bc9144dadb6fb2844a5ac3da130
BLAKE2b-256 c28df9070b6eb3b62d6cae277cf3bf857f0ba2d2ae62e849a061190fdcd3dbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb8ac540b97e86850684d6743c957365f4ae80dadc7b1f01aa51f4c99c1d5738
MD5 e3b7725f351b15675bb0040f17f0e47e
BLAKE2b-256 d6a3cc0f2ef900a18a3c22751b238506d883b977af3d6bd4171af39e6fd53035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b013eb88f2d035745b2fc589ea897a75003eb7e2281077160b05baadf1ebe0e2
MD5 fe376027e5bcf9538b1e27c863256b1e
BLAKE2b-256 50469addb5572bce280a6054e03a18d251e1589c81859f5db977e3e9c3201a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aadb58864d7db61bb3c807d1ddf5f393920085c8e4b6064dc2285bc25e980ff8
MD5 98a028cb04a3b9112214538b0732eb04
BLAKE2b-256 450e1cafc82544015d597f18eeb0bfc8648fca03867d4ad5de63242136e6ac42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a1f0fcab61bd1ba2b5f94ba9da3fcf111b137e919bd7a00c3639ea4c6be1af4
MD5 197d9b9cd12213fc3b3438fb1ca24b3b
BLAKE2b-256 bad9309c4199b8626f97897266493a5ca3300da5100877db0235dcf66cd93c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0cbe64675fd803cc8809a9932d7b5c39169124ca1fb91e1817a55df1b53657f7
MD5 6bc342648ce78d64a481570c7a6c298a
BLAKE2b-256 22bca625b19be82c952ff337ce002d356ca120c18943f89871f5833acf39e7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83fc6fb61dc33b59639c0c57b63aa6254378074f2454d75bad2b880d12955216
MD5 6b6897cee765544cb5a81219197a43f2
BLAKE2b-256 bc228dda0b9824670933b49a718c0b33c935cf5e661ae26e8846e9a2f6565a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13c6ce0cc23645102231a162e4a8279971242f0e280c77c57132b69c4b419f47
MD5 f1eac7495541f38bff08e614e59bd4bd
BLAKE2b-256 6957768401123846c1ebfc1ba2ec9712042e4af8ec280cad6b2fe0bfc7753e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 751000180cfbb886a7e5342e47fae436d135e2ac3f48b1d55335bc6b5023667c
MD5 d01ecf7dcc895b4200292f6768be18b4
BLAKE2b-256 df61dc03855f66e2d30fe27589d7117ccde76a2cf9cfbb186f3a17908561978a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8487e7fd171c24085f46ca614c73eed85be1b5c3333ffd4438d732debd783b6d
MD5 468ce0df8763966e7e23cb4188d90c82
BLAKE2b-256 e6f210c6d06c85801fb76fe67750aa5fcf1234bfcef80b6c383e2892841e8b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 12104bfe6a3f4158dd5cf1c0ec745aaf02aeb72ba60e294e1c1dc98dc43e9abe
MD5 ca657eb552819663da568a62b8420da2
BLAKE2b-256 aec0b69b18947759865d291a010af6e283e3b543c16614c043c0d0bb5b4a52bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cb6d22e7fb9d95c88571ea5916efbd00201adfcc05a518ccb42d1f9d09276cc
MD5 f9935186dded0bc187cb5cada70f8a6d
BLAKE2b-256 b1f7895ff3fd1a5da429e7468563437a24e16aa6fcc8cc2c6e2b9db8d798a162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec52d01f1acb64f943f0cda97474bdc81ea383a6584f537be5741c2434cf8473
MD5 7197f6f22aefed4e6c42dd4161d14371
BLAKE2b-256 4d9a16fc05b635e36f57efb1d5cfcda4db047a75677bf4a7bb64f6a86ef02ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80ba4bf15ed520f556d3c982a6215bb119805ccdf7491b211c61bd0e5a7a40d0
MD5 9584ba4a99c01cbd9857a8196dc74c58
BLAKE2b-256 7d8423d1aa0a8944ea18c8784116339ce6c552a6769a90e8c64c76b82a7f7cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6426910be6f8f26e33bbac59a82406acf392c5734153a400a310166ab89e6e62
MD5 ca22c6dae17cd66f3f5a4e55bb0847c6
BLAKE2b-256 bf017478daf76ade64449364574258957185af7b95fe07e4c7795f263032e5a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b1ad6c8d62830bca8628129d213c9b8120b36a3c4dd768945684dd6b8d5d69d0
MD5 5713e81569840524a013d9455d9c5ef2
BLAKE2b-256 5700e7a2a465897faa09f9dc156219e253151405b048c461babfee5f5824877f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.2rc1-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.2rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09bbd617f997816de58eee4af721b4a8977b73a11934ef73020b0e940ecd5326
MD5 d662adfd5f0d64253efc86ecc2943c8a
BLAKE2b-256 25ff9d2da07cc66d6e2245a794f2d03f6bcc1b041b2321e6cde343869f2ec823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9f3a8c5844f77d9b66a27cd80609857201784750be232ae4fc4cfd14d2cedaf
MD5 5f722d4f0ae6583c577b1f06c4cf4abd
BLAKE2b-256 1f97d8f803144eaf7d4ea0a08f7c2784ccb8a3b5a48b56a18c117935939f15c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f87725db8101971ec7df3cada18ab00d958a94410fe0b1dadf34a8da555e79a3
MD5 1aeaeea45de8bf524ccbb0d1c8a0f27b
BLAKE2b-256 265fc6051a6406560a741c8a5d8f7ea60b4700dca47dc24364e2b52c7e7ed1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2abbe9d85ee394c942a118b80ad53c5dccb7398428c1009c2ff96974a1935c9
MD5 34a4f00706d318033d6b56004a44f429
BLAKE2b-256 1e86dca5518eaeaf84a6b3ded08ee6a9e9ef46dbb12926489774f951f017fc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 979da9d6334c9aeceea02a7dd36ac2f7cf0983a6e45f71c7c223c312cd0a10d4
MD5 300573ef82e739e910653976a1f47849
BLAKE2b-256 6965601e384b04e8879eab8761486fc497f8fb39ca5af3338665ec8d5666fe63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.2rc1-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.2rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5c042eef83a40b4be1947449fd4ba2f8f4021493a5154d71e8ea99c594fe647f
MD5 db0995f04a4a118fbbc4e9e908f43f99
BLAKE2b-256 3531131b718a37ef3a5cdd4008f1861d733b4364ba145399d4d24029e23dabf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80e658b35b605fe9de0fe18c6c8463e50e868301dc790f914acbe752c2570e9f
MD5 66bf2de63cac0864c15a71575a8587bf
BLAKE2b-256 bec8d25ca8187f09abba7f7a19bb8432f817f5fdbced0f5e0c902aea75ecdbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df8c0d7f53a99d88edd67060ee9bb6f8485e80dace3e6f5cc0cb1a1d35655652
MD5 044508936a1669de02100dca4e13eba6
BLAKE2b-256 624460eaad2c9c4e8bcf00d7fd3e0dcd97e7074f367a858cba8446259e79a81a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d28cffbf482220187cad9e3ce87c07b080f7473bfd86ff740d26ed235fa3e7f
MD5 a63de8566efbaf52f5bc910b12b6c133
BLAKE2b-256 27d9471a2b87567da1be7c8ad5a9c1c751143b81b73d3898123c5cb59f0739c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f35e3473d246d769b1f5bcf40b91c24381939d3954714b2257b5af60321c0a88
MD5 e91d390aed0b31f1626d2ab88dc8c40d
BLAKE2b-256 6566466250c48f7f8f0962366f9d5d2fd2634742ed74c9e068433f0b6af46691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7351c30be137fd35a333bce4f46d2cee9a01552efe614cdc0b1dca31e58c03a1
MD5 d59e7e0491cc0823c2e6b776b4a341f9
BLAKE2b-256 f4593afeafb49210228c3b47de706198cfccdf92d2e237dc24b01319650dcf40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 899ca119a8bc3573d31fe18115f384c4ad9d4d93c377b96f835b5e99e3307b4e
MD5 63608c4711175e6ad7335cc77decde97
BLAKE2b-256 bdbf979f99bbf731ebd565e96804dbd8e9b60f35e87feafdebbca59fdfc3fe4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d637ec0807f89e078975f14eb582accc2eaa07d831a1b130c4facb209fd499ae
MD5 efeb776ee66afc7a665b2ee807d97bbd
BLAKE2b-256 31087b3574ccb508a682be9eee6ea88099551f51c9fde1a5bfe703f672c189cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f19d56caa8b4ae84d9e1b6493d313bb5ec7d3bb8626ff371cb03a005d4cbd436
MD5 efc0e3903c1f9a5d4e2696b6f32ab952
BLAKE2b-256 713c5b36c97475cd0d2e7360d16a67b790631513579c7101ee813a110eeee55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for falcon-3.1.2rc1-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 62706a8c9df12d8b281fb8a1a98a1df076b6654297c6bb415dfe8d362f8410f2
MD5 6ab99be9320169f169b1f35004d243a8
BLAKE2b-256 4029c9e4388bb08f180313728ba556bdc805adbde167f691e198ff584282799c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.2rc1-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.2rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4b95a7162016af64eafedc7a0828d32aba98a8f093114dc06d114886cfc29047
MD5 7591a00a7eceb01767b447aea411b9fb
BLAKE2b-256 6a31964a3110206e6d335829ba13d3dc773e23f13cff1e653fc72509424b302d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: falcon-3.1.2rc1-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.2rc1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0aa060024b9743db5ac6ecefd67b6607eb3090d215a1300767fa2c57bcbc20c4
MD5 2666e7186538f4492a3880281081ff5c
BLAKE2b-256 05baea9670c4b6d4156b9999d8e0e44c3c11b7b39ed97f94de69b4ff95815d77

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