Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-falcon-doc-4.0.1-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python-falcon-doc Distribution: openSUSE Tumbleweed
Version: 4.0.1 Vendor: openSUSE
Release: 1.1 Build date: Sat Nov 2 07:33:44 2024
Group: Unspecified Build host: reproducible
Size: 13269692 Source RPM: python-falcon-4.0.1-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: http://falconframework.org
Summary: Documentation files for python-falcon
HTML documentation including API documentation and changelog for python-falcon.

Provides

Requires

License

Apache-2.0

Changelog

* 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.
* Thu Dec 09 2021 pgajdos@suse.com
  - do not require pytest-runner for build, not required
* Tue Nov 23 2021 Ben Greiner <code@bnavigator.de>
  - 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 <mcepl@suse.com>
  - Don't create %%{python_sitelib}/examples directory, that' just
    evil.
* Wed Nov 17 2021 Andreas Schneider <asn@cryptomilk.org>
  - 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.

Files

/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/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/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/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/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/index.rst.txt
/usr/share/doc/packages/python-falcon-doc/html/_sources/community
/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/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/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/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/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/bootstrap.css
/usr/share/doc/packages/python-falcon-doc/html/_static/styles/bootstrap.css.map
/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/6.6.0
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/LICENSE.txt
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/css
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/css/all.min.css
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/js
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/js/all.min.js
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/js/all.min.js.LICENSE.txt
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.ttf
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.woff2
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.ttf
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.woff2
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.ttf
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.woff2
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.ttf
/usr/share/doc/packages/python-falcon-doc/html/_static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.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/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/index.html
/usr/share/doc/packages/python-falcon-doc/html/community
/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/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/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/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, Tue Nov 12 01:04:35 2024