Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python312-falcon | Distribution: openSUSE:Factory:zSystems |
Version: 4.0.2 | Vendor: openSUSE |
Release: 1.1 | Build date: Tue Nov 12 11:49:26 2024 |
Group: Unspecified | Build host: reproducible |
Size: 2672636 | Source RPM: python-falcon-4.0.2-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: http://falconframework.org | |
Summary: A web framework for building APIs and app backends |
Falcon is a Python framework for building cloud APIs. It encourages the REST architectural style, and tries to do as little as possible while remaining effective.
Apache-2.0
* Tue Nov 12 2024 John Paul Adrian Glaubitz <[email protected]> - Update to 4.0.2 * Running Mypy on code that uses parts of falcon.testing would previously lead to errors like: "Name "falcon.testing.TestClient" is not defined" This has been fixed by explicitly exporting the names that are imported into the falcon.testing namespace. (#2387) * The printable PDF version of our documentation was enabled on Read the Docs. (#2365) * Sat Nov 02 2024 Steve Kowalik <[email protected]> - Update to 4.0.1: * Overview + CPython 3.11 - 3.13 is now fully supported. + End-of-life Python 3.5, 3.6 & 3.7 are no longer supported. + End-of-life Python 3.8 is no longer actively supported. + Type checking support was introduced. + Falcon is no longer vendoring the python-mimeparse library. + A number of undocumented internal helpers were renamed to start with an underscore. + A number of previously deprecated methods, attributes and classes have now been removed. + We decided, on the other hand, to keep the deprecated falcon.API alias until Falcon 5.0. + The deprecated api_helpers was removed in favor of the app_helpers module. + The function falcon.http_date_to_dt now validates HTTP dates to have the correct timezone set. It now also returns timezone-aware datetime.datetime objects. + setup.cfg was dropped in favor of consolidating all static project configuration in pyproject.toml * New & Improved + A new path converter falcon.routing.PathConverter capable of matching segments that include / was added. + Similar to the existing falcon.routing.IntConverter, a new falcon.routing.FloatConverter has been added, allowing to convert path segments to float. + A new method falcon.Request.get_header_as_int was implemented. + A new property, falcon.Request.headers_lower, was added to provide a unified, self-documenting way to get a copy of all request headers with lowercase names to facilitate case-insensitive matching. + In Python 3.13, the cgi module is removed entirely from the stdlib, including its parse_header() method. Falcon addresses the issue by shipping an own implementation. + The falcon.CORSMiddleware now properly handles the missing Allow header case, by denying the preflight CORS request. + Added falcon.testing.Result.content_type and falcon.testing.StreamedResult.content_type as a utility accessor for the Content-Type header. + A new flag, falcon.ResponseOptions.xml_error_serialization, has been added to falcon.ResponseOptions that can be used to disable automatic XML serialization of falcon.HTTPError when using the default error serializer (and the client prefers it). * Fixed + The web servers used for tests are now run through sys.executable. * Dropped patches, no longer required: - python-falcon-sphinx-pygments-style.patch - support-new-uvicorn.patch * Tue Apr 02 2024 Steve Kowalik <[email protected]> - Remove skipping asgi for Python 3.9. - Add patch support-new-uvicorn.patch: * Support new uvicorn, which now propagates its exit code. * Tue Mar 19 2024 Daniel Garcia <[email protected]> - Ignore "tests/asgi" for python 3.9, some ws tests stalls with this python version * Tue Feb 06 2024 Ben Greiner <[email protected]> - Update source file - Replace deprecated %patch0 - Move to PEP517 - Remove old TW python36 flavor directives - Install examples into doc package and properly fdup * Sun Feb 04 2024 Ben Greiner <[email protected]> - Update to 3.1.3 * This is a minor bugfix release that only pins the pytest-asyncio test dependency in order to prevent an incompatible version from interfering with the build workflow. * This release is otherwise identical to Falcon 3.1.2. - Update to 3.1.2 [#]# Summary * This is a minor point release fixing a couple of high impact bugs, as well as publishing binary wheels for the recently released CPython 3.12. [#]# Changes to Supported Platforms * Falcon is now supported (including binary wheels) on CPython 3.12. A couple of remaining stdlib deprecations from 3.11 and 3.12 will be addressed in Falcon 4.0. * As with the previous release, Python 3.5 & 3.6 remain deprecated and will no longer be supported in Falcon 4.0. * EOL Python 3.7 will no longer be actively supported in 4.0, but the framework should still continue to install from source. We may remove the support for 3.7 altogether later in the 4.x series if we are faced with incompatible ecosystem changes in typing, Cython, etc. [#]# Fixed * Some essential files were unintentionally omitted from the source distribution archive, rendering it unsuitable to run the test suite off. This has been fixed, and the sdist tarball should now be usable as a base for packaging Falcon in OS distributions. (#2051) * WebSocket implementation has been fixed to properly handle HTTPError and HTTPStatus exceptions raised by custom error handlers. The WebSocket connection is now correctly closed with an appropriate code instead of bubbling up an unhandled error to the application server. (#2146) * Falcon’s TestClient mimics the behavior of real WSGI servers (and the WSGI spec) by presenting the PATH_INFO CGI variable already in the percent-decoded form. However, the client also used to indiscriminately set the non-standard RAW_URI CGI variable to /, which made writing tests for apps decoding raw URL path cumbersome. This has been fixed, and the raw path of a simulated request is now preserved in RAW_URI. (#2157) * Thu Jan 18 2024 Markéta Machová <[email protected]> - remove unneeded build dependency python-ujson * Tue Jan 02 2024 Jiri Srain <[email protected]> - removed unneeded build dependency on python3-pygments-style-railscasts * Sun Jun 11 2023 ecsos <[email protected]> - Add %{?sle15_python_module_pythons} * Mon Jan 16 2023 Daniel Garcia <[email protected]> - Update to 3.1.1: Falcon 3.1.1 is a minor point release addressing a couple of high impact bugs, and enabling the framework on the recently released CPython 3.11. - 3.1.0 This release contains several refinements to request validation and error handling, along with some tweaks to response handling for static and downloadable files. Due to popular demand, TestClient and ASGIConductor now expose convenience shorthand aliases for the simulate_* methods, i.e., simulate_get() is now also available as get(), etc. Some important bugs were also fixed to ensure applications properly clean up response streams and do not hang when reading request bodies that are streamed using chunked transfer encoding. This release also adds support for CPython 3.10 and deprecates CPython 3.6. * Thu Dec 09 2021 [email protected] - do not require pytest-runner for build, not required * Tue Nov 23 2021 Ben Greiner <[email protected]> - Don't restrict to primary python3 flavor. Other packages depend on this. - Update requirements * The only runtime deps have been removed in version 2.0 * Test requirements from examples are obsolete - Implement some python packaging best practises: * Check for version in dist metadata * uninstall alternative only takes master (there was even a typo) * Mon Nov 22 2021 Matej Cepl <[email protected]> - Don't create %%{python_sitelib}/examples directory, that' just evil. * Wed Nov 17 2021 Andreas Schneider <[email protected]> - Update to version 3.0.1 This is a minor point release to take care of a couple of bugs that we did not catch for 3.0.0. - The api_helpers module was re-added, since it was renamed to app_helpers (and effectively removed) without announcing a corresponding breaking change. This module is now considered deprecated, and will be removed in a future Falcon version. - ASGI HTTP headers were treated as UTF-8 encoded, not taking the incompatibility with WSGI and porting of WSGI applications into consideration. This was fixed, and ASGI headers are now decoded and encoded as ISO-8859-1.
/etc/alternatives/falcon-bench /etc/alternatives/falcon-inspect-app /etc/alternatives/falcon-print-routes /usr/bin/falcon-bench /usr/bin/falcon-bench-3.12 /usr/bin/falcon-inspect-app /usr/bin/falcon-inspect-app-3.12 /usr/bin/falcon-print-routes /usr/bin/falcon-print-routes-3.12 /usr/lib/python3.12/site-packages/falcon /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/INSTALLER /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/LICENSE /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/METADATA /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/RECORD /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/REQUESTED /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/WHEEL /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/entry_points.txt /usr/lib/python3.12/site-packages/falcon-4.0.2.dist-info/top_level.txt /usr/lib/python3.12/site-packages/falcon/__init__.py /usr/lib/python3.12/site-packages/falcon/__pycache__ /usr/lib/python3.12/site-packages/falcon/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/_typing.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/_typing.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/app.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/app.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/app_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/app_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/asgi_spec.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/asgi_spec.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/constants.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/constants.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/errors.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/errors.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/forwarded.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/forwarded.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/hooks.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/hooks.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/http_error.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/http_error.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/http_status.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/http_status.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/inspect.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/inspect.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/middleware.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/middleware.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/redirects.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/redirects.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/request.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/request.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/request_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/request_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/responders.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/responders.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/response.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/response.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/response_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/response_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/status_codes.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/status_codes.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/stream.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/stream.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/typing.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/typing.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/uri.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/uri.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/version.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/__pycache__/version.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/_typing.py /usr/lib/python3.12/site-packages/falcon/app.py /usr/lib/python3.12/site-packages/falcon/app_helpers.py /usr/lib/python3.12/site-packages/falcon/asgi /usr/lib/python3.12/site-packages/falcon/asgi/__init__.py /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__ /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/_asgi_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/_asgi_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/_request_helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/_request_helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/app.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/app.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/multipart.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/multipart.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/reader.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/reader.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/request.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/request.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/response.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/response.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/stream.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/stream.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/structures.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/structures.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/ws.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/asgi/__pycache__/ws.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/asgi/_asgi_helpers.py /usr/lib/python3.12/site-packages/falcon/asgi/_request_helpers.py /usr/lib/python3.12/site-packages/falcon/asgi/app.py /usr/lib/python3.12/site-packages/falcon/asgi/multipart.py /usr/lib/python3.12/site-packages/falcon/asgi/reader.py /usr/lib/python3.12/site-packages/falcon/asgi/request.py /usr/lib/python3.12/site-packages/falcon/asgi/response.py /usr/lib/python3.12/site-packages/falcon/asgi/stream.py /usr/lib/python3.12/site-packages/falcon/asgi/structures.py /usr/lib/python3.12/site-packages/falcon/asgi/ws.py /usr/lib/python3.12/site-packages/falcon/asgi_spec.py /usr/lib/python3.12/site-packages/falcon/bench /usr/lib/python3.12/site-packages/falcon/bench/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/bench.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/bench.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/create.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/__pycache__/create.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/bench.py /usr/lib/python3.12/site-packages/falcon/bench/create.py /usr/lib/python3.12/site-packages/falcon/bench/dj /usr/lib/python3.12/site-packages/falcon/bench/dj/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/dj/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/dj/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/__pycache__/manage.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/__pycache__/manage.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/settings.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/settings.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/urls.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/urls.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/wsgi.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/__pycache__/wsgi.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/settings.py /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/urls.py /usr/lib/python3.12/site-packages/falcon/bench/dj/dj/wsgi.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/admin.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/admin.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/apps.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/apps.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/models.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/models.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/tests.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/tests.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/views.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/__pycache__/views.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/admin.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/apps.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/migrations /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/migrations/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/migrations/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/migrations/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/migrations/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/models.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/tests.py /usr/lib/python3.12/site-packages/falcon/bench/dj/hello/views.py /usr/lib/python3.12/site-packages/falcon/bench/dj/manage.py /usr/lib/python3.12/site-packages/falcon/bench/nuts /usr/lib/python3.12/site-packages/falcon/bench/nuts/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/config.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/config.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/setup.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/__pycache__/setup.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/config.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__pycache__/app.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/__pycache__/app.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/app.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__pycache__/root.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/__pycache__/root.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/controllers/root.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/model /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/model/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/model/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/model/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/model/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/config.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/config.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/test_functional.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/test_functional.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/test_units.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/__pycache__/test_units.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/config.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/test_functional.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/nuts/tests/test_units.py /usr/lib/python3.12/site-packages/falcon/bench/nuts/setup.py /usr/lib/python3.12/site-packages/falcon/bench/queues /usr/lib/python3.12/site-packages/falcon/bench/queues/__init__.py /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__ /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/api.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/api.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/claims.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/claims.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/messages.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/messages.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/queues.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/queues.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/stats.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/__pycache__/stats.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/bench/queues/api.py /usr/lib/python3.12/site-packages/falcon/bench/queues/claims.py /usr/lib/python3.12/site-packages/falcon/bench/queues/messages.py /usr/lib/python3.12/site-packages/falcon/bench/queues/queues.py /usr/lib/python3.12/site-packages/falcon/bench/queues/stats.py /usr/lib/python3.12/site-packages/falcon/cmd /usr/lib/python3.12/site-packages/falcon/cmd/__init__.py /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__ /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/bench.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/bench.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/inspect_app.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/cmd/__pycache__/inspect_app.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/cmd/bench.py /usr/lib/python3.12/site-packages/falcon/cmd/inspect_app.py /usr/lib/python3.12/site-packages/falcon/constants.py /usr/lib/python3.12/site-packages/falcon/cyutil /usr/lib/python3.12/site-packages/falcon/cyutil/__init__.py /usr/lib/python3.12/site-packages/falcon/cyutil/__pycache__ /usr/lib/python3.12/site-packages/falcon/cyutil/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/cyutil/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/cyutil/misc.pyx /usr/lib/python3.12/site-packages/falcon/cyutil/reader.pyx /usr/lib/python3.12/site-packages/falcon/cyutil/uri.pyx /usr/lib/python3.12/site-packages/falcon/errors.py /usr/lib/python3.12/site-packages/falcon/forwarded.py /usr/lib/python3.12/site-packages/falcon/hooks.py /usr/lib/python3.12/site-packages/falcon/http_error.py /usr/lib/python3.12/site-packages/falcon/http_status.py /usr/lib/python3.12/site-packages/falcon/inspect.py /usr/lib/python3.12/site-packages/falcon/media /usr/lib/python3.12/site-packages/falcon/media/__init__.py /usr/lib/python3.12/site-packages/falcon/media/__pycache__ /usr/lib/python3.12/site-packages/falcon/media/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/base.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/base.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/handlers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/handlers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/json.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/json.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/msgpack.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/msgpack.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/multipart.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/multipart.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/urlencoded.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/__pycache__/urlencoded.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/base.py /usr/lib/python3.12/site-packages/falcon/media/handlers.py /usr/lib/python3.12/site-packages/falcon/media/json.py /usr/lib/python3.12/site-packages/falcon/media/msgpack.py /usr/lib/python3.12/site-packages/falcon/media/multipart.py /usr/lib/python3.12/site-packages/falcon/media/urlencoded.py /usr/lib/python3.12/site-packages/falcon/media/validators /usr/lib/python3.12/site-packages/falcon/media/validators/__init__.py /usr/lib/python3.12/site-packages/falcon/media/validators/__pycache__ /usr/lib/python3.12/site-packages/falcon/media/validators/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/validators/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/validators/__pycache__/jsonschema.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/media/validators/__pycache__/jsonschema.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/media/validators/jsonschema.py /usr/lib/python3.12/site-packages/falcon/middleware.py /usr/lib/python3.12/site-packages/falcon/py.typed /usr/lib/python3.12/site-packages/falcon/redirects.py /usr/lib/python3.12/site-packages/falcon/request.py /usr/lib/python3.12/site-packages/falcon/request_helpers.py /usr/lib/python3.12/site-packages/falcon/responders.py /usr/lib/python3.12/site-packages/falcon/response.py /usr/lib/python3.12/site-packages/falcon/response_helpers.py /usr/lib/python3.12/site-packages/falcon/routing /usr/lib/python3.12/site-packages/falcon/routing/__init__.py /usr/lib/python3.12/site-packages/falcon/routing/__pycache__ /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/compiled.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/compiled.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/converters.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/converters.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/static.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/static.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/util.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/routing/__pycache__/util.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/routing/compiled.py /usr/lib/python3.12/site-packages/falcon/routing/converters.py /usr/lib/python3.12/site-packages/falcon/routing/static.py /usr/lib/python3.12/site-packages/falcon/routing/util.py /usr/lib/python3.12/site-packages/falcon/status_codes.py /usr/lib/python3.12/site-packages/falcon/stream.py /usr/lib/python3.12/site-packages/falcon/testing /usr/lib/python3.12/site-packages/falcon/testing/__init__.py /usr/lib/python3.12/site-packages/falcon/testing/__pycache__ /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/client.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/client.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/helpers.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/helpers.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/resource.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/resource.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/srmock.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/srmock.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/test_case.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/testing/__pycache__/test_case.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/testing/client.py /usr/lib/python3.12/site-packages/falcon/testing/helpers.py /usr/lib/python3.12/site-packages/falcon/testing/resource.py /usr/lib/python3.12/site-packages/falcon/testing/srmock.py /usr/lib/python3.12/site-packages/falcon/testing/test_case.py /usr/lib/python3.12/site-packages/falcon/typing.py /usr/lib/python3.12/site-packages/falcon/uri.py /usr/lib/python3.12/site-packages/falcon/util /usr/lib/python3.12/site-packages/falcon/util/__init__.py /usr/lib/python3.12/site-packages/falcon/util/__pycache__ /usr/lib/python3.12/site-packages/falcon/util/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/deprecation.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/deprecation.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/mediatypes.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/mediatypes.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/misc.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/misc.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/reader.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/reader.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/structures.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/structures.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/sync.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/sync.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/time.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/time.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/uri.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/falcon/util/__pycache__/uri.cpython-312.pyc /usr/lib/python3.12/site-packages/falcon/util/deprecation.py /usr/lib/python3.12/site-packages/falcon/util/mediatypes.py /usr/lib/python3.12/site-packages/falcon/util/misc.py /usr/lib/python3.12/site-packages/falcon/util/reader.py /usr/lib/python3.12/site-packages/falcon/util/structures.py /usr/lib/python3.12/site-packages/falcon/util/sync.py /usr/lib/python3.12/site-packages/falcon/util/time.py /usr/lib/python3.12/site-packages/falcon/util/uri.py /usr/lib/python3.12/site-packages/falcon/version.py /usr/share/doc/packages/python312-falcon /usr/share/doc/packages/python312-falcon/README.rst /usr/share/licenses/python312-falcon /usr/share/licenses/python312-falcon/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Dec 3 23:45:09 2024