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.0a3.tar.gz (657.7 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.0a3-py3-none-any.whl (321.8 kB view details)

Uploaded Python 3

falcon-4.1.0a3-cp314-cp314-win_amd64.whl (406.0 kB view details)

Uploaded CPython 3.14Windows x86-64

falcon-4.1.0a3-cp314-cp314-musllinux_1_2_x86_64.whl (828.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

falcon-4.1.0a3-cp314-cp314-musllinux_1_2_aarch64.whl (816.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

falcon-4.1.0a3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (827.2 kB view details)

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

falcon-4.1.0a3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (853.4 kB view details)

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

falcon-4.1.0a3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (823.5 kB view details)

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

falcon-4.1.0a3-cp314-cp314-macosx_11_0_arm64.whl (403.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

falcon-4.1.0a3-cp314-cp314-macosx_10_13_x86_64.whl (406.8 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

falcon-4.1.0a3-cp313-cp313-win_amd64.whl (403.9 kB view details)

Uploaded CPython 3.13Windows x86-64

falcon-4.1.0a3-cp313-cp313-musllinux_1_2_x86_64.whl (829.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

falcon-4.1.0a3-cp313-cp313-musllinux_1_2_aarch64.whl (814.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

falcon-4.1.0a3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (831.6 kB view details)

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

falcon-4.1.0a3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (856.6 kB view details)

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

falcon-4.1.0a3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (822.9 kB view details)

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

falcon-4.1.0a3-cp313-cp313-macosx_11_0_arm64.whl (402.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

falcon-4.1.0a3-cp313-cp313-macosx_10_13_x86_64.whl (406.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

falcon-4.1.0a3-cp312-cp312-win_amd64.whl (405.4 kB view details)

Uploaded CPython 3.12Windows x86-64

falcon-4.1.0a3-cp312-cp312-musllinux_1_2_x86_64.whl (844.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

falcon-4.1.0a3-cp312-cp312-musllinux_1_2_aarch64.whl (831.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

falcon-4.1.0a3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (849.4 kB view details)

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

falcon-4.1.0a3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (877.2 kB view details)

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

falcon-4.1.0a3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (842.5 kB view details)

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

falcon-4.1.0a3-cp312-cp312-macosx_11_0_arm64.whl (404.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

falcon-4.1.0a3-cp312-cp312-macosx_10_13_x86_64.whl (408.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

falcon-4.1.0a3-cp311-cp311-win_amd64.whl (405.4 kB view details)

Uploaded CPython 3.11Windows x86-64

falcon-4.1.0a3-cp311-cp311-musllinux_1_2_x86_64.whl (832.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

falcon-4.1.0a3-cp311-cp311-musllinux_1_2_aarch64.whl (824.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

falcon-4.1.0a3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (830.8 kB view details)

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

falcon-4.1.0a3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (862.0 kB view details)

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

falcon-4.1.0a3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (830.0 kB view details)

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

falcon-4.1.0a3-cp311-cp311-macosx_11_0_arm64.whl (406.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

falcon-4.1.0a3-cp311-cp311-macosx_10_9_x86_64.whl (408.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

falcon-4.1.0a3-cp310-cp310-win_amd64.whl (405.1 kB view details)

Uploaded CPython 3.10Windows x86-64

falcon-4.1.0a3-cp310-cp310-musllinux_1_2_x86_64.whl (804.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

falcon-4.1.0a3-cp310-cp310-musllinux_1_2_aarch64.whl (796.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

falcon-4.1.0a3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (801.2 kB view details)

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

falcon-4.1.0a3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (834.5 kB view details)

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

falcon-4.1.0a3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (802.0 kB view details)

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

falcon-4.1.0a3-cp310-cp310-macosx_11_0_arm64.whl (405.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

falcon-4.1.0a3-cp310-cp310-macosx_10_9_x86_64.whl (408.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: falcon-4.1.0a3.tar.gz
  • Upload date:
  • Size: 657.7 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.0a3.tar.gz
Algorithm Hash digest
SHA256 ec86c3eeb08e3fae922f751e893ee8ba966834e4e9f6b28187abc7b037dfc38d
MD5 5e6491cf284a56b289d99566ca0453bf
BLAKE2b-256 ae28ec9b896da7089ba7306339d48af80bd16dbbe4b56aa7e2423cab74d61849

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3.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.0a3-py3-none-any.whl.

File metadata

  • Download URL: falcon-4.1.0a3-py3-none-any.whl
  • Upload date:
  • Size: 321.8 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.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 8bf5eb9e5b293074752dc84c04ddeccd5650566f107ac22a23189f80e74764ea
MD5 6d0e88248d0c3ad2d57711b3b347aa36
BLAKE2b-256 9874d498cc1ab525144d4e5c7927bbdab06c7a6db410e812c731ca1da4322617

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0a3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 406.0 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.0a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92ff5ce558d29fda59551e80fe60c8d3b2c272fa02bcbdd3e21e00da01628d6b
MD5 54e84d9a418070b3a39220629ed4ef69
BLAKE2b-256 6e7cbdc631c36c544f7dde901a171760aa109d9cf2d10c563da76a3b9eb009e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99e597dc80081426cf0c2d5d26925b069f998232270c9ee5ca3de34bed3610b5
MD5 d6250e0ef819f898c78bfee6a0277e05
BLAKE2b-256 435f2c4857b69c90d1daabf370fae4af24c7ce74d7dbda3c330901576a3cf8e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eed78a68e1c1b17a084b20eebd4bc3890010f8c8a6f41bebb10b0fd8a7c38119
MD5 b113d08fed58cd4f6f4cf6f6bfb8aaee
BLAKE2b-256 bf793ec487d4c5eb828073d1bf5bb1693f573e1d4ecabcd284057d5bd799dc08

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-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.0a3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 511c48f30258162e5aef63832a7cb7bfa977156c54c02328b67e56e65902d4af
MD5 f293f3950d78ed99de388d4ec77ea84a
BLAKE2b-256 07b2382c9cfc04a73734b6346a1725d34a8ee6ef8f932b45bedb292705dde4eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fec035e56c91d92911101385d19dc0fd6d73f1b293db5d4ee12c8fb86c48debd
MD5 0d73f168a1587f63c87c1a6bf5461b11
BLAKE2b-256 1862cd54ae32ae9968db64a37148a3d4e4e56979fbab7191ed175849fd9db5c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1418dcb716f153e54033db545ab280880025507179c2ad593186b54ff5ca536
MD5 b65a184b4b41a77874516eeda07d2af3
BLAKE2b-256 f5ad7b94d69b684117c52a4b29b5d20415954b2953a4889d5486b514ce2a25c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49f5a39ea149371df755e75c09320def46f1454902169c6971ae1f6892774ea1
MD5 de88fabd2032b30ab22f3ddb62aa6e6b
BLAKE2b-256 1b07905a66fdaa7128772bad2327fa22b242cca1b2b51b7754be9615bf5d51d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f96f2f08d32f0198623ec94e68f00dd1297610eb03b630c556e00897dbd581a3
MD5 e81e8355c7c9fcbe6c84776a3a83be9a
BLAKE2b-256 155ae7d4e63decf579c742a4a3b47e531c6310a11346e07f5861feec9e6fdc1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0a3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 403.9 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.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7cb0110ec6f45c5b840c16fbb02b06ff914ec964fa2ed88566392b668244f14b
MD5 a4baab2bfbfe5ce0e777ebd244b5120b
BLAKE2b-256 54cf5ffcddd5de04df7ad1a8abbd0bfd8129cd9dba014c84dda1f14583a4621b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2020e3c58f138db3247e1d9d9b7af0e02eed7a22bdd09967466911fd15c1e12
MD5 8d2a4e302f02dce4e817e4233a1902df
BLAKE2b-256 709fd95261cf33ff4123d7360646fb455d4d3ef8ad96b687ecaa8f94bd318459

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d74618145c0f5c0de884089281f76bb4a2c66593c2fefe075dc96235d1b3dc33
MD5 4159cd2cd30ea10dc1acf64662f1024d
BLAKE2b-256 bac4795fc46b460ab5cacf8aa4d0f79f3ba032e4e44fbd412d80e7a1039da60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-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.0a3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6382ce82144d9bbb1e0370afb42349b0dbac9e02d3103586d551f7335e2f4b50
MD5 2e3476f446441158a544f8f46b20f354
BLAKE2b-256 339525a4ec405e29b4b0badb59066504b3fec2b12e9f1c76aa1c351ee987d566

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de0ca719f8033aef0967905bd4a214b5c7adff516d927fa4ca41640fe74a4385
MD5 3f832c1384516a67244783b74c0186fe
BLAKE2b-256 c08389a832e788a39de140826b65bcf75a9a1bdd289a6ac044cb9087ed7389d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e06945cbc7d7cdf13f236f842332139fd8e8edc8cc7227c4869d8cacce55258
MD5 7c782223d99dc56363786f5729fcf4cd
BLAKE2b-256 fe8232adc94fa5a6c1f95a8e9f03c6a6da667858576931848df489f0ab8dc30b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d385f6d8681e87049c8a0e5e7b84df1e88129f931d0723ec21d2d10e3ef54c76
MD5 d9fb0db578693e7d40c35bdd715d4a15
BLAKE2b-256 ff6fe4a6ea754714e4e7ef249f452d3544d00db188357c6e92003724aebafe60

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fcebcb7438c0852042c663d44b22bb25bafa6fb9ed972ae0a125d23ecd81e206
MD5 7adad1a5cc043ae625eb1e262b435489
BLAKE2b-256 6ea3fe01c201ca1687f0a8eebafd35a41610c95439e7fb5f834851f82f1c545a

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0a3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 405.4 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.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26b631470c715f59028fa835e546e3b9fb5e177351923ff3666c178fcd653453
MD5 b1cc03ea2b6648da3c38ee85a045799d
BLAKE2b-256 4b365b5299839e4b8b19b982475da16c896224e07abfbcc7665493522eab907d

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0187d824b096ed0807325a3d88ad8ed6fa70d74b2ca512fcbca41ddf47caaef
MD5 5dcd9d8c154e40d98809ae7d44ebaca2
BLAKE2b-256 ef4668b443afe72dd23f3ea0545dbbce80367d80d494957c649baee9403e7f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69fb1cc8f00f9fe0db83fc961df21ee0070e363a73a54bd3697e10203983cf8d
MD5 ba9be1ed78a4b548126e02ca5db8362f
BLAKE2b-256 c086a47d9bf381eaa8162292c79196161f093e29f68c54f2d22ba4f517c4155a

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-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.0a3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e082279ddda6f93b4f14477af9bfe2df9f1b3502a42673e22cca71d9521445d0
MD5 bf221ed9c340b01228623b8a90e3e2a6
BLAKE2b-256 9b5888d479dc3764a232838a73c0b434fb4e117eb22a0936fa5c4c02d43d25e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 56e8501e76c3414d04cf0550ed4baca46c702fa8a6283251fe6b520450bc1ce7
MD5 82e685a9b1c548e8cbc4d436617b582a
BLAKE2b-256 87efcb3f4a37ddd1bf904a8aabb9cbd165e8331d98a53ca8ebbd9a064f004a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df9f8460f906c2f601ce4a86486b90d13acb5e28cca632281ccd3a2e856ab238
MD5 52e2c5d7ddf767756580c98931f8fd49
BLAKE2b-256 48094adf612f5d870ad0ce2679a835068d374a6f5931155d3e50fe8e35bbe4c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b65c14db6e6512675b2a62243cffc5fd9dd22033747283d10be9e2e3e5eea988
MD5 bc97e6f311335ba1d8a1f737e2c01ea4
BLAKE2b-256 ddc8aab96107bcab5eb87e77fcce6ee71cd205149fbe700de71571d0e7f4188b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9051def978549b11f165ba818ddf9fae467f491a38d9cdd3c71ff71e3bed2740
MD5 285d3fdf8a112476e91317fce854c63b
BLAKE2b-256 e92a2e4e992855810a14633e1781308ea47bd84ea572677b7db4021feea3c501

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0a3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 405.4 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.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4da4f6248f44956a3328173580c0caeb909d4f9e5866aca698457eda0f601930
MD5 723f04999fa7370f8e479176406691de
BLAKE2b-256 1e749630383c80633aaa0df08816e2e6454d0378860742f7ccbac2ab6fc244dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e712509986832cfd91c9093087ca4fbe33ebcbcd436d9643d9932d6b025eb130
MD5 96f295157f0711c907552957f17bc1bc
BLAKE2b-256 bc5a212ac74f21f3887ae1614fe8486d5d0d2b73b333625045cb5ebecf70b41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2843d32ab08f63fbe3d2c80add6700939a8e5004dad1252ceb2b59784061fb23
MD5 40cf61ee149c4dcd6078d6a7cef8806a
BLAKE2b-256 880f6a933f0bddf624c6c08889a1d5e5c8d4728b3997a7906e4730cc87654814

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-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.0a3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44bbc5a64c9e6cac1030524c27097d2d8b13d27ada521c5b9dea1440f11d5712
MD5 3885318a9192d1007e72d5ad6524d410
BLAKE2b-256 4368185b7c5fe443f73a980e31b76de32bda0a2ed92a1bd0d673d2fae509a7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8e801b14d6659a3f4a565d6c5c3866e5c955e9d85790402c20761b46f94c3fe7
MD5 4661a7499f86567c0063e818102d8174
BLAKE2b-256 e71fec197923c82292574649516baced3adf6fb511b57e8dcaf6641a645257fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81dda07b0258a32aa1fbcb30248950538090025bfec7b1d2d41894e56208992d
MD5 2e6ee16ab5b6738d31a707afca660b4c
BLAKE2b-256 b4838361fb6cea905208b9a943351598f2bf5076b7b2602326292fc379bb47fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02702dbcb83b67425d11e26dc4faa57fb4bf7259b86b84b96c991543a3a561a9
MD5 726d4f10941638930931ef52ac3c939a
BLAKE2b-256 d925166bf6558a1f4cd38972521fc662f757e6fbd7eba7b15993fafcfff58d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f03b5a7d0a7f0a9a80c164a418911a9f4abe6fd9ac101a552748987c44d4106
MD5 61ea0c140064305976fee94849c8d1a1
BLAKE2b-256 f4e372e3bc32a43e547a2edd9ae3b8d9dbc017632de2e1bdcff00286fd6554c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: falcon-4.1.0a3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 405.1 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.0a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ded55eb02ce76c0d33446624716ce820e94174c822578a3c5cdbb2cd4329082
MD5 73e258f144a10f22e29eef2bd55f5990
BLAKE2b-256 a5ee99cfeb3ad1b795b0f48b0e9d698a287cdff10d4ecfb5b10f9a9fe9bd3557

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 714b7836ced139c0b6e0e2ec843c2db0e40ad862fadc9121fa99d6d676f7e23f
MD5 91b818944fe77e25e87bb93dac03a06d
BLAKE2b-256 d4213d032071b754d00724fc5dc70361d8cca9a1651d46443930024d3e0fea9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c6e192f65d120d140b731a4af59595c76d40e6239502ca6bcacb865a92b924d
MD5 0c8b40cee2a698507655beb363e395d1
BLAKE2b-256 0774dd580e31993cfd13b17e1319a10a5601ee730e82672aee724f76a678eb45

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-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.0a3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 273da1c934bc3c750c91b9c8fc5eebb97eed0f1bf7a8bb960a788eeea91e01f6
MD5 a0d408261ee4e69d4767a5874e296d18
BLAKE2b-256 44a4f4d049143fd4d2ec347da267dc67d49b1a00125039d1bd4b18ffe1777163

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 80ff7f3ba4c837ff5f9d6a00a93322367a12921de947cd13c67a4b6a03b00c47
MD5 dc8219de86ae9916a064ce117aa51faf
BLAKE2b-256 0f000d60f6c7c8c91c98fe2ec7f01b31cbab8c5c5b342205f14732f67386045e

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c63e96fc762a4a0eaa1938031ff3e4dfe33cd87fecdf11b9369ecfee104eda5
MD5 45f691122859ed9a2790ae144b7ab5c4
BLAKE2b-256 55f4fce7feb30b87cbe0999f35c6f2a2b7219d2e2e2b5fe99cabbbe6899e088a

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11a6816c1c9829b904dfcc2dbb51574ad5d285e66067752826bae4435194cb42
MD5 c020aeff8f18e5518be8b794c77c0880
BLAKE2b-256 d9805cc132cfbc07b1499d2c317756fbd00d2d782605f0be55d80fbaf79e5f7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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.0a3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for falcon-4.1.0a3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b3e792c6b5cb3bff1d49e063fd1623d69f4ea6a83be892ec6358b91298d7064
MD5 58126d1bf95580dad786c3f20695e140
BLAKE2b-256 93cab194228be9c79608aa9b5c4dfba652ade0ff1e6424db2f577b2b9cbc9e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a3-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