Skip to main content

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

Project description

Falcon logo

Build status Falcon web framework docs codecov.io PyPI package Python versions

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.8+ and PyPy 3.8+.

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.8+ and PyPy 3.8+ support

A Big Thank You to Our Patrons!

CERT Gouvernemental Luxembourg Sentry

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.8+ is supported as of PyPy v7.3.7+.

$ 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.8+.

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 automatically compiles itself with Cython under any PEP 517-compliant installer.

For your convenience, wheels containing pre-compiled binaries are available from PyPI for the majority of common platforms. Even if a binary build for your platform of choice is not available, pip will pick a pure-Python wheel. You can also cythonize Falcon for your environment; see our Installation docs for more information on this and other advanced options.

Dependencies

Falcon does not require the installation of any other packages.

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
$ FALCON_DISABLE_CYTHON=Y 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.HTTPContentTooLarge(
                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.HTTPContentTooLarge(
                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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

falcon-4.1.0rc1.tar.gz (659.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

falcon-4.1.0rc1-py3-none-any.whl (323.2 kB view details)

Uploaded Python 3

falcon-4.1.0rc1-cp314-cp314-win_amd64.whl (407.4 kB view details)

Uploaded CPython 3.14Windows x86-64

falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl (829.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl (817.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

falcon-4.1.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (828.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

falcon-4.1.0rc1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (854.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

falcon-4.1.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (824.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

falcon-4.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl (404.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

falcon-4.1.0rc1-cp314-cp314-macosx_10_13_x86_64.whl (408.1 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

falcon-4.1.0rc1-cp313-cp313-win_amd64.whl (405.3 kB view details)

Uploaded CPython 3.13Windows x86-64

falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl (830.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl (816.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

falcon-4.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (833.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

falcon-4.1.0rc1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (858.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

falcon-4.1.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (824.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

falcon-4.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl (404.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

falcon-4.1.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (408.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

falcon-4.1.0rc1-cp312-cp312-win_amd64.whl (406.8 kB view details)

Uploaded CPython 3.12Windows x86-64

falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl (846.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl (833.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

falcon-4.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (850.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

falcon-4.1.0rc1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (878.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

falcon-4.1.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (843.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

falcon-4.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl (406.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

falcon-4.1.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (409.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

falcon-4.1.0rc1-cp311-cp311-win_amd64.whl (406.8 kB view details)

Uploaded CPython 3.11Windows x86-64

falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl (833.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl (825.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

falcon-4.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (832.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

falcon-4.1.0rc1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (863.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

falcon-4.1.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (831.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

falcon-4.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl (407.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

falcon-4.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (410.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

falcon-4.1.0rc1-cp310-cp310-win_amd64.whl (406.5 kB view details)

Uploaded CPython 3.10Windows x86-64

falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl (805.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl (797.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

falcon-4.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (802.6 kB view details)

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

falcon-4.1.0rc1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (835.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

falcon-4.1.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (803.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

falcon-4.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl (407.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

falcon-4.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (409.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file falcon-4.1.0rc1.tar.gz.

File metadata

  • Download URL: falcon-4.1.0rc1.tar.gz
  • Upload date:
  • Size: 659.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1.tar.gz
Algorithm Hash digest
SHA256 0f1578c37ee83d072156ea2238ff8905c6bc77c124ec71a5cadbcf4fe91691b2
MD5 3f063a261ac8623a669512d1b4d3f046
BLAKE2b-256 ce8b7fb82768e17aabe02d0714535eb8d36a470b045e56100e175f07dfd72f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1.tar.gz:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-py3-none-any.whl.

File metadata

  • Download URL: falcon-4.1.0rc1-py3-none-any.whl
  • Upload date:
  • Size: 323.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 3f04d938538ebac4c679b1f9b30b50b77eef6c56e7a50efacb959d8611eb53fa
MD5 8eb77298da61f6d18f1cddc3f736ad81
BLAKE2b-256 20531a43f74fee0a2579ed6bd156d05269b481b627248b0847c274552e1acce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-py3-none-any.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 407.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41d235f4371e14575ad48645523564ec166519f8670843e3ce0c6941daf812a6
MD5 ac0b25addd557a9d78ba4faa758e0b7f
BLAKE2b-256 c4b2307c5b6a3759914fad084f17b6bf66be71562622563de7fce842859f3dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-win_amd64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfc88a1763db378f119efef4ec01f1bf7b8903ef5ed346af9ced680201d36ee7
MD5 1bf4de698a04d4e50fedb7ea6211d1df
BLAKE2b-256 90feb23cf7424068d70d6978312da8340d47b93c480ee6cd663952b472a1fcb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad42457c12af94586dbc4189acb2b426148df0c6cb74530b0c7e0220e3b0b4c0
MD5 4a233f9ebf511ccbe132ac0185e9b583
BLAKE2b-256 f04e64a3f5aa521f0993f647259cfcbdfb5dfe1d804faf106ee3166240d34380

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97c76dc23c3f2f1e95fd2e01e5a1a32cd24124d550a7a933ae01531896e64f97
MD5 da2b786045111782d9b1295736641958
BLAKE2b-256 14cbafde27fdb6a3662c5da11f1c8fcea681352e42df684e875b40dd9858482a

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a6b77f01ff112ec663d84a99601d3490ac57f7572f8882cb6d097551776a047d
MD5 cfa01f5ad02a9ac9e5cf9b351ed51515
BLAKE2b-256 5f69ead7d444167198026500a9ad0487eeae6e0e895423c34beaebeb9ec88898

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2e248bb77f1f4ddf2f2e69002f676b6fdb19ebb7d8775849da08cf03f8e7cdc
MD5 f2e075bfc034d75fd094f0ff25a9b6b7
BLAKE2b-256 66d11f18f52ec24c8d94d5f974ccfc884c2e55a1d4212c8f9e23e84def30466b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7ab4345da7a0402ee817bb2f3ad5b4fd3925e523818fa32b0a1ceb602aeae41
MD5 c0bff28a89165472cf3b772da9849443
BLAKE2b-256 e7fd32dadbb86142f664ed6f525f0d2759b80fa3cdf264d089b0ab95a8a31a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba0a8e775ebcf8a9327b9a1ace8bf5c7abd1acd17d8f51878ca3323416353028
MD5 73a044ac793ddf0ff48bf0c832825e8f
BLAKE2b-256 50648454bbbb347e0d8eac655e03073db365105cf1414e137432f7c05e9fd729

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 405.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9468ad85cba3acc88251e3f0bd5554563df22c03e5fde08b3a2c87638c602d7
MD5 61d840d868f97a25586e54339cbf1252
BLAKE2b-256 04bb3c374e4a4a3bbda1665da1164a8c7cd74a99d9bef1ba881d1da8d416b5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-win_amd64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4075a159c27acdc3d878a9889f75e91e0349698799ee2854e6f19dfd90af8336
MD5 62aeea1cc2cfae7083cf6b2c320dacda
BLAKE2b-256 a646d38fca1da26dfd7e8216ec3b814edf374ef526a2557120f8e956b748465e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d11ca205b2ce1dcaa910de19ed5b5c2a9b5b61206edd5246681080672cc7eee3
MD5 52cd35637f0ca072c490dbfb29eea4b6
BLAKE2b-256 62840044e7c39bace8269c6f4f160f6794a0d6a19483271b30fc9a3280ea70ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2a136ea04927d62c92351d087de557cb984e60e6e1ffbeebf897f0faa995d88
MD5 efcf3baeb782d60153fb4a51fa601c2c
BLAKE2b-256 7083fa0fd90d0df843e58e8fef4e222f4f5a4d6d702f12db41d1382c0ce91bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c0e8264c31fc486c7cf1b5a1db0f8bda3a0ad5738c1db1c9927df487fd5a12ee
MD5 96f2207cf6c8282184d33b89953b08c7
BLAKE2b-256 c1c11a67a30a4f1f00d9c19f98d07c50860e9914eb61b77593b127419083984c

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae582d8d375e86bfd6e35df7e492344ad8b1530c4561117421b74deb98882b5a
MD5 e62ad2338c088ae9fbb2c3c5b1a01b76
BLAKE2b-256 e6b6d5d46bb23c7564627e4f78639da7d76c5a7a0870226fc6b015890742837e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5309a375ad998e718837e43d41fa8f8d0056f52ce4e246053a52927363186e89
MD5 a332b75e9ad5313431c8c61f6991de23
BLAKE2b-256 5aafcdfc4b39000e64c21c2a7e8eda098b559a4db1b62414fe71b7bcf9419181

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dfbe47ce269f22b9b1fc2e3636ef3df66f688ca6c00a9af56188342297265056
MD5 4e3a47ff08c31e96fcaa9d38abb68f7f
BLAKE2b-256 a8fc38c86e516d99b318507750863250fdb6fdfc97b851583d705a9b79f5e0a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: falcon-4.1.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 406.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c53e74040379dddf6a02f10b3adbaac0bf40ea23ee3421f1e2b53b4da77b073
MD5 4fa37ef1de2debee8b4f6f45b9c3a5c0
BLAKE2b-256 72034b8ab225322a6a48328ba344e376027ba56f884761af7226583a00dd9b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-win_amd64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b329979245b87156a9192a1d216e9d32fe56b0e6f7eb0b1a1d42f3fb2ad2d6d
MD5 9a8a47574e059ea95c04204be58d5197
BLAKE2b-256 da9e1fb879a807578f158770f93a2b5f0beee9cc06fa3b8840a824f716c4053c

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3202ac0b4a300ed0ad6d18a7934b081bbc2bac15db4b1bb6dc1d787b7b7eefd6
MD5 546a500e5f2e6ca3ce4f7fbb9cd81b98
BLAKE2b-256 62c506871931cede40aafabd03bb9abe069a46754534e5328663e0b813bf11d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b9f69cb1485ed99320f130e6babe059a886bf3085856f9869223ff62a8f29f0
MD5 e0ec7bd142de6ff472ed34ae273d55bd
BLAKE2b-256 149d4d6d183649a44ff6d47b2b9adc95749fa0293625a3443edaa472115b9357

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d60fc9b227486088b2e9495fa5f18a312eb363a8743bbe8155f364ba336b788f
MD5 4366b11b9f31f9123413a85debe28861
BLAKE2b-256 6a8de6aa59828eb994fe0b62294e8cdff6ab3abec4af33ec939539b3b7c8be1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80a69f569c1a88e39a5dd58d875ccbf38d4f87244d7e12c27806170465f80071
MD5 48c9d55c2bde8e30e47467990dd34daf
BLAKE2b-256 c6b570d9c4d08ff6c0092a444b69807389ae2bc877e1920db1b8c7fc8fc7a5b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56568a773733d3234da948ce5475d130332ed7dc5067d19586b23db446211150
MD5 84fcda9c7b3c68dfad9c9fed47e2e392
BLAKE2b-256 ec5f6d736f1295c38d83c47374c660eecce7ef7ebe831aaef8974fc3e399401d

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f8c8fa95a8a23cb49d7138cbfdfb2497927276b002ba6a3399b0be123c58d6c5
MD5 8f6e31ab366de6cd1abc0be174e929b2
BLAKE2b-256 be3ec3608ecfb1888db207aaf3fdbba604332e2c46cc8eaa6aaee0250554041e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: falcon-4.1.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 406.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4b12e51a0cf499946af645923668176a8093dbaadd5cd21f5c5b58f1d45030f8
MD5 57760b798a4ffda9e138848e48cf4fe5
BLAKE2b-256 3eb4ab1541f98d999d6093118abd58e9c1035fd58b52e2194ea3c94041dc7b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-win_amd64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 003d90e511402286526c6aa9edf051ea46fdd95242867b0b1c326e70f22ff10a
MD5 73bd35fba6e26eaea0ba6bb82f94ece6
BLAKE2b-256 6c2a216576d3cd60437f0554659c5d81423a45c196362e0a2e970ced51f4cc38

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e3c252d1a4d6208b432c2207afc83508ed5fa1f69634874ccda867c6758593f
MD5 5ed669dbe655746f0cf9d7437a644034
BLAKE2b-256 cd07ae4c56eb0de9829e507f70b0dd10ebc3a82d700d92accb38f7b14dca14d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39cd81c54202e149e73ec435202c855b7fb0abd5fc73e86bd272ae1fd6cbc29a
MD5 59f8ffbb1344d19c014a181360fe8445
BLAKE2b-256 f0011c70cea857d5f02985c2c06e2b395de5fe15f8462627ab3e086863cff48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e621377ee42303977f5740ebe068f83e31ba4bdcad32d8a47202e08b7a493134
MD5 36b01fb3253b3c72248dcc7c19560d4b
BLAKE2b-256 bc98a93e5272ab37392fe2cb4bf1ecc823592f6f4076bcede6a575812d236c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44ab82d77dd38376383a90c9599a241f75fb32b18e8bcf60bca19adbcecd95b9
MD5 44dd8ef3b6c6c6433b5680335b0b04b1
BLAKE2b-256 e0f590cc450f59c5f79feb905f252ad04ff2ba36e3b4565534116463b71cec89

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d6dbd60eeade467c69a9c52c938013a53617824e5aaf8a3596def76c720549c
MD5 bc6145efb05c6667c965445c3f4c0544
BLAKE2b-256 5df91614dc3ce6dd9ed6a0387730ccf9f20f2ae55c9f05883deab807eff22a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd41a249eecc1f149cd0e4c4ff4625680f972b4edeaaa1a642b22cbf57fc0d5e
MD5 1abec5cd8f9810fd95012c7b7d29d09d
BLAKE2b-256 438867b846e4363552cb3f189a9c9584aa584ec2d364326e7c0ca706fac4a6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: falcon-4.1.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 406.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc28a5e2d1aae711d61178e7e3ba84ab6da76d8d283632f525aaea0c0ec1e0e2
MD5 813ea378f0521e4d2295f6f1e5d1bc6d
BLAKE2b-256 3a242b6c1474765abda57cc03f6fedcb7893873bbd42ac28dd1c030584e11cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-win_amd64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6df8e5f965d08d8aac247789282cebd5ec9de4828d45ba09d23d478d5b30cda0
MD5 14fac7247a9af507c785cf4d7589ac3f
BLAKE2b-256 d0df1e94d20d4109a15429fbe0339a3a8d0a935ced91f28e2674e9e69a1b6378

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08305115e9b34519943c1eece3bb66da1c7b3f6ad1ff7e5adb73b4b2885e7611
MD5 2dbee12939554d9284424b87218533ad
BLAKE2b-256 f7b90c4109ac0c4cddf3182d17c7aea7603b7c45049173ef9e33cc8afb00708b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ba331009470d4ce177b8924e76645ef6b8f82209d8d2a3bcd34c6d499577260
MD5 d456af5d45148bd23807f54a77d94090
BLAKE2b-256 5807d88c3c99942fdbd9361b5c07122aad63ad54dd255128d5828dab9030109b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 839c35fe6f661ddcc932955dec764e63d3e547d2fd4e3f17819d2e82124f1b4b
MD5 78093aa1561aedeea2fd15f1e857ca92
BLAKE2b-256 d8f339b5255bdc1b6769ec9c165d6b4c7ef7d67e1d8e767a48ace408011cc6ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2179779b19117a64b83d5db24e65681bdde1e62d25fb229ef8931a164bfce67
MD5 8e0c0bff08fd2fd2433d4c0bfe926d9c
BLAKE2b-256 df6decb0f857349e63e28e63de279df838fdfa8a1fb54a4273a3f21c823b0943

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2e80be6f48c0ec116193ce6a6916ba327a450202216c83977b39014366026b2
MD5 250498d84c4d4f6afb20ebf25f89ad4f
BLAKE2b-256 d9b70fb1858fd76afb7958819da5516c3b8f824343654d5ac447da8d8aadf498

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file falcon-4.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e05e7167b84ba3f7d0a27e3dc3e45642d495704ad29c4d4109a26aff47344154
MD5 6100f4c372b37d00d2a59f8f0dee9163
BLAKE2b-256 e014c3b919c0d1b5a55c56847d9c39205aba5dcb98b8c1131d41baaca3d04c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0rc1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yaml on falconry/falcon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page