| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python-falcon-doc | Distribution: openSUSE Tumbleweed |
| Version: 4.1.0 | Vendor: openSUSE |
| Release: 1.1 | Build date: Tue Oct 28 10:03:20 2025 |
| Group: Unspecified | Build host: reproducible |
| Size: 15839507 | Source RPM: python-falcon-4.1.0-1.1.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://falconframework.org | |
| Summary: Documentation files for python-falcon | |
HTML documentation including API documentation and changelog for python-falcon.
Apache-2.0
* Tue Oct 28 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 4.1.0
* CPython 3.14 is now fully supported. (#2413)
* Although the Falcon 4.x series is only guaranteed to support Python 3.10+,
this release still supports 3.8 & 3.9 at runtime using the pure Python wheel.
* Falcon 4.2 is expected to drop the end-of-life Python 3.8 completely (but
runtime support will continue for 3.9 on a best effort basis).
* StaticRoute now renders Etag headers. It also checks If-None-Match in requests
and returns HTTP 304 response if appropriate. (#2243)
* StaticRoute now sets the Last-Modified header when serving static files. The
improved implementation also checks the value of the If-Modified-Since header,
and renders an HTTP 304 response when the requested file has not been modified. (#2244)
* Similar to create_environ(), the create_scope() testing helper now preserves the
raw URI path, and propagates it to the created ASGI connection scope as the
raw_path byte string (according to the ASGI specification). (#2262)
* Two new media_type constants, falcon.MEDIA_CSV and falcon.MEDIA_PARQUET, were
added in order to provide better support for Python data analysis applications
out of the box. (#2335)
* Support for allowing cross-origin private network access was added to the built-in
CORSMiddleware. The new feature is off by default, and can be enabled by passing
the keyword argument allow_private_network=True to CORSMiddleware during
initialization. (#2381)
* The falcon.secure_filename() utility function can now ensure that the length of the
sanitized filename does not exceed the requested limit (passed via the max_length
argument). In addition, a new option, max_secure_filename_length, was added to
MultipartParseOptions in order to automatically populate this argument when
referencing a body part’s secure_filename. (#2420)
* The unset_cookie() method now accepts a same_site parameter (with underscore) for
consistency with set_cookie(). The previous samesite parameter (without underscore)
is now deprecated (referencing it will emit a deprecation warning). (#2453)
* A new method, __rich__, has been added to falcon.testing.Result for facilitating
a rich-text representation when used together with the popular rich library.
* The cythonization process was revised in the light of the performance improvements
in newer CPython versions (especially 3.12+), and the compilation is now largely
confined to hand-crafted C/Cython code. As a result, the framework should run even
faster on modern CPython. (#2470)
* JSONHandler can now detect a non-standard (not a subclass of ValueError) deserialization
error type for a custom loads function.
(Normally, json.loads() and third party alternatives do raise a subclass of ValueError
on invalid input data, however, this is not the case for, e.g., the popular msgspec
library at the time of writing.) (#2476)
* Previously, Falcon’s WebSocket implementation was not documented to route the request
to any sink. However, in the case of a missing route, a matching sink was actually
invoked, passing ws in place of the incompatible resp.
This mismatch has been addressed by introducing a ws keyword argument (similar to
ASGI error handlers) for sink functions meant to accept WebSocket connections.
For backwards-compatibility, when ws is absent from the sink’s signature, the WebSocket
object is still passed in place of the incompatible resp. This behavior will change in
Falcon 5.0: when draining a WebSocket connection, resp will always be set to None. (#2414)
* The readability of the Contributing docs was improved by properly rendering GitHub
Markdown-flavored checkboxes. (#2318)
* The falcon.testing.httpnow compatibility alias is now considered deprecated, and will
be removed in Falcon 5.0. Use the falcon.http_now() function instead. (#2389)
- Drop websockets.patch, merged upstream
* Tue Aug 19 2025 Markéta Machová <mmachova@suse.com>
- Convert to libalternatives on SLE-16-based and newer systems
* Tue Jul 08 2025 Markéta Machová <mmachova@suse.com>
- Convert to libalternatives
* Tue Mar 25 2025 Markéta Machová <mmachova@suse.com>
- Add websockets.patch to fix test failure
* Thu Jan 09 2025 Daniel Garcia <daniel.garcia@suse.com>
- Build doc package just for tumbleweed to remove
pydata-sphinx-theme requirement
* Tue Nov 12 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- 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 <steven.kowalik@suse.com>
- 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 <steven.kowalik@suse.com>
- 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 <daniel.garcia@suse.com>
- Ignore "tests/asgi" for python 3.9, some ws tests stalls with this
python version
* Tue Feb 06 2024 Ben Greiner <code@bnavigator.de>
- 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 <code@bnavigator.de>
- 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á <mmachova@suse.com>
- remove unneeded build dependency python-ujson
* Tue Jan 02 2024 Jiri Srain <jsrain@suse.com>
- removed unneeded build dependency on python3-pygments-style-railscasts
* Sun Jun 11 2023 ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
* Mon Jan 16 2023 Daniel Garcia <daniel.garcia@suse.com>
- 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.
/usr/share/doc/packages/python-falcon-doc /usr/share/doc/packages/python-falcon-doc/examples /usr/share/doc/packages/python-falcon-doc/examples/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/app.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/asgi.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/cache.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/config.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/images.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/asgilook/store.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/tests /usr/share/doc/packages/python-falcon-doc/examples/asgilook/tests/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/tests/conftest.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/tests/test_images.py /usr/share/doc/packages/python-falcon-doc/examples/asgilook/tests/test_thumbnails.py /usr/share/doc/packages/python-falcon-doc/examples/look /usr/share/doc/packages/python-falcon-doc/examples/look/look /usr/share/doc/packages/python-falcon-doc/examples/look/look/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/look/look/app.py /usr/share/doc/packages/python-falcon-doc/examples/look/look/images.py /usr/share/doc/packages/python-falcon-doc/examples/look/tests /usr/share/doc/packages/python-falcon-doc/examples/look/tests/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/look/tests/conftest.py /usr/share/doc/packages/python-falcon-doc/examples/look/tests/test_app.py /usr/share/doc/packages/python-falcon-doc/examples/look/tests/test_integration.py /usr/share/doc/packages/python-falcon-doc/examples/quote.py /usr/share/doc/packages/python-falcon-doc/examples/recipes /usr/share/doc/packages/python-falcon-doc/examples/recipes/header_name_case_app.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/header_name_case_mw.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/msgspec_json_handler.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/msgspec_main.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/msgspec_media_validation.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/msgspec_msgpack_handler.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/multipart_mixed_intro.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/multipart_mixed_main.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/output_csv_stream_asgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/output_csv_stream_wsgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/output_csv_text_asgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/output_csv_text_wsgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/plain_text_main.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/pretty_json_intro.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/pretty_json_main.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/raw_url_path_asgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/raw_url_path_wsgi.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/request_id_context.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/request_id_log.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/request_id_middleware.py /usr/share/doc/packages/python-falcon-doc/examples/recipes/request_id_structlog.py /usr/share/doc/packages/python-falcon-doc/examples/things.py /usr/share/doc/packages/python-falcon-doc/examples/things_advanced.py /usr/share/doc/packages/python-falcon-doc/examples/things_advanced_asgi.py /usr/share/doc/packages/python-falcon-doc/examples/things_asgi.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/tests /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/tests/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/tests/conftest.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/tests/test_asgi_http.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/tests/test_asgi_ws.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/ws_tutorial /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/ws_tutorial/__init__.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/ws_tutorial/app.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/ws_tutorial/client.py /usr/share/doc/packages/python-falcon-doc/examples/ws_tutorial/ws_tutorial/reports_client.py /usr/share/doc/packages/python-falcon-doc/html /usr/share/doc/packages/python-falcon-doc/html/_modules /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/app.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/app_helpers.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/app.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/multipart.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/request.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/response.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/stream.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/structures.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/asgi/ws.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/errors.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/forwarded.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/hooks.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/http_error.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/http_status.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/inspect.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/base.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/handlers.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/json.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/msgpack.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/multipart.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/urlencoded.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/validators /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/media/validators/jsonschema.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/middleware.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/redirects.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/request.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/response.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/routing /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/routing/compiled.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/routing/converters.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/routing/static.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/routing/util.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/stream.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing/client.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing/helpers.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing/resource.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing/srmock.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/testing/test_case.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/typing.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/deprecation.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/mediatypes.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/misc.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/structures.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/sync.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/time.html /usr/share/doc/packages/python-falcon-doc/html/_modules/falcon/util/uri.html /usr/share/doc/packages/python-falcon-doc/html/_modules/index.html /usr/share/doc/packages/python-falcon-doc/html/_sources /usr/share/doc/packages/python-falcon-doc/html/_sources/api /usr/share/doc/packages/python-falcon-doc/html/_sources/api/api.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/app.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/cookies.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/cors.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/errors.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/hooks.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/inspect.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/media.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/middleware.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/multipart.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/redirects.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/request_and_response.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/request_and_response_asgi.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/request_and_response_wsgi.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/routing.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/status.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/testing.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/typing.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/util.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/api/websocket.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/0.2.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/0.3.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.0.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.1.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.2.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.3.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.4.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/1.4.1.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/2.0.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.0.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.0.1.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.1.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.1.1.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.1.2.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/3.1.3.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/4.0.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/4.0.1.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/4.0.2.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/4.1.0.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/changes/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community /usr/share/doc/packages/python-falcon-doc/html/_sources/community/coc.md.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community/contributing.md.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community/help.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community/packaging.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/community/releases.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/deploy /usr/share/doc/packages/python-falcon-doc/html/_sources/deploy/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/deploy/intro.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/deploy/nginx-uwsgi.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user /usr/share/doc/packages/python-falcon-doc/html/_sources/user/faq.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/install.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/intro.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/quickstart.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/header-name-case.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/index.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/msgspec-integration.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/multipart-mixed.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/output-csv.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/plain-text-handler.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/pretty-json.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/raw-url-path.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/recipes/request-id.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/tutorial-asgi.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/tutorial-websockets.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sources/user/tutorial.rst.txt /usr/share/doc/packages/python-falcon-doc/html/_sphinx_design_static /usr/share/doc/packages/python-falcon-doc/html/_sphinx_design_static/design-tabs.js /usr/share/doc/packages/python-falcon-doc/html/_sphinx_design_static/sphinx-design.min.css /usr/share/doc/packages/python-falcon-doc/html/_static /usr/share/doc/packages/python-falcon-doc/html/_static/basic.css /usr/share/doc/packages/python-falcon-doc/html/_static/check-solid.svg /usr/share/doc/packages/python-falcon-doc/html/_static/clipboard.min.js /usr/share/doc/packages/python-falcon-doc/html/_static/copy-button.svg /usr/share/doc/packages/python-falcon-doc/html/_static/copybutton.css /usr/share/doc/packages/python-falcon-doc/html/_static/copybutton.js /usr/share/doc/packages/python-falcon-doc/html/_static/copybutton_funcs.js /usr/share/doc/packages/python-falcon-doc/html/_static/custom-icons.js /usr/share/doc/packages/python-falcon-doc/html/_static/custom.css /usr/share/doc/packages/python-falcon-doc/html/_static/design-tabs.js /usr/share/doc/packages/python-falcon-doc/html/_static/doctools.js /usr/share/doc/packages/python-falcon-doc/html/_static/documentation_options.js /usr/share/doc/packages/python-falcon-doc/html/_static/favicon.ico /usr/share/doc/packages/python-falcon-doc/html/_static/file.png /usr/share/doc/packages/python-falcon-doc/html/_static/img /usr/share/doc/packages/python-falcon-doc/html/_static/img/favicon.ico /usr/share/doc/packages/python-falcon-doc/html/_static/img/logo.svg /usr/share/doc/packages/python-falcon-doc/html/_static/language_data.js /usr/share/doc/packages/python-falcon-doc/html/_static/logo.svg /usr/share/doc/packages/python-falcon-doc/html/_static/minus.png /usr/share/doc/packages/python-falcon-doc/html/_static/plus.png /usr/share/doc/packages/python-falcon-doc/html/_static/pygments.css /usr/share/doc/packages/python-falcon-doc/html/_static/scripts /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/bootstrap.js /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/bootstrap.js.LICENSE.txt /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/bootstrap.js.map /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/fontawesome.js /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/fontawesome.js.LICENSE.txt /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/fontawesome.js.map /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/pydata-sphinx-theme.js /usr/share/doc/packages/python-falcon-doc/html/_static/scripts/pydata-sphinx-theme.js.map /usr/share/doc/packages/python-falcon-doc/html/_static/searchtools.js /usr/share/doc/packages/python-falcon-doc/html/_static/sphinx-design.min.css /usr/share/doc/packages/python-falcon-doc/html/_static/sphinx_highlight.js /usr/share/doc/packages/python-falcon-doc/html/_static/styles /usr/share/doc/packages/python-falcon-doc/html/_static/styles/pydata-sphinx-theme.css /usr/share/doc/packages/python-falcon-doc/html/_static/styles/pydata-sphinx-theme.css.map /usr/share/doc/packages/python-falcon-doc/html/_static/styles/theme.css /usr/share/doc/packages/python-falcon-doc/html/_static/vendor /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-brands-400.ttf /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-brands-400.woff2 /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-regular-400.ttf /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-regular-400.woff2 /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-solid-900.ttf /usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/webfonts/fa-solid-900.woff2 /usr/share/doc/packages/python-falcon-doc/html/_static/webpack-macros.html /usr/share/doc/packages/python-falcon-doc/html/api /usr/share/doc/packages/python-falcon-doc/html/api/api.html /usr/share/doc/packages/python-falcon-doc/html/api/app.html /usr/share/doc/packages/python-falcon-doc/html/api/cookies.html /usr/share/doc/packages/python-falcon-doc/html/api/cors.html /usr/share/doc/packages/python-falcon-doc/html/api/errors.html /usr/share/doc/packages/python-falcon-doc/html/api/hooks.html /usr/share/doc/packages/python-falcon-doc/html/api/index.html /usr/share/doc/packages/python-falcon-doc/html/api/inspect.html /usr/share/doc/packages/python-falcon-doc/html/api/media.html /usr/share/doc/packages/python-falcon-doc/html/api/middleware.html /usr/share/doc/packages/python-falcon-doc/html/api/multipart.html /usr/share/doc/packages/python-falcon-doc/html/api/redirects.html /usr/share/doc/packages/python-falcon-doc/html/api/request_and_response.html /usr/share/doc/packages/python-falcon-doc/html/api/request_and_response_asgi.html /usr/share/doc/packages/python-falcon-doc/html/api/request_and_response_wsgi.html /usr/share/doc/packages/python-falcon-doc/html/api/routing.html /usr/share/doc/packages/python-falcon-doc/html/api/status.html /usr/share/doc/packages/python-falcon-doc/html/api/testing.html /usr/share/doc/packages/python-falcon-doc/html/api/typing.html /usr/share/doc/packages/python-falcon-doc/html/api/util.html /usr/share/doc/packages/python-falcon-doc/html/api/websocket.html /usr/share/doc/packages/python-falcon-doc/html/changes /usr/share/doc/packages/python-falcon-doc/html/changes/0.2.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/0.3.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.0.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.1.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.2.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.3.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.4.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/1.4.1.html /usr/share/doc/packages/python-falcon-doc/html/changes/2.0.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.0.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.0.1.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.1.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.1.1.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.1.2.html /usr/share/doc/packages/python-falcon-doc/html/changes/3.1.3.html /usr/share/doc/packages/python-falcon-doc/html/changes/4.0.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/4.0.1.html /usr/share/doc/packages/python-falcon-doc/html/changes/4.0.2.html /usr/share/doc/packages/python-falcon-doc/html/changes/4.1.0.html /usr/share/doc/packages/python-falcon-doc/html/changes/index.html /usr/share/doc/packages/python-falcon-doc/html/community /usr/share/doc/packages/python-falcon-doc/html/community/coc.html /usr/share/doc/packages/python-falcon-doc/html/community/contributing.html /usr/share/doc/packages/python-falcon-doc/html/community/help.html /usr/share/doc/packages/python-falcon-doc/html/community/index.html /usr/share/doc/packages/python-falcon-doc/html/community/packaging.html /usr/share/doc/packages/python-falcon-doc/html/community/releases.html /usr/share/doc/packages/python-falcon-doc/html/deploy /usr/share/doc/packages/python-falcon-doc/html/deploy/index.html /usr/share/doc/packages/python-falcon-doc/html/deploy/intro.html /usr/share/doc/packages/python-falcon-doc/html/deploy/nginx-uwsgi.html /usr/share/doc/packages/python-falcon-doc/html/genindex.html /usr/share/doc/packages/python-falcon-doc/html/index.html /usr/share/doc/packages/python-falcon-doc/html/objects.inv /usr/share/doc/packages/python-falcon-doc/html/py-modindex.html /usr/share/doc/packages/python-falcon-doc/html/search.html /usr/share/doc/packages/python-falcon-doc/html/searchindex.js /usr/share/doc/packages/python-falcon-doc/html/user /usr/share/doc/packages/python-falcon-doc/html/user/faq.html /usr/share/doc/packages/python-falcon-doc/html/user/index.html /usr/share/doc/packages/python-falcon-doc/html/user/install.html /usr/share/doc/packages/python-falcon-doc/html/user/intro.html /usr/share/doc/packages/python-falcon-doc/html/user/quickstart.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes /usr/share/doc/packages/python-falcon-doc/html/user/recipes/header-name-case.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/index.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/msgspec-integration.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/multipart-mixed.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/output-csv.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/plain-text-handler.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/pretty-json.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/raw-url-path.html /usr/share/doc/packages/python-falcon-doc/html/user/recipes/request-id.html /usr/share/doc/packages/python-falcon-doc/html/user/tutorial-asgi.html /usr/share/doc/packages/python-falcon-doc/html/user/tutorial-websockets.html /usr/share/doc/packages/python-falcon-doc/html/user/tutorial.html
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Nov 1 22:25:32 2025