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

Uploaded Python 3

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

Uploaded CPython 3.14Windows x86-64

falcon-4.1.0a2-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.0a2-cp314-cp314-musllinux_1_2_aarch64.whl (816.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

falcon-4.1.0a2-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.0a2-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.0a2-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.0a2-cp314-cp314-macosx_11_0_arm64.whl (403.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

falcon-4.1.0a2-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.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (814.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

falcon-4.1.0a2-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.0a2-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.0a2-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.0a2-cp313-cp313-macosx_11_0_arm64.whl (402.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

falcon-4.1.0a2-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.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (831.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

falcon-4.1.0a2-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.0a2-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.0a2-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.0a2-cp312-cp312-macosx_11_0_arm64.whl (404.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

falcon-4.1.0a2-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.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (824.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

falcon-4.1.0a2-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.0a2-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.0a2-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.0a2-cp311-cp311-macosx_11_0_arm64.whl (406.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

falcon-4.1.0a2-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.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (796.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

falcon-4.1.0a2-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.0a2-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.0a2-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.0a2-cp310-cp310-macosx_11_0_arm64.whl (405.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

falcon-4.1.0a2-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.0a2.tar.gz.

File metadata

  • Download URL: falcon-4.1.0a2.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.0a2.tar.gz
Algorithm Hash digest
SHA256 1f472b6c986314e8ed6621da531e44c5468b1f0fc0c17a1e7ce53216d5fbf18b
MD5 3a5c13082707ac67ad7341cb0efabb12
BLAKE2b-256 42448767a3aaaaa2594445dfa0301b7cabb25af80e7f06950613e5479bee9511

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 db06ac9cae355b2b6fc7df9bf41552f94d5d5c2f5d847c9fafdc8841500226ef
MD5 e7a430b164c0ef95f1927a936e3889c8
BLAKE2b-256 8e0475b5ed620c159947cb1680294e0d9d88ef6b0016b116b2804484d41d5c02

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43cbb940e852770c6227d22b72b76660efbf61ddaf5a509b3e7258ca44e7ca3a
MD5 fd590d1a769fed9fc44f0bef2a7c561a
BLAKE2b-256 952b7011ab28c4d5c29f99d38b233a1d204c25689b49155e42dfcaa9b02f6c0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91286eea5b80ad96b385794359c31b366847838740f398c683bd6e76d58b481b
MD5 cdfbf9e7b02d50942e2475a244dbac33
BLAKE2b-256 8f8e3e2294c091eb997f7293136dddd8cdfdb2ad332b1a615885f1081fbc4e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917cbaa8ca5bdf6c4562d7fa5719395f94c236be00c7300e1e58be5431a98401
MD5 d1aa3ff7b5c948450828bd52f947d11f
BLAKE2b-256 156b91c83eb25d25ffacc579b0ad36f20504caeef13187f5fef6174e6db392ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a2-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.0a2-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.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 948f70a865f7637bbd895d14de633bd7be19650dc47975de670a8d5f95f88be9
MD5 4dc1cc63d635256faf01a0e4a40306ab
BLAKE2b-256 1cc4fb2c56341755ade9d0b3e2e6f4ab913b287822852bd38054d23f21dda6d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 009eba6d2d68d79797ea87de10e215a590a04d74807a7cb743f3b3dc5ac3f374
MD5 f5f61e83abf8ecadc61256e4026a21a9
BLAKE2b-256 e8caf764cdce34cfd52bc235cb2fd8f77001f497e453a4f2f7f06fe73fb0d6db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36f52ed51edd1bc0ada0902b7a920e19567d6f32aca63470862ad34880573dba
MD5 0a680079f6e10f6f6c8caf3968d411c9
BLAKE2b-256 811effcbebff14eef6d1d039b76ce6a01cd0e564d5fb8f1c8da6e23fc78155f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1164b0612af4524173ee3e111872b7fd77e1d699c292e49547faec0c94b2326b
MD5 ce82fcb0dec11c4c46edf5429cb36aa6
BLAKE2b-256 0407a991cfd8fecccaae5881dad872c7f5b504d2a93d3a097eec4595a441ef8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9b35cb1b8d139b456aa95af6db2012e6cc2683a0d1ea43361c615c7ca00cb16b
MD5 093775b87efc7683756a543419c3d937
BLAKE2b-256 d46fe60d0a1c5cfba443ec07b241621a747b9b76d8d7cbb8343b0e20b288df71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c69167edff8f6e1256e9a79e3f0067dbff6395fb6f36accb44d436b9ef6f3d72
MD5 c681b8f6a7387315c8add670aa385792
BLAKE2b-256 489b76daab51c1372798f7b57c67fe5cb10bbb64fdb8d54b9358bd85a4a236ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49bb4cd24264e325f9dad1b9674e1216c6451d7a28ccfa69c92bb4e4e17e53cd
MD5 b9c904dac443503ab9016e2fa99c2d29
BLAKE2b-256 1487b0e221427b97fa1ffab927740fdbdc07245fec86c506257719df3d48c3df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db7a8e5dff0475cebe69ec05ecb050253f9e4c5210825b843c9b4a5dbb2a90ff
MD5 97c63d8af2a32e659b301a21b93e03f9
BLAKE2b-256 1ed7b16e6f45b65d5cba4ed59aa1bb458802bd6c0c2a1302ab15afe94f9a0b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a2-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.0a2-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.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cff5e1e1d9510ce7dc6bbf4019134893ba6f29f01ca23463411ef83201b6a71
MD5 8884508c23c2defb5d59564ea0e8e8f9
BLAKE2b-256 75bd5c1ee1b5207523f47037f71a899edfd7ca73972739cb91873aacd21eaa9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de571af9a8f83774241635c247f479062263882c2f0724c0dcb813530f7294f7
MD5 ec2780894f6ab41bd138122edea3c16d
BLAKE2b-256 d89fb2cf6d446dd5d853c35adefe5325ce695763e189fb7348c95b33c17d5b1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 202a8712be86a560d89c13610719bc52d273ba3da09c4b0520b654a5e65bcdb1
MD5 70a72dd3b00dc5f285f48f954adb6e71
BLAKE2b-256 82602c7a571f26e433066e5c955151d43af4661aab57034bf673535022ca1cd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cce186c8d0a354058b46ab3bf7348f42f297134b8ee4ffb128b57ecf6868070
MD5 a42cb183247abce1719de5ffee131b61
BLAKE2b-256 bab59f6798ccfe1c0c0f74a3313a2e59a47881da0c09f595cf1cce4d250557ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83a70b07d69f51491fe5684c736a1b2a4a5893ca65fc9053d2cb03f20fb02cef
MD5 d82064513b826e69189356a44d305407
BLAKE2b-256 abeff15900ae5a8dfc5c27e416eba77fb152e1fb46fd3bd4708003a7d518b6a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dae0662fdff190aee6b86974e21de419a68978ce0790996537567cb9675bb1b1
MD5 6ce289a9b1075e5715a04c838ca88c20
BLAKE2b-256 987e968d661f8c61932433f41c38c7e958375b97765e6ded18387e1fe06931a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3d22bdbfc49d9cbc261bf8b5a499eab558df1fc06660273734a66587ded8e1a
MD5 d3d0137fd9812ef0f5098be12926fa87
BLAKE2b-256 fff48c86a9e06b34c9d1bd1b596943098e0ab6243fdd1cb8292930135fdf6acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46c091467ed24ee912b4b76772fc6cd1f435c730849bf8c16ef165cd965e0fdb
MD5 a74cd7a04772cf20ea2b03b98c266311
BLAKE2b-256 7f7312456089590b06ab22678b89346c7d835bf537842e72fd1caaeb6138fb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a2-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.0a2-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.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e11e62fb0cbaa4f09d4326cdc3e5c6d409a09c4ab3b5ad5916229e8efc3d519
MD5 457902fd9508ba5f01d711a6f015f5a7
BLAKE2b-256 1e3c79fa8f7115908efb7beb2e1566f8fa35f860ff6f6b3c48d72f6d6e6d3118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4bbe7b1a4085ee8dc1af55c130685d13ccf9ae5088f7f384d9999b09c91f5c43
MD5 833a23e018b27f44021f79a507ad0130
BLAKE2b-256 2e41d1f07bb571cd08c6ea4d22347d6bc24ad495005d54a39ca92d6efb22bf00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4e48557a5b09c1ed39970626e15cf9af3cf0cc595b749c65630aa0682050844
MD5 fe4a3ad8e0cce71eedd96fec4bccd429
BLAKE2b-256 19f46d684c92e10581b652b3005c4fe6ee81097e5f03fe0e2b81c9e1f1391087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e2918dff91e484f149111a7a2d2f9da073e44a3f874e7faabba1116fc21fb38
MD5 a1fba188bf845edc91d96476578ac415
BLAKE2b-256 666400fcfda760ea555bac8ad6490552c797b4b5adde1ac650e08a53fed3c303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 633b46952ca9b28f56d0243db2597b602cf90c675bb99734fc24f74212d7d3c7
MD5 10faf91eb73f5a298e5c09539c4a3c96
BLAKE2b-256 d66474ba0ef2f315646ceb988a233507418c3c7d0de86e4c6456a654f8273160

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f259c98ae4db21ff3c2561c80952cacb6c86d9382ae382272f8ccba269defe9
MD5 93e83aab5c2ff851d08325bef11f9b8e
BLAKE2b-256 afc4bac6fbac55863263f9d215c33a7cb9a4eef220aa16125e886737de797787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8071b2d543d4371ee872021a65da8481070b11f82d3510107fd2b91ac439858
MD5 65d3d19016f61b6f60682e3be4b2af65
BLAKE2b-256 0b01b2d75f631adaa18adc8cec50ef6c86cf303723699e381c9ab5ef8fee2375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d651fcdd6921dae273ee871bcbff0bf82732e96f8dbb56ce78c647cea53aa04c
MD5 ec7c109834ca633faec1dc0ffb175009
BLAKE2b-256 52af8e1718d8933f0355d4a7c34f8a35d18bf5012fb604c83f734fdd8085f0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a2-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.0a2-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.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04f95e90c925e774be022d35d77852e44b292fc7a79e13f264462be57447fc93
MD5 aedacef53ba6e488cd742d6f7a9f1818
BLAKE2b-256 b0851005a50ef3531be1a02022161f45712642a42b69ebf6c48a98c1daa08bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fc51c4d610f4beb6d06e7cdb31863a4b3c61d081aa49e4e71cfd0753e35aebc7
MD5 26442811bda3e8e6c81f6b98f55db535
BLAKE2b-256 e165013fdbc74b2ec48024e7de35ed8be529521a6ab7483aeb66391cf64aaf4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0fdabe9247ea61409631cda93e910257383d19343c269952fed4ca0e9119806
MD5 afad3950b71ab3d97f2023960441df8e
BLAKE2b-256 7ded0fed8d8fc6c9aacb7f54b2bbb97b3721a138452bfc0027a01fe0e85d54c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43cbb85bf808bd4db0507f52494cb442c4f3207b4fcb87c2269f7fba0a6d0b9f
MD5 14c291fc27d8be60794cd4639f7d120a
BLAKE2b-256 fb6ece696c878b82335f6af6f961f38e2d1aa9bb18da98ec1c6e45c415f50614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b11874e09b2a91696b68b2f62a8d2d9c296d903dfdc93b286d1f49682feeffd7
MD5 700fd3eec702c0cbba8035d1092e61da
BLAKE2b-256 55c5bab6c66cb1195039d1d7fe6ec50a98974c856b2885be037b05c7c388d4a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: falcon-4.1.0a2-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.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d4ac4fb2c7465c0b98d4205411c6a11e01eadb9760d812fb7551f4d1b50b9d9
MD5 efba0dcbc905e7b9f5cd15a67897d70d
BLAKE2b-256 67a90bb9b1271d14bf5ee576668e970dfd59a1abfd68a466b137a4ee8c3ff1fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc2b1f6d4faeb2d5477d39e50d8aeb629ba84599fbd41c5d44c5ff43f04a3e10
MD5 9f1379c620fc1597c6c5068fbe64ff7b
BLAKE2b-256 fbcdfa8f9072b61c09c51f1759990cd5f0577b290e61d8f662bbcaf80c20bae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48221582d63fc5aae846424e4ad754b49d3b5f68f4f5f7c8d008c71b55170e4c
MD5 ed750c2863ab3b8093fde22e7cb630df
BLAKE2b-256 8ff5b8a708d57dd736db35406b90fd17bd022c03e75ee27bbc05b9100ed5fe3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for falcon-4.1.0a2-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.0a2-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.0a2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0c96fafe264b930dfaf3cea4f470d1ea8ec3416183c20888135528c3eff1704
MD5 5533dafbc5c17944c2361313332d868b
BLAKE2b-256 8efa2b987c1a21461747e2a8f4ee9e27d4cafe9aa576910dd1bf83a479a1cc7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3d6d4a0a0bb96a9f9f02397caa0dc07fb22ff243544e042bd6ea9f8702fb431d
MD5 2b49ffdeaf4511bcebe4fe9a1ddaf260
BLAKE2b-256 feb4cc65e6b6767f780931ae3ad5e77e7403473bc043106d1c9993cc66e1097e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ca2dc76c14d0b7e1f390254865ff1b54091ae6ab200305465b702369f819143
MD5 6db103a4340374edae8f92c562eb855d
BLAKE2b-256 5e4d599712c5c898216f02fed51f7c4589bae22825efded16f7db187edf86c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fea7892fdae6d147380113ec9b77bfaa0b78304f8b1f72c1a1f12c47a826bba8
MD5 0d5f119d40949c4743241bb2399984ec
BLAKE2b-256 42ca3ec6d160e31caf1e385ff1cae8c2219e7f10a2c5c97d41e9387a12a118ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for falcon-4.1.0a2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e2d105a489eb00353b820e3d7b934356e5fd246e4340c97e56b835294a080a8
MD5 19cb748e3ddfc722ade61d27f8db67ba
BLAKE2b-256 fdbddd224a026ef5d1d2aff1ff1992afb9b73bd32264fd58c1ef33586a169347

See more details on using hashes here.

Provenance

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