@scrypted/arlo 0.11.24 → 0.11.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/plugin.zip +0 -0
- package/package.json +9 -1
- package/venv/bin/Activate.ps1 +247 -0
- package/venv/bin/activate +69 -0
- package/venv/bin/activate.csh +26 -0
- package/venv/bin/activate.fish +69 -0
- package/venv/bin/normalizer +8 -0
- package/venv/bin/pip +8 -0
- package/venv/bin/pip3 +8 -0
- package/venv/bin/pip3.10 +8 -0
- package/venv/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py +132 -0
- package/venv/lib/python3.10/site-packages/_distutils_hack/override.py +1 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/__init__.py +13 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/_staggered.py +202 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/impl.py +210 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/types.py +12 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs/utils.py +97 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs-2.4.6.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs-2.4.6.dist-info/LICENSE +279 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs-2.4.6.dist-info/METADATA +123 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs-2.4.6.dist-info/RECORD +16 -0
- package/venv/lib/python3.10/site-packages/aiohappyeyeballs-2.4.6.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/aiohttp/.hash/_cparser.pxd.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/.hash/_find_header.pxd.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/.hash/_http_parser.pyx.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/.hash/_http_writer.pyx.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/.hash/hdrs.py.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/__init__.py +264 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_cparser.pxd +158 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_find_header.pxd +2 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_headers.pxi +83 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_http_parser.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_http_parser.pyx +837 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_http_writer.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_http_writer.pyx +162 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/.hash/mask.pxd.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/.hash/mask.pyx.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/.hash/reader_c.pxd.hash +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/__init__.py +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/helpers.py +147 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/mask.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/mask.pxd +3 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/mask.pyx +48 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/models.py +84 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/reader.py +31 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/reader_c.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/reader_c.pxd +102 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/reader_c.py +468 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/reader_py.py +468 -0
- package/venv/lib/python3.10/site-packages/aiohttp/_websocket/writer.py +177 -0
- package/venv/lib/python3.10/site-packages/aiohttp/abc.py +253 -0
- package/venv/lib/python3.10/site-packages/aiohttp/base_protocol.py +100 -0
- package/venv/lib/python3.10/site-packages/aiohttp/client.py +1550 -0
- package/venv/lib/python3.10/site-packages/aiohttp/client_exceptions.py +421 -0
- package/venv/lib/python3.10/site-packages/aiohttp/client_proto.py +307 -0
- package/venv/lib/python3.10/site-packages/aiohttp/client_reqrep.py +1315 -0
- package/venv/lib/python3.10/site-packages/aiohttp/client_ws.py +426 -0
- package/venv/lib/python3.10/site-packages/aiohttp/compression_utils.py +173 -0
- package/venv/lib/python3.10/site-packages/aiohttp/connector.py +1652 -0
- package/venv/lib/python3.10/site-packages/aiohttp/cookiejar.py +495 -0
- package/venv/lib/python3.10/site-packages/aiohttp/formdata.py +182 -0
- package/venv/lib/python3.10/site-packages/aiohttp/hdrs.py +121 -0
- package/venv/lib/python3.10/site-packages/aiohttp/helpers.py +944 -0
- package/venv/lib/python3.10/site-packages/aiohttp/http.py +72 -0
- package/venv/lib/python3.10/site-packages/aiohttp/http_exceptions.py +112 -0
- package/venv/lib/python3.10/site-packages/aiohttp/http_parser.py +1046 -0
- package/venv/lib/python3.10/site-packages/aiohttp/http_websocket.py +36 -0
- package/venv/lib/python3.10/site-packages/aiohttp/http_writer.py +249 -0
- package/venv/lib/python3.10/site-packages/aiohttp/log.py +8 -0
- package/venv/lib/python3.10/site-packages/aiohttp/multipart.py +1071 -0
- package/venv/lib/python3.10/site-packages/aiohttp/payload.py +519 -0
- package/venv/lib/python3.10/site-packages/aiohttp/payload_streamer.py +78 -0
- package/venv/lib/python3.10/site-packages/aiohttp/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp/pytest_plugin.py +436 -0
- package/venv/lib/python3.10/site-packages/aiohttp/resolver.py +187 -0
- package/venv/lib/python3.10/site-packages/aiohttp/streams.py +727 -0
- package/venv/lib/python3.10/site-packages/aiohttp/tcp_helpers.py +37 -0
- package/venv/lib/python3.10/site-packages/aiohttp/test_utils.py +770 -0
- package/venv/lib/python3.10/site-packages/aiohttp/tracing.py +470 -0
- package/venv/lib/python3.10/site-packages/aiohttp/typedefs.py +69 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web.py +605 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_app.py +620 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_exceptions.py +452 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_fileresponse.py +418 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_log.py +216 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_middlewares.py +121 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_protocol.py +750 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_request.py +916 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_response.py +840 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_routedef.py +214 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_runner.py +399 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_server.py +84 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_urldispatcher.py +1301 -0
- package/venv/lib/python3.10/site-packages/aiohttp/web_ws.py +622 -0
- package/venv/lib/python3.10/site-packages/aiohttp/worker.py +252 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/LICENSE.txt +13 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/METADATA +250 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/RECORD +132 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/aiohttp-3.11.12.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/aiosignal/__init__.py +36 -0
- package/venv/lib/python3.10/site-packages/aiosignal/__init__.pyi +12 -0
- package/venv/lib/python3.10/site-packages/aiosignal/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/LICENSE +201 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/METADATA +123 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/RECORD +10 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/aiosignal-1.3.2.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/async_timeout/__init__.py +276 -0
- package/venv/lib/python3.10/site-packages/async_timeout/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/LICENSE +13 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/METADATA +163 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/RECORD +11 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/async_timeout-5.0.1.dist-info/zip-safe +1 -0
- package/venv/lib/python3.10/site-packages/attr/__init__.py +104 -0
- package/venv/lib/python3.10/site-packages/attr/__init__.pyi +389 -0
- package/venv/lib/python3.10/site-packages/attr/_cmp.py +160 -0
- package/venv/lib/python3.10/site-packages/attr/_cmp.pyi +13 -0
- package/venv/lib/python3.10/site-packages/attr/_compat.py +94 -0
- package/venv/lib/python3.10/site-packages/attr/_config.py +31 -0
- package/venv/lib/python3.10/site-packages/attr/_funcs.py +468 -0
- package/venv/lib/python3.10/site-packages/attr/_make.py +3055 -0
- package/venv/lib/python3.10/site-packages/attr/_next_gen.py +623 -0
- package/venv/lib/python3.10/site-packages/attr/_typing_compat.pyi +15 -0
- package/venv/lib/python3.10/site-packages/attr/_version_info.py +86 -0
- package/venv/lib/python3.10/site-packages/attr/_version_info.pyi +9 -0
- package/venv/lib/python3.10/site-packages/attr/converters.py +162 -0
- package/venv/lib/python3.10/site-packages/attr/converters.pyi +19 -0
- package/venv/lib/python3.10/site-packages/attr/exceptions.py +95 -0
- package/venv/lib/python3.10/site-packages/attr/exceptions.pyi +17 -0
- package/venv/lib/python3.10/site-packages/attr/filters.py +72 -0
- package/venv/lib/python3.10/site-packages/attr/filters.pyi +6 -0
- package/venv/lib/python3.10/site-packages/attr/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/attr/setters.py +79 -0
- package/venv/lib/python3.10/site-packages/attr/setters.pyi +20 -0
- package/venv/lib/python3.10/site-packages/attr/validators.py +710 -0
- package/venv/lib/python3.10/site-packages/attr/validators.pyi +86 -0
- package/venv/lib/python3.10/site-packages/attrs/__init__.py +69 -0
- package/venv/lib/python3.10/site-packages/attrs/__init__.pyi +263 -0
- package/venv/lib/python3.10/site-packages/attrs/converters.py +3 -0
- package/venv/lib/python3.10/site-packages/attrs/exceptions.py +3 -0
- package/venv/lib/python3.10/site-packages/attrs/filters.py +3 -0
- package/venv/lib/python3.10/site-packages/attrs/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/attrs/setters.py +3 -0
- package/venv/lib/python3.10/site-packages/attrs/validators.py +3 -0
- package/venv/lib/python3.10/site-packages/attrs-25.1.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/attrs-25.1.0.dist-info/METADATA +232 -0
- package/venv/lib/python3.10/site-packages/attrs-25.1.0.dist-info/RECORD +55 -0
- package/venv/lib/python3.10/site-packages/attrs-25.1.0.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/attrs-25.1.0.dist-info/licenses/LICENSE +21 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/METADATA +123 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/RECORD +90 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/licenses/AUTHORS +49 -0
- package/venv/lib/python3.10/site-packages/beautifulsoup4-4.13.3.dist-info/licenses/LICENSE +31 -0
- package/venv/lib/python3.10/site-packages/bs4/__init__.py +1170 -0
- package/venv/lib/python3.10/site-packages/bs4/_deprecation.py +80 -0
- package/venv/lib/python3.10/site-packages/bs4/_typing.py +196 -0
- package/venv/lib/python3.10/site-packages/bs4/_warnings.py +98 -0
- package/venv/lib/python3.10/site-packages/bs4/builder/__init__.py +848 -0
- package/venv/lib/python3.10/site-packages/bs4/builder/_html5lib.py +594 -0
- package/venv/lib/python3.10/site-packages/bs4/builder/_htmlparser.py +474 -0
- package/venv/lib/python3.10/site-packages/bs4/builder/_lxml.py +490 -0
- package/venv/lib/python3.10/site-packages/bs4/css.py +338 -0
- package/venv/lib/python3.10/site-packages/bs4/dammit.py +1408 -0
- package/venv/lib/python3.10/site-packages/bs4/diagnose.py +268 -0
- package/venv/lib/python3.10/site-packages/bs4/element.py +2886 -0
- package/venv/lib/python3.10/site-packages/bs4/exceptions.py +28 -0
- package/venv/lib/python3.10/site-packages/bs4/filter.py +755 -0
- package/venv/lib/python3.10/site-packages/bs4/formatter.py +276 -0
- package/venv/lib/python3.10/site-packages/bs4/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/__init__.py +1305 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-4670634698080256.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-4818336571064320.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-4999465949331456.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5000587759190016.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5167584867909632.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5270998950477824.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5375146639360000.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5492400320282624.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5703933063462912.testcase +2 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5843991618256896.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-5984173902397440.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-6124268085182464.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-6241471367348224.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-6306874195312640.testcase +1 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-6450958476902400.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/clusterfuzz-testcase-minimized-bs4_fuzzer-6600557255327744.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/crash-0d306a50c8ed8bcd0785b67000fcd5dea1d33f08.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/fuzz/crash-ffbdfa8a2b26f13537b68d3794b0478a4090ee4a.testcase +0 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_builder.py +28 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_builder_registry.py +139 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_css.py +536 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_dammit.py +433 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_element.py +138 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_filter.py +674 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_formatter.py +170 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_fuzz.py +181 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_html5lib.py +264 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_htmlparser.py +161 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_lxml.py +196 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_navigablestring.py +144 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_pageelement.py +437 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_soup.py +602 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_tag.py +241 -0
- package/venv/lib/python3.10/site-packages/bs4/tests/test_tree.py +1452 -0
- package/venv/lib/python3.10/site-packages/cachetools/__init__.py +859 -0
- package/venv/lib/python3.10/site-packages/cachetools/func.py +121 -0
- package/venv/lib/python3.10/site-packages/cachetools/keys.py +62 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/LICENSE +20 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/METADATA +151 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/RECORD +13 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/cachetools-5.5.1.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/certifi/__init__.py +4 -0
- package/venv/lib/python3.10/site-packages/certifi/__main__.py +12 -0
- package/venv/lib/python3.10/site-packages/certifi/cacert.pem +4897 -0
- package/venv/lib/python3.10/site-packages/certifi/core.py +114 -0
- package/venv/lib/python3.10/site-packages/certifi/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/LICENSE +20 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/METADATA +77 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/RECORD +14 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/certifi-2025.1.31.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/cffi/__init__.py +14 -0
- package/venv/lib/python3.10/site-packages/cffi/_cffi_errors.h +149 -0
- package/venv/lib/python3.10/site-packages/cffi/_cffi_include.h +389 -0
- package/venv/lib/python3.10/site-packages/cffi/_embedding.h +550 -0
- package/venv/lib/python3.10/site-packages/cffi/_imp_emulation.py +83 -0
- package/venv/lib/python3.10/site-packages/cffi/_shimmed_dist_utils.py +45 -0
- package/venv/lib/python3.10/site-packages/cffi/api.py +967 -0
- package/venv/lib/python3.10/site-packages/cffi/backend_ctypes.py +1121 -0
- package/venv/lib/python3.10/site-packages/cffi/cffi_opcode.py +187 -0
- package/venv/lib/python3.10/site-packages/cffi/commontypes.py +82 -0
- package/venv/lib/python3.10/site-packages/cffi/cparser.py +1015 -0
- package/venv/lib/python3.10/site-packages/cffi/error.py +31 -0
- package/venv/lib/python3.10/site-packages/cffi/ffiplatform.py +113 -0
- package/venv/lib/python3.10/site-packages/cffi/lock.py +30 -0
- package/venv/lib/python3.10/site-packages/cffi/model.py +618 -0
- package/venv/lib/python3.10/site-packages/cffi/parse_c_type.h +181 -0
- package/venv/lib/python3.10/site-packages/cffi/pkgconfig.py +121 -0
- package/venv/lib/python3.10/site-packages/cffi/recompiler.py +1598 -0
- package/venv/lib/python3.10/site-packages/cffi/setuptools_ext.py +216 -0
- package/venv/lib/python3.10/site-packages/cffi/vengine_cpy.py +1084 -0
- package/venv/lib/python3.10/site-packages/cffi/vengine_gen.py +679 -0
- package/venv/lib/python3.10/site-packages/cffi/verifier.py +306 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/LICENSE +26 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/METADATA +40 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/RECORD +48 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/entry_points.txt +2 -0
- package/venv/lib/python3.10/site-packages/cffi-1.17.1.dist-info/top_level.txt +2 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/__init__.py +48 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/__main__.py +6 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/api.py +668 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/cd.py +395 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py +8 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py +321 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/constant.py +1998 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/legacy.py +66 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/md.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/md.py +630 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/md__mypyc.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/models.py +360 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/utils.py +408 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer/version.py +8 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/LICENSE +21 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/METADATA +721 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/RECORD +35 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/entry_points.txt +2 -0
- package/venv/lib/python3.10/site-packages/charset_normalizer-3.4.1.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/__init__.py +407 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/2captcha.py +258 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/9kw.py +214 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/__init__.py +47 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/anticaptcha.py +199 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/capmonster.py +199 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/capsolver.py +188 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/captcha/deathbycaptcha.py +276 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/cloudflare.py +490 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/exceptions.py +111 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/help.py +72 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/__init__.py +56 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/chakracore.py +103 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/encapsulated.py +62 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/js2py.py +44 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/jsunfuck.py +97 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/native.py +233 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/nodejs.py +49 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/interpreters/v8.py +33 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/user_agent/__init__.py +124 -0
- package/venv/lib/python3.10/site-packages/cloudscraper/user_agent/browsers.json +7913 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/LICENSE +22 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/METADATA +674 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/RECORD +48 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/cloudscraper-1.2.71.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/__init__.py +37 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/__version__.py +8 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/_asyncio_selector.py +344 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/_wrapper.abi3.so +0 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/aio.py +257 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/const.py +581 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/curl.py +548 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/__init__.py +146 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/cookies.py +355 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/errors.py +7 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/exceptions.py +219 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/headers.py +348 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/impersonate.py +360 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/models.py +292 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/session.py +1021 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/utils.py +663 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/requests/websockets.py +711 -0
- package/venv/lib/python3.10/site-packages/curl_cffi/utils.py +13 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/LICENSE +21 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/METADATA +333 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/RECORD +43 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/curl_cffi-0.9.0.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/distutils-precedence.pth +1 -0
- package/venv/lib/python3.10/site-packages/frozenlist/__init__.py +98 -0
- package/venv/lib/python3.10/site-packages/frozenlist/__init__.pyi +47 -0
- package/venv/lib/python3.10/site-packages/frozenlist/_frozenlist.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/frozenlist/_frozenlist.pyx +123 -0
- package/venv/lib/python3.10/site-packages/frozenlist/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/LICENSE +201 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/METADATA +477 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/RECORD +12 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/WHEEL +8 -0
- package/venv/lib/python3.10/site-packages/frozenlist-1.5.0.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/idna/__init__.py +45 -0
- package/venv/lib/python3.10/site-packages/idna/codec.py +122 -0
- package/venv/lib/python3.10/site-packages/idna/compat.py +15 -0
- package/venv/lib/python3.10/site-packages/idna/core.py +437 -0
- package/venv/lib/python3.10/site-packages/idna/idnadata.py +4243 -0
- package/venv/lib/python3.10/site-packages/idna/intranges.py +57 -0
- package/venv/lib/python3.10/site-packages/idna/package_data.py +1 -0
- package/venv/lib/python3.10/site-packages/idna/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/idna/uts46data.py +8681 -0
- package/venv/lib/python3.10/site-packages/idna-3.10.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/idna-3.10.dist-info/LICENSE.md +31 -0
- package/venv/lib/python3.10/site-packages/idna-3.10.dist-info/METADATA +250 -0
- package/venv/lib/python3.10/site-packages/idna-3.10.dist-info/RECORD +22 -0
- package/venv/lib/python3.10/site-packages/idna-3.10.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/multidict/__init__.py +48 -0
- package/venv/lib/python3.10/site-packages/multidict/__init__.pyi +152 -0
- package/venv/lib/python3.10/site-packages/multidict/_abc.py +48 -0
- package/venv/lib/python3.10/site-packages/multidict/_compat.py +14 -0
- package/venv/lib/python3.10/site-packages/multidict/_multidict.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/multidict/_multidict_base.py +152 -0
- package/venv/lib/python3.10/site-packages/multidict/_multidict_py.py +527 -0
- package/venv/lib/python3.10/site-packages/multidict/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/LICENSE +13 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/METADATA +140 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/RECORD +19 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/multidict-6.1.0.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/paho/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/__init__.py +5 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/client.py +5004 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/enums.py +113 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/matcher.py +78 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/packettypes.py +43 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/properties.py +421 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/publish.py +306 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/reasoncodes.py +223 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/subscribe.py +281 -0
- package/venv/lib/python3.10/site-packages/paho/mqtt/subscribeoptions.py +113 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/METADATA +635 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/RECORD +29 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/paho_mqtt-2.1.0.dist-info/licenses/LICENSE.txt +3 -0
- package/venv/lib/python3.10/site-packages/pip/__init__.py +13 -0
- package/venv/lib/python3.10/site-packages/pip/__main__.py +31 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/__init__.py +19 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/build_env.py +296 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cache.py +264 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +4 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +171 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +220 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +1018 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +27 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/main.py +70 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +87 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +292 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +321 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +506 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +157 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +127 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +223 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/check.py +53 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +96 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +266 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +202 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/download.py +140 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +97 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py +59 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/help.py +41 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/index.py +139 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/install.py +771 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/list.py +363 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/search.py +174 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/show.py +178 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +105 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +178 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/configuration.py +366 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +36 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +20 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +127 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +31 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/exceptions.py +658 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/index/collector.py +648 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +1004 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/index/sources.py +224 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +520 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +169 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +219 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/locations/base.py +52 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/main.py +12 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +62 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +546 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +256 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +34 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +220 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +80 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/index.py +28 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/link.py +288 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py +31 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +129 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +51 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +110 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +89 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/auth.py +323 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/cache.py +69 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/download.py +185 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/session.py +454 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/utils.py +96 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +60 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/check.py +149 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +254 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +120 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +738 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +642 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/pyproject.py +168 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +94 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +490 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +536 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +858 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +189 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py +124 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py +20 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +467 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +547 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +739 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +248 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +68 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +166 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +292 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +189 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py +63 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +11 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +120 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +42 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +75 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +36 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +27 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +182 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +27 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +88 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +144 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +343 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +653 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/models.py +39 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +57 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +195 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +260 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +246 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +258 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py +62 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +136 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +101 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +526 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +324 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
- package/venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +377 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/__init__.py +111 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +18 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +61 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +137 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +150 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +37 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +32 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +415 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +111 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +139 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +186 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +33 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +3 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +4362 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +76 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +83 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +233 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +107 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +145 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +1 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +84 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +88 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py +36 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +76 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +101 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +246 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +92 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +195 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +387 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +46 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +283 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +46 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +292 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +233 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4650 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +4398 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4383 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4650 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +5718 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +4383 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +4383 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +145 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +91 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +572 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +310 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +145 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +83 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +92 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +286 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +9 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py +102 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +258 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +80 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +152 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +169 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +1116 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +1345 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +509 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +1300 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +393 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +152 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +1058 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +429 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +1932 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +739 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +1053 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/distro.py +1386 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py +35 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py +289 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py +918 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py +1735 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py +5 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py +40 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py +67 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py +159 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py +2946 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +29 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py +12 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +73 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +207 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +916 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py +2795 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py +409 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +30 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +50 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +88 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py +417 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +239 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +343 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +392 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +154 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py +252 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +131 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +215 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +69 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +44 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +112 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +13 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +397 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +2137 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +8512 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py +1 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +193 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +1012 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py +26 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +25 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +304 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +146 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +802 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +487 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +136 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +504 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py +127 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py +207 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py +115 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py +51 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py +44 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py +171 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py +17 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py +363 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py +92 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py +375 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +3296 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +23 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +331 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +46 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +119 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +156 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +64 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +181 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +4 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +182 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py +189 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py +93 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py +79 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py +47 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py +45 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +83 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py +663 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +71 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +937 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +94 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +153 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +84 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py +168 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py +983 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py +641 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py +179 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py +511 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +879 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +341 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +580 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +1188 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +69 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +155 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +197 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +93 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +212 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +308 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py +328 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py +207 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py +424 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py +5789 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +593 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py +267 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py +1069 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py +760 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py +332 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py +235 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +154 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +42 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +538 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +159 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +305 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +18 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +77 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +549 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +133 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +132 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +34 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +973 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +16 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +771 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +123 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +105 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +1060 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +482 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +165 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +172 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +280 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +210 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py +34 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +160 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +848 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +72 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +55 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +312 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +228 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +94 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +483 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +147 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +581 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2211 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +175 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +183 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py +96 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +89 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +147 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +140 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +92 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +444 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +365 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py +113 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +268 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +244 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +149 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +250 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +903 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +1036 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +216 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +376 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py +10 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +151 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +115 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +720 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +134 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py +132 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +785 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +735 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +968 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py +51 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +55 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +1282 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +112 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +678 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +249 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/six.py +998 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +517 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +92 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +68 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +46 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +41 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +58 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py +43 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +213 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +96 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +191 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +6 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +703 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +83 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py +2296 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +85 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +569 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +1113 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +511 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +922 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +1077 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +539 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +170 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +821 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +143 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +161 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +268 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +432 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +153 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt +25 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py +231 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py +153 -0
- package/venv/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
- package/venv/lib/python3.10/site-packages/pip/py.typed +4 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt +20 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA +92 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD +1037 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt +5 -0
- package/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/__init__.py +3303 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +67 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +828 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +484 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +5742 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +73 -0
- package/venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +6 -0
- package/venv/lib/python3.10/site-packages/propcache/__init__.py +32 -0
- package/venv/lib/python3.10/site-packages/propcache/_helpers.py +39 -0
- package/venv/lib/python3.10/site-packages/propcache/_helpers_c.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/propcache/_helpers_c.pyx +84 -0
- package/venv/lib/python3.10/site-packages/propcache/_helpers_py.py +56 -0
- package/venv/lib/python3.10/site-packages/propcache/api.py +8 -0
- package/venv/lib/python3.10/site-packages/propcache/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/LICENSE +202 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/METADATA +275 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/NOTICE +13 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/RECORD +18 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/propcache-0.2.1.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/pycparser/__init__.py +93 -0
- package/venv/lib/python3.10/site-packages/pycparser/_ast_gen.py +336 -0
- package/venv/lib/python3.10/site-packages/pycparser/_build_tables.py +40 -0
- package/venv/lib/python3.10/site-packages/pycparser/_c_ast.cfg +195 -0
- package/venv/lib/python3.10/site-packages/pycparser/ast_transforms.py +164 -0
- package/venv/lib/python3.10/site-packages/pycparser/c_ast.py +1125 -0
- package/venv/lib/python3.10/site-packages/pycparser/c_generator.py +502 -0
- package/venv/lib/python3.10/site-packages/pycparser/c_lexer.py +555 -0
- package/venv/lib/python3.10/site-packages/pycparser/c_parser.py +1950 -0
- package/venv/lib/python3.10/site-packages/pycparser/lextab.py +10 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/__init__.py +5 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/cpp.py +905 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/ctokens.py +133 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/lex.py +1099 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/yacc.py +3494 -0
- package/venv/lib/python3.10/site-packages/pycparser/ply/ygen.py +74 -0
- package/venv/lib/python3.10/site-packages/pycparser/plyparser.py +133 -0
- package/venv/lib/python3.10/site-packages/pycparser/yacctab.py +369 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/LICENSE +27 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/METADATA +28 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/RECORD +41 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/pycparser-2.22.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/pyparsing/__init__.py +326 -0
- package/venv/lib/python3.10/site-packages/pyparsing/actions.py +219 -0
- package/venv/lib/python3.10/site-packages/pyparsing/common.py +434 -0
- package/venv/lib/python3.10/site-packages/pyparsing/core.py +6226 -0
- package/venv/lib/python3.10/site-packages/pyparsing/diagram/__init__.py +744 -0
- package/venv/lib/python3.10/site-packages/pyparsing/exceptions.py +314 -0
- package/venv/lib/python3.10/site-packages/pyparsing/helpers.py +1102 -0
- package/venv/lib/python3.10/site-packages/pyparsing/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/pyparsing/results.py +816 -0
- package/venv/lib/python3.10/site-packages/pyparsing/testing.py +362 -0
- package/venv/lib/python3.10/site-packages/pyparsing/unicode.py +356 -0
- package/venv/lib/python3.10/site-packages/pyparsing/util.py +398 -0
- package/venv/lib/python3.10/site-packages/pyparsing-3.2.1.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/pyparsing-3.2.1.dist-info/LICENSE +18 -0
- package/venv/lib/python3.10/site-packages/pyparsing-3.2.1.dist-info/METADATA +124 -0
- package/venv/lib/python3.10/site-packages/pyparsing-3.2.1.dist-info/RECORD +28 -0
- package/venv/lib/python3.10/site-packages/pyparsing-3.2.1.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/requests/__init__.py +184 -0
- package/venv/lib/python3.10/site-packages/requests/__version__.py +14 -0
- package/venv/lib/python3.10/site-packages/requests/_internal_utils.py +50 -0
- package/venv/lib/python3.10/site-packages/requests/adapters.py +719 -0
- package/venv/lib/python3.10/site-packages/requests/api.py +157 -0
- package/venv/lib/python3.10/site-packages/requests/auth.py +314 -0
- package/venv/lib/python3.10/site-packages/requests/certs.py +17 -0
- package/venv/lib/python3.10/site-packages/requests/compat.py +94 -0
- package/venv/lib/python3.10/site-packages/requests/cookies.py +561 -0
- package/venv/lib/python3.10/site-packages/requests/exceptions.py +151 -0
- package/venv/lib/python3.10/site-packages/requests/help.py +134 -0
- package/venv/lib/python3.10/site-packages/requests/hooks.py +33 -0
- package/venv/lib/python3.10/site-packages/requests/models.py +1037 -0
- package/venv/lib/python3.10/site-packages/requests/packages.py +23 -0
- package/venv/lib/python3.10/site-packages/requests/sessions.py +831 -0
- package/venv/lib/python3.10/site-packages/requests/status_codes.py +128 -0
- package/venv/lib/python3.10/site-packages/requests/structures.py +99 -0
- package/venv/lib/python3.10/site-packages/requests/utils.py +1096 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/LICENSE +175 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/METADATA +119 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/RECORD +43 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/requests-2.32.3.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/__init__.py +34 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/_compat.py +302 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/__init__.py +15 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/appengine.py +206 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/fingerprint.py +48 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/host_header_ssl.py +43 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/socket_options.py +129 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/source.py +67 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/ssl.py +66 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/adapters/x509.py +196 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/auth/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +29 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/auth/guess.py +146 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/auth/handler.py +142 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/auth/http_proxy_digest.py +103 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/cookies/forgetful.py +7 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/stream.py +176 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/tee.py +123 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/exceptions.py +25 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/multipart/__init__.py +31 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/multipart/decoder.py +156 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/multipart/encoder.py +655 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/sessions.py +89 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/streaming_iterator.py +116 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/threaded/__init__.py +97 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/threaded/pool.py +211 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/threaded/thread.py +53 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/utils/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/utils/deprecated.py +91 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/utils/dump.py +198 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/utils/formdata.py +108 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt/utils/user_agent.py +143 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/AUTHORS.rst +57 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/LICENSE +13 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/METADATA +521 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/RECORD +75 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/__init__.py +1 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/_scrypted_arlo_go.cpython-310-x86_64-linux-gnu.h +555 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/_scrypted_arlo_go.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/build.py +344 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/go.py +2215 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/scrypted_arlo_go.c +6019 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/scrypted_arlo_go.go +3612 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/scrypted_arlo_go.py +1910 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go/scrypted_arlo_go_go.h +555 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/METADATA +11 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/RECORD +19 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/WHEEL +8 -0
- package/venv/lib/python3.10/site-packages/scrypted_arlo_go-0.7.6.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/setuptools/__init__.py +242 -0
- package/venv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +7 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +24 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +561 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +256 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +393 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +1123 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +403 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +31 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +143 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +123 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +749 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +579 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +377 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +157 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +209 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +755 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +392 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +152 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +148 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +344 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +721 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +79 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +84 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +47 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +217 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +30 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +304 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +494 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +214 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/config.py +130 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/core.py +249 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +425 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py +5 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +92 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +210 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +1257 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +97 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +240 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +457 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +238 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +355 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/log.py +77 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +788 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +643 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +19 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +7 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +106 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +601 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +286 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +325 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/util.py +548 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/version.py +363 -0
- package/venv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +169 -0
- package/venv/lib/python3.10/site-packages/setuptools/_imp.py +82 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +3825 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +67 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +828 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +484 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +504 -0
- package/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +5742 -0
- package/venv/lib/python3.10/site-packages/setuptools/archive_util.py +205 -0
- package/venv/lib/python3.10/site-packages/setuptools/build_meta.py +290 -0
- package/venv/lib/python3.10/site-packages/setuptools/cli-32.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/cli-64.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/cli.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/__init__.py +8 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/alias.py +78 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +456 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +40 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/build_clib.py +101 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/build_ext.py +328 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/build_py.py +242 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/develop.py +193 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/dist_info.py +36 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/easy_install.py +2354 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/egg_info.py +755 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/install.py +132 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +82 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/install_lib.py +148 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +69 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/py36compat.py +134 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/register.py +18 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/rotate.py +64 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/saveopts.py +22 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/sdist.py +196 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/setopt.py +149 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/test.py +252 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/upload.py +17 -0
- package/venv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +202 -0
- package/venv/lib/python3.10/site-packages/setuptools/config.py +751 -0
- package/venv/lib/python3.10/site-packages/setuptools/dep_util.py +25 -0
- package/venv/lib/python3.10/site-packages/setuptools/depends.py +176 -0
- package/venv/lib/python3.10/site-packages/setuptools/dist.py +1156 -0
- package/venv/lib/python3.10/site-packages/setuptools/errors.py +40 -0
- package/venv/lib/python3.10/site-packages/setuptools/extension.py +55 -0
- package/venv/lib/python3.10/site-packages/setuptools/extern/__init__.py +73 -0
- package/venv/lib/python3.10/site-packages/setuptools/glob.py +167 -0
- package/venv/lib/python3.10/site-packages/setuptools/gui-32.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/gui-64.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/gui.exe +0 -0
- package/venv/lib/python3.10/site-packages/setuptools/installer.py +104 -0
- package/venv/lib/python3.10/site-packages/setuptools/launch.py +36 -0
- package/venv/lib/python3.10/site-packages/setuptools/monkey.py +177 -0
- package/venv/lib/python3.10/site-packages/setuptools/msvc.py +1805 -0
- package/venv/lib/python3.10/site-packages/setuptools/namespaces.py +107 -0
- package/venv/lib/python3.10/site-packages/setuptools/package_index.py +1150 -0
- package/venv/lib/python3.10/site-packages/setuptools/py34compat.py +13 -0
- package/venv/lib/python3.10/site-packages/setuptools/sandbox.py +530 -0
- package/venv/lib/python3.10/site-packages/setuptools/script (dev).tmpl +6 -0
- package/venv/lib/python3.10/site-packages/setuptools/script.tmpl +3 -0
- package/venv/lib/python3.10/site-packages/setuptools/unicode_utils.py +42 -0
- package/venv/lib/python3.10/site-packages/setuptools/version.py +6 -0
- package/venv/lib/python3.10/site-packages/setuptools/wheel.py +213 -0
- package/venv/lib/python3.10/site-packages/setuptools/windows_support.py +29 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/LICENSE +19 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/METADATA +125 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/RECORD +298 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL +5 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/entry_points.txt +56 -0
- package/venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt +4 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/LICENSE +18 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/METADATA +43 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/RECORD +8 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/six-1.17.0.dist-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/six.py +1003 -0
- package/venv/lib/python3.10/site-packages/soupsieve/__init__.py +168 -0
- package/venv/lib/python3.10/site-packages/soupsieve/__meta__.py +197 -0
- package/venv/lib/python3.10/site-packages/soupsieve/css_match.py +1582 -0
- package/venv/lib/python3.10/site-packages/soupsieve/css_parser.py +1289 -0
- package/venv/lib/python3.10/site-packages/soupsieve/css_types.py +407 -0
- package/venv/lib/python3.10/site-packages/soupsieve/pretty.py +139 -0
- package/venv/lib/python3.10/site-packages/soupsieve/py.typed +0 -0
- package/venv/lib/python3.10/site-packages/soupsieve/util.py +117 -0
- package/venv/lib/python3.10/site-packages/soupsieve-2.6.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/soupsieve-2.6.dist-info/METADATA +114 -0
- package/venv/lib/python3.10/site-packages/soupsieve-2.6.dist-info/RECORD +20 -0
- package/venv/lib/python3.10/site-packages/soupsieve-2.6.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/soupsieve-2.6.dist-info/licenses/LICENSE.md +21 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/PKG-INFO +98 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/SOURCES.txt +12 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/dependency_links.txt +1 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/installed-files.txt +7 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/requires.txt +2 -0
- package/venv/lib/python3.10/site-packages/sseclient-0.0.22.egg-info/top_level.txt +1 -0
- package/venv/lib/python3.10/site-packages/sseclient.py +165 -0
- package/venv/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/LICENSE +279 -0
- package/venv/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/METADATA +67 -0
- package/venv/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/RECORD +7 -0
- package/venv/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/typing_extensions.py +3641 -0
- package/venv/lib/python3.10/site-packages/urllib3/__init__.py +211 -0
- package/venv/lib/python3.10/site-packages/urllib3/_base_connection.py +165 -0
- package/venv/lib/python3.10/site-packages/urllib3/_collections.py +479 -0
- package/venv/lib/python3.10/site-packages/urllib3/_request_methods.py +278 -0
- package/venv/lib/python3.10/site-packages/urllib3/_version.py +16 -0
- package/venv/lib/python3.10/site-packages/urllib3/connection.py +1044 -0
- package/venv/lib/python3.10/site-packages/urllib3/connectionpool.py +1178 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/__init__.py +0 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__init__.py +16 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/connection.py +255 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/fetch.py +708 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/request.py +22 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/response.py +285 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py +554 -0
- package/venv/lib/python3.10/site-packages/urllib3/contrib/socks.py +228 -0
- package/venv/lib/python3.10/site-packages/urllib3/exceptions.py +327 -0
- package/venv/lib/python3.10/site-packages/urllib3/fields.py +341 -0
- package/venv/lib/python3.10/site-packages/urllib3/filepost.py +89 -0
- package/venv/lib/python3.10/site-packages/urllib3/http2/__init__.py +53 -0
- package/venv/lib/python3.10/site-packages/urllib3/http2/connection.py +356 -0
- package/venv/lib/python3.10/site-packages/urllib3/http2/probe.py +87 -0
- package/venv/lib/python3.10/site-packages/urllib3/poolmanager.py +637 -0
- package/venv/lib/python3.10/site-packages/urllib3/py.typed +2 -0
- package/venv/lib/python3.10/site-packages/urllib3/response.py +1278 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/__init__.py +42 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/connection.py +137 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/proxy.py +43 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/request.py +258 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/response.py +101 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/retry.py +533 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/ssl_.py +504 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/ssl_match_hostname.py +159 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/ssltransport.py +271 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/timeout.py +275 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/url.py +469 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/util.py +42 -0
- package/venv/lib/python3.10/site-packages/urllib3/util/wait.py +124 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/METADATA +154 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/RECORD +80 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/REQUESTED +0 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/WHEEL +4 -0
- package/venv/lib/python3.10/site-packages/urllib3-2.3.0.dist-info/licenses/LICENSE.txt +21 -0
- package/venv/lib/python3.10/site-packages/yarl/__init__.py +14 -0
- package/venv/lib/python3.10/site-packages/yarl/_parse.py +189 -0
- package/venv/lib/python3.10/site-packages/yarl/_path.py +41 -0
- package/venv/lib/python3.10/site-packages/yarl/_query.py +118 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoters.py +32 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoting.py +18 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoting_c.cpython-310-x86_64-linux-gnu.so +0 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoting_c.pyi +16 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoting_c.pyx +423 -0
- package/venv/lib/python3.10/site-packages/yarl/_quoting_py.py +197 -0
- package/venv/lib/python3.10/site-packages/yarl/_url.py +1584 -0
- package/venv/lib/python3.10/site-packages/yarl/py.typed +1 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/INSTALLER +1 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/LICENSE +202 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/METADATA +2279 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/NOTICE +13 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/RECORD +27 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/WHEEL +6 -0
- package/venv/lib/python3.10/site-packages/yarl-1.18.3.dist-info/top_level.txt +1 -0
- package/venv/pyvenv.cfg +3 -0
|
@@ -0,0 +1,2279 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: yarl
|
|
3
|
+
Version: 1.18.3
|
|
4
|
+
Summary: Yet another URL library
|
|
5
|
+
Home-page: https://github.com/aio-libs/yarl
|
|
6
|
+
Author: Andrew Svetlov
|
|
7
|
+
Author-email: andrew.svetlov@gmail.com
|
|
8
|
+
Maintainer: aiohttp team <team@aiohttp.org>
|
|
9
|
+
Maintainer-email: team@aiohttp.org
|
|
10
|
+
License: Apache-2.0
|
|
11
|
+
Project-URL: Chat: Matrix, https://matrix.to/#/#aio-libs:matrix.org
|
|
12
|
+
Project-URL: Chat: Matrix Space, https://matrix.to/#/#aio-libs-space:matrix.org
|
|
13
|
+
Project-URL: CI: GitHub Workflows, https://github.com/aio-libs/yarl/actions?query=branch:master
|
|
14
|
+
Project-URL: Code of Conduct, https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md
|
|
15
|
+
Project-URL: Coverage: codecov, https://codecov.io/github/aio-libs/yarl
|
|
16
|
+
Project-URL: Docs: Changelog, https://yarl.aio-libs.org/en/latest/changes/
|
|
17
|
+
Project-URL: Docs: RTD, https://yarl.aio-libs.org
|
|
18
|
+
Project-URL: GitHub: issues, https://github.com/aio-libs/yarl/issues
|
|
19
|
+
Project-URL: GitHub: repo, https://github.com/aio-libs/yarl
|
|
20
|
+
Keywords: cython,cext,yarl
|
|
21
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
22
|
+
Classifier: Intended Audience :: Developers
|
|
23
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
24
|
+
Classifier: Programming Language :: Cython
|
|
25
|
+
Classifier: Programming Language :: Python
|
|
26
|
+
Classifier: Programming Language :: Python :: 3
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
32
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
33
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
+
Requires-Python: >=3.9
|
|
35
|
+
Description-Content-Type: text/x-rst
|
|
36
|
+
License-File: LICENSE
|
|
37
|
+
License-File: NOTICE
|
|
38
|
+
Requires-Dist: idna>=2.0
|
|
39
|
+
Requires-Dist: multidict>=4.0
|
|
40
|
+
Requires-Dist: propcache>=0.2.0
|
|
41
|
+
|
|
42
|
+
yarl
|
|
43
|
+
====
|
|
44
|
+
|
|
45
|
+
The module provides handy URL class for URL parsing and changing.
|
|
46
|
+
|
|
47
|
+
.. image:: https://github.com/aio-libs/yarl/workflows/CI/badge.svg
|
|
48
|
+
:target: https://github.com/aio-libs/yarl/actions?query=workflow%3ACI
|
|
49
|
+
:align: right
|
|
50
|
+
|
|
51
|
+
.. image:: https://codecov.io/gh/aio-libs/yarl/branch/master/graph/badge.svg
|
|
52
|
+
:target: https://codecov.io/gh/aio-libs/yarl
|
|
53
|
+
|
|
54
|
+
.. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json
|
|
55
|
+
:target: https://codspeed.io/aio-libs/yarl
|
|
56
|
+
|
|
57
|
+
.. image:: https://badge.fury.io/py/yarl.svg
|
|
58
|
+
:target: https://badge.fury.io/py/yarl
|
|
59
|
+
|
|
60
|
+
.. image:: https://readthedocs.org/projects/yarl/badge/?version=latest
|
|
61
|
+
:target: https://yarl.aio-libs.org
|
|
62
|
+
|
|
63
|
+
.. image:: https://img.shields.io/pypi/pyversions/yarl.svg
|
|
64
|
+
:target: https://pypi.python.org/pypi/yarl
|
|
65
|
+
|
|
66
|
+
.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
|
|
67
|
+
:target: https://matrix.to/#/%23aio-libs:matrix.org
|
|
68
|
+
:alt: Matrix Room — #aio-libs:matrix.org
|
|
69
|
+
|
|
70
|
+
.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
|
|
71
|
+
:target: https://matrix.to/#/%23aio-libs-space:matrix.org
|
|
72
|
+
:alt: Matrix Space — #aio-libs-space:matrix.org
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
Introduction
|
|
76
|
+
------------
|
|
77
|
+
|
|
78
|
+
Url is constructed from ``str``:
|
|
79
|
+
|
|
80
|
+
.. code-block:: pycon
|
|
81
|
+
|
|
82
|
+
>>> from yarl import URL
|
|
83
|
+
>>> url = URL('https://www.python.org/~guido?arg=1#frag')
|
|
84
|
+
>>> url
|
|
85
|
+
URL('https://www.python.org/~guido?arg=1#frag')
|
|
86
|
+
|
|
87
|
+
All url parts: *scheme*, *user*, *password*, *host*, *port*, *path*,
|
|
88
|
+
*query* and *fragment* are accessible by properties:
|
|
89
|
+
|
|
90
|
+
.. code-block:: pycon
|
|
91
|
+
|
|
92
|
+
>>> url.scheme
|
|
93
|
+
'https'
|
|
94
|
+
>>> url.host
|
|
95
|
+
'www.python.org'
|
|
96
|
+
>>> url.path
|
|
97
|
+
'/~guido'
|
|
98
|
+
>>> url.query_string
|
|
99
|
+
'arg=1'
|
|
100
|
+
>>> url.query
|
|
101
|
+
<MultiDictProxy('arg': '1')>
|
|
102
|
+
>>> url.fragment
|
|
103
|
+
'frag'
|
|
104
|
+
|
|
105
|
+
All url manipulations produce a new url object:
|
|
106
|
+
|
|
107
|
+
.. code-block:: pycon
|
|
108
|
+
|
|
109
|
+
>>> url = URL('https://www.python.org')
|
|
110
|
+
>>> url / 'foo' / 'bar'
|
|
111
|
+
URL('https://www.python.org/foo/bar')
|
|
112
|
+
>>> url / 'foo' % {'bar': 'baz'}
|
|
113
|
+
URL('https://www.python.org/foo?bar=baz')
|
|
114
|
+
|
|
115
|
+
Strings passed to constructor and modification methods are
|
|
116
|
+
automatically encoded giving canonical representation as result:
|
|
117
|
+
|
|
118
|
+
.. code-block:: pycon
|
|
119
|
+
|
|
120
|
+
>>> url = URL('https://www.python.org/шлях')
|
|
121
|
+
>>> url
|
|
122
|
+
URL('https://www.python.org/%D1%88%D0%BB%D1%8F%D1%85')
|
|
123
|
+
|
|
124
|
+
Regular properties are *percent-decoded*, use ``raw_`` versions for
|
|
125
|
+
getting *encoded* strings:
|
|
126
|
+
|
|
127
|
+
.. code-block:: pycon
|
|
128
|
+
|
|
129
|
+
>>> url.path
|
|
130
|
+
'/шлях'
|
|
131
|
+
|
|
132
|
+
>>> url.raw_path
|
|
133
|
+
'/%D1%88%D0%BB%D1%8F%D1%85'
|
|
134
|
+
|
|
135
|
+
Human readable representation of URL is available as ``.human_repr()``:
|
|
136
|
+
|
|
137
|
+
.. code-block:: pycon
|
|
138
|
+
|
|
139
|
+
>>> url.human_repr()
|
|
140
|
+
'https://www.python.org/шлях'
|
|
141
|
+
|
|
142
|
+
For full documentation please read https://yarl.aio-libs.org.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
Installation
|
|
146
|
+
------------
|
|
147
|
+
|
|
148
|
+
::
|
|
149
|
+
|
|
150
|
+
$ pip install yarl
|
|
151
|
+
|
|
152
|
+
The library is Python 3 only!
|
|
153
|
+
|
|
154
|
+
PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install
|
|
155
|
+
``yarl`` on another operating system where wheels are not provided,
|
|
156
|
+
the the tarball will be used to compile the library from
|
|
157
|
+
the source code. It requires a C compiler and and Python headers installed.
|
|
158
|
+
|
|
159
|
+
To skip the compilation you must explicitly opt-in by using a PEP 517
|
|
160
|
+
configuration setting ``pure-python``, or setting the ``YARL_NO_EXTENSIONS``
|
|
161
|
+
environment variable to a non-empty value, e.g.:
|
|
162
|
+
|
|
163
|
+
.. code-block:: console
|
|
164
|
+
|
|
165
|
+
$ pip install yarl --config-settings=pure-python=false
|
|
166
|
+
|
|
167
|
+
Please note that the pure-Python (uncompiled) version is much slower. However,
|
|
168
|
+
PyPy always uses a pure-Python implementation, and, as such, it is unaffected
|
|
169
|
+
by this variable.
|
|
170
|
+
|
|
171
|
+
Dependencies
|
|
172
|
+
------------
|
|
173
|
+
|
|
174
|
+
YARL requires multidict_ and propcache_ libraries.
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
API documentation
|
|
178
|
+
------------------
|
|
179
|
+
|
|
180
|
+
The documentation is located at https://yarl.aio-libs.org.
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
Why isn't boolean supported by the URL query API?
|
|
184
|
+
-------------------------------------------------
|
|
185
|
+
|
|
186
|
+
There is no standard for boolean representation of boolean values.
|
|
187
|
+
|
|
188
|
+
Some systems prefer ``true``/``false``, others like ``yes``/``no``, ``on``/``off``,
|
|
189
|
+
``Y``/``N``, ``1``/``0``, etc.
|
|
190
|
+
|
|
191
|
+
``yarl`` cannot make an unambiguous decision on how to serialize ``bool`` values because
|
|
192
|
+
it is specific to how the end-user's application is built and would be different for
|
|
193
|
+
different apps. The library doesn't accept booleans in the API; a user should convert
|
|
194
|
+
bools into strings using own preferred translation protocol.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
Comparison with other URL libraries
|
|
198
|
+
------------------------------------
|
|
199
|
+
|
|
200
|
+
* furl (https://pypi.python.org/pypi/furl)
|
|
201
|
+
|
|
202
|
+
The library has rich functionality but the ``furl`` object is mutable.
|
|
203
|
+
|
|
204
|
+
I'm afraid to pass this object into foreign code: who knows if the
|
|
205
|
+
code will modify my url in a terrible way while I just want to send URL
|
|
206
|
+
with handy helpers for accessing URL properties.
|
|
207
|
+
|
|
208
|
+
``furl`` has other non-obvious tricky things but the main objection
|
|
209
|
+
is mutability.
|
|
210
|
+
|
|
211
|
+
* URLObject (https://pypi.python.org/pypi/URLObject)
|
|
212
|
+
|
|
213
|
+
URLObject is immutable, that's pretty good.
|
|
214
|
+
|
|
215
|
+
Every URL change generates a new URL object.
|
|
216
|
+
|
|
217
|
+
But the library doesn't do any decode/encode transformations leaving the
|
|
218
|
+
end user to cope with these gory details.
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
Source code
|
|
222
|
+
-----------
|
|
223
|
+
|
|
224
|
+
The project is hosted on GitHub_
|
|
225
|
+
|
|
226
|
+
Please file an issue on the `bug tracker
|
|
227
|
+
<https://github.com/aio-libs/yarl/issues>`_ if you have found a bug
|
|
228
|
+
or have some suggestion in order to improve the library.
|
|
229
|
+
|
|
230
|
+
Discussion list
|
|
231
|
+
---------------
|
|
232
|
+
|
|
233
|
+
*aio-libs* google group: https://groups.google.com/forum/#!forum/aio-libs
|
|
234
|
+
|
|
235
|
+
Feel free to post your questions and ideas here.
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
Authors and License
|
|
239
|
+
-------------------
|
|
240
|
+
|
|
241
|
+
The ``yarl`` package is written by Andrew Svetlov.
|
|
242
|
+
|
|
243
|
+
It's *Apache 2* licensed and freely available.
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
.. _GitHub: https://github.com/aio-libs/yarl
|
|
247
|
+
|
|
248
|
+
.. _multidict: https://github.com/aio-libs/multidict
|
|
249
|
+
|
|
250
|
+
.. _propcache: https://github.com/aio-libs/propcache
|
|
251
|
+
|
|
252
|
+
=========
|
|
253
|
+
Changelog
|
|
254
|
+
=========
|
|
255
|
+
|
|
256
|
+
..
|
|
257
|
+
You should *NOT* be adding new change log entries to this file, this
|
|
258
|
+
file is managed by towncrier. You *may* edit previous change logs to
|
|
259
|
+
fix problems like typo corrections or such.
|
|
260
|
+
To add a new change log entry, please see
|
|
261
|
+
https://pip.pypa.io/en/latest/development/#adding-a-news-entry
|
|
262
|
+
we named the news folder "changes".
|
|
263
|
+
|
|
264
|
+
WARNING: Don't drop the next directive!
|
|
265
|
+
|
|
266
|
+
.. towncrier release notes start
|
|
267
|
+
|
|
268
|
+
1.18.3
|
|
269
|
+
======
|
|
270
|
+
|
|
271
|
+
*(2024-12-01)*
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
Bug fixes
|
|
275
|
+
---------
|
|
276
|
+
|
|
277
|
+
- Fixed uppercase ASCII hosts being rejected by ``URL.build()()`` and ``yarl.URL.with_host()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
278
|
+
|
|
279
|
+
*Related issues and pull requests on GitHub:*
|
|
280
|
+
`#954 <https://github.com/aio-libs/yarl/issues/954>`__, `#1442 <https://github.com/aio-libs/yarl/issues/1442>`__.
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Miscellaneous internal changes
|
|
284
|
+
------------------------------
|
|
285
|
+
|
|
286
|
+
- Improved performances of multiple path properties on cache miss -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
287
|
+
|
|
288
|
+
*Related issues and pull requests on GitHub:*
|
|
289
|
+
`#1443 <https://github.com/aio-libs/yarl/issues/1443>`__.
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
----
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
1.18.2
|
|
296
|
+
======
|
|
297
|
+
|
|
298
|
+
*(2024-11-29)*
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
No significant changes.
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
----
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
1.18.1
|
|
308
|
+
======
|
|
309
|
+
|
|
310
|
+
*(2024-11-29)*
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
Miscellaneous internal changes
|
|
314
|
+
------------------------------
|
|
315
|
+
|
|
316
|
+
- Improved cache performance when ``~yarl.URL`` objects are constructed from ``yarl.URL.build()`` with ``encoded=True`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
317
|
+
|
|
318
|
+
*Related issues and pull requests on GitHub:*
|
|
319
|
+
`#1432 <https://github.com/aio-libs/yarl/issues/1432>`__.
|
|
320
|
+
|
|
321
|
+
- Improved cache performance for operations that produce a new ``~yarl.URL`` object -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
322
|
+
|
|
323
|
+
*Related issues and pull requests on GitHub:*
|
|
324
|
+
`#1434 <https://github.com/aio-libs/yarl/issues/1434>`__, `#1436 <https://github.com/aio-libs/yarl/issues/1436>`__.
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
----
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
1.18.0
|
|
331
|
+
======
|
|
332
|
+
|
|
333
|
+
*(2024-11-21)*
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
Features
|
|
337
|
+
--------
|
|
338
|
+
|
|
339
|
+
- Added ``keep_query`` and ``keep_fragment`` flags in the ``yarl.URL.with_path()``, ``yarl.URL.with_name()`` and ``yarl.URL.with_suffix()`` methods, allowing users to optionally retain the query string and fragment in the resulting URL when replacing the path -- by `@paul-nameless <https://github.com/sponsors/paul-nameless>`__.
|
|
340
|
+
|
|
341
|
+
*Related issues and pull requests on GitHub:*
|
|
342
|
+
`#111 <https://github.com/aio-libs/yarl/issues/111>`__, `#1421 <https://github.com/aio-libs/yarl/issues/1421>`__.
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
Contributor-facing changes
|
|
346
|
+
--------------------------
|
|
347
|
+
|
|
348
|
+
- Started running downstream ``aiohttp`` tests in CI -- by `@Cycloctane <https://github.com/sponsors/Cycloctane>`__.
|
|
349
|
+
|
|
350
|
+
*Related issues and pull requests on GitHub:*
|
|
351
|
+
`#1415 <https://github.com/aio-libs/yarl/issues/1415>`__.
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
Miscellaneous internal changes
|
|
355
|
+
------------------------------
|
|
356
|
+
|
|
357
|
+
- Improved performance of converting ``~yarl.URL`` to a string -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
358
|
+
|
|
359
|
+
*Related issues and pull requests on GitHub:*
|
|
360
|
+
`#1422 <https://github.com/aio-libs/yarl/issues/1422>`__.
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
----
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
1.17.2
|
|
367
|
+
======
|
|
368
|
+
|
|
369
|
+
*(2024-11-17)*
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
Bug fixes
|
|
373
|
+
---------
|
|
374
|
+
|
|
375
|
+
- Stopped implicitly allowing the use of Cython pre-release versions when
|
|
376
|
+
building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
|
|
377
|
+
`@markgreene74 <https://github.com/sponsors/markgreene74>`__.
|
|
378
|
+
|
|
379
|
+
*Related issues and pull requests on GitHub:*
|
|
380
|
+
`#1411 <https://github.com/aio-libs/yarl/issues/1411>`__, `#1412 <https://github.com/aio-libs/yarl/issues/1412>`__.
|
|
381
|
+
|
|
382
|
+
- Fixed a bug causing ``~yarl.URL.port`` to return the default port when the given port was zero
|
|
383
|
+
-- by `@gmacon <https://github.com/sponsors/gmacon>`__.
|
|
384
|
+
|
|
385
|
+
*Related issues and pull requests on GitHub:*
|
|
386
|
+
`#1413 <https://github.com/aio-libs/yarl/issues/1413>`__.
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
Features
|
|
390
|
+
--------
|
|
391
|
+
|
|
392
|
+
- Make error messages include details of incorrect type when ``port`` is not int in ``yarl.URL.build()``.
|
|
393
|
+
-- by `@Cycloctane <https://github.com/sponsors/Cycloctane>`__.
|
|
394
|
+
|
|
395
|
+
*Related issues and pull requests on GitHub:*
|
|
396
|
+
`#1414 <https://github.com/aio-libs/yarl/issues/1414>`__.
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Packaging updates and notes for downstreams
|
|
400
|
+
-------------------------------------------
|
|
401
|
+
|
|
402
|
+
- Stopped implicitly allowing the use of Cython pre-release versions when
|
|
403
|
+
building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
|
|
404
|
+
`@markgreene74 <https://github.com/sponsors/markgreene74>`__.
|
|
405
|
+
|
|
406
|
+
*Related issues and pull requests on GitHub:*
|
|
407
|
+
`#1411 <https://github.com/aio-libs/yarl/issues/1411>`__, `#1412 <https://github.com/aio-libs/yarl/issues/1412>`__.
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
Miscellaneous internal changes
|
|
411
|
+
------------------------------
|
|
412
|
+
|
|
413
|
+
- Improved performance of the ``yarl.URL.joinpath()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
414
|
+
|
|
415
|
+
*Related issues and pull requests on GitHub:*
|
|
416
|
+
`#1418 <https://github.com/aio-libs/yarl/issues/1418>`__.
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
----
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
1.17.1
|
|
423
|
+
======
|
|
424
|
+
|
|
425
|
+
*(2024-10-30)*
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
Miscellaneous internal changes
|
|
429
|
+
------------------------------
|
|
430
|
+
|
|
431
|
+
- Improved performance of many ``~yarl.URL`` methods -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
432
|
+
|
|
433
|
+
*Related issues and pull requests on GitHub:*
|
|
434
|
+
`#1396 <https://github.com/aio-libs/yarl/issues/1396>`__, `#1397 <https://github.com/aio-libs/yarl/issues/1397>`__, `#1398 <https://github.com/aio-libs/yarl/issues/1398>`__.
|
|
435
|
+
|
|
436
|
+
- Improved performance of passing a `dict` or `str` to ``yarl.URL.extend_query()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
437
|
+
|
|
438
|
+
*Related issues and pull requests on GitHub:*
|
|
439
|
+
`#1401 <https://github.com/aio-libs/yarl/issues/1401>`__.
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
----
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
1.17.0
|
|
446
|
+
======
|
|
447
|
+
|
|
448
|
+
*(2024-10-28)*
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Features
|
|
452
|
+
--------
|
|
453
|
+
|
|
454
|
+
- Added ``~yarl.URL.host_port_subcomponent`` which returns the ``3986#section-3.2.2`` host and ``3986#section-3.2.3`` port subcomponent -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
455
|
+
|
|
456
|
+
*Related issues and pull requests on GitHub:*
|
|
457
|
+
`#1375 <https://github.com/aio-libs/yarl/issues/1375>`__.
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
----
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
1.16.0
|
|
464
|
+
======
|
|
465
|
+
|
|
466
|
+
*(2024-10-21)*
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
Bug fixes
|
|
470
|
+
---------
|
|
471
|
+
|
|
472
|
+
- Fixed blocking I/O to load Python code when creating a new ``~yarl.URL`` with non-ascii characters in the network location part -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
473
|
+
|
|
474
|
+
*Related issues and pull requests on GitHub:*
|
|
475
|
+
`#1342 <https://github.com/aio-libs/yarl/issues/1342>`__.
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
Removals and backward incompatible breaking changes
|
|
479
|
+
---------------------------------------------------
|
|
480
|
+
|
|
481
|
+
- Migrated to using a single cache for encoding hosts -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
482
|
+
|
|
483
|
+
Passing ``ip_address_size`` and ``host_validate_size`` to ``yarl.cache_configure()`` is deprecated in favor of the new ``encode_host_size`` parameter and will be removed in a future release. For backwards compatibility, the old parameters affect the ``encode_host`` cache size.
|
|
484
|
+
|
|
485
|
+
*Related issues and pull requests on GitHub:*
|
|
486
|
+
`#1348 <https://github.com/aio-libs/yarl/issues/1348>`__, `#1357 <https://github.com/aio-libs/yarl/issues/1357>`__, `#1363 <https://github.com/aio-libs/yarl/issues/1363>`__.
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
Miscellaneous internal changes
|
|
490
|
+
------------------------------
|
|
491
|
+
|
|
492
|
+
- Improved performance of constructing ``~yarl.URL`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
493
|
+
|
|
494
|
+
*Related issues and pull requests on GitHub:*
|
|
495
|
+
`#1336 <https://github.com/aio-libs/yarl/issues/1336>`__.
|
|
496
|
+
|
|
497
|
+
- Improved performance of calling ``yarl.URL.build()`` and constructing unencoded ``~yarl.URL`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
498
|
+
|
|
499
|
+
*Related issues and pull requests on GitHub:*
|
|
500
|
+
`#1345 <https://github.com/aio-libs/yarl/issues/1345>`__.
|
|
501
|
+
|
|
502
|
+
- Reworked the internal encoding cache to improve performance on cache hit -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
503
|
+
|
|
504
|
+
*Related issues and pull requests on GitHub:*
|
|
505
|
+
`#1369 <https://github.com/aio-libs/yarl/issues/1369>`__.
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
----
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
1.15.5
|
|
512
|
+
======
|
|
513
|
+
|
|
514
|
+
*(2024-10-18)*
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
Miscellaneous internal changes
|
|
518
|
+
------------------------------
|
|
519
|
+
|
|
520
|
+
- Improved performance of the ``yarl.URL.joinpath()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
521
|
+
|
|
522
|
+
*Related issues and pull requests on GitHub:*
|
|
523
|
+
`#1304 <https://github.com/aio-libs/yarl/issues/1304>`__.
|
|
524
|
+
|
|
525
|
+
- Improved performance of the ``yarl.URL.extend_query()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
526
|
+
|
|
527
|
+
*Related issues and pull requests on GitHub:*
|
|
528
|
+
`#1305 <https://github.com/aio-libs/yarl/issues/1305>`__.
|
|
529
|
+
|
|
530
|
+
- Improved performance of the ``yarl.URL.origin()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
531
|
+
|
|
532
|
+
*Related issues and pull requests on GitHub:*
|
|
533
|
+
`#1306 <https://github.com/aio-libs/yarl/issues/1306>`__.
|
|
534
|
+
|
|
535
|
+
- Improved performance of the ``yarl.URL.with_path()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
536
|
+
|
|
537
|
+
*Related issues and pull requests on GitHub:*
|
|
538
|
+
`#1307 <https://github.com/aio-libs/yarl/issues/1307>`__.
|
|
539
|
+
|
|
540
|
+
- Improved performance of the ``yarl.URL.with_query()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
541
|
+
|
|
542
|
+
*Related issues and pull requests on GitHub:*
|
|
543
|
+
`#1308 <https://github.com/aio-libs/yarl/issues/1308>`__, `#1328 <https://github.com/aio-libs/yarl/issues/1328>`__.
|
|
544
|
+
|
|
545
|
+
- Improved performance of the ``yarl.URL.update_query()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
546
|
+
|
|
547
|
+
*Related issues and pull requests on GitHub:*
|
|
548
|
+
`#1309 <https://github.com/aio-libs/yarl/issues/1309>`__, `#1327 <https://github.com/aio-libs/yarl/issues/1327>`__.
|
|
549
|
+
|
|
550
|
+
- Improved performance of the ``yarl.URL.join()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
551
|
+
|
|
552
|
+
*Related issues and pull requests on GitHub:*
|
|
553
|
+
`#1313 <https://github.com/aio-libs/yarl/issues/1313>`__.
|
|
554
|
+
|
|
555
|
+
- Improved performance of ``~yarl.URL`` equality checks -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
556
|
+
|
|
557
|
+
*Related issues and pull requests on GitHub:*
|
|
558
|
+
`#1315 <https://github.com/aio-libs/yarl/issues/1315>`__.
|
|
559
|
+
|
|
560
|
+
- Improved performance of ``~yarl.URL`` methods that modify the network location -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
561
|
+
|
|
562
|
+
*Related issues and pull requests on GitHub:*
|
|
563
|
+
`#1316 <https://github.com/aio-libs/yarl/issues/1316>`__.
|
|
564
|
+
|
|
565
|
+
- Improved performance of the ``yarl.URL.with_fragment()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
566
|
+
|
|
567
|
+
*Related issues and pull requests on GitHub:*
|
|
568
|
+
`#1317 <https://github.com/aio-libs/yarl/issues/1317>`__.
|
|
569
|
+
|
|
570
|
+
- Improved performance of calculating the hash of ``~yarl.URL`` objects -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
571
|
+
|
|
572
|
+
*Related issues and pull requests on GitHub:*
|
|
573
|
+
`#1318 <https://github.com/aio-libs/yarl/issues/1318>`__.
|
|
574
|
+
|
|
575
|
+
- Improved performance of the ``yarl.URL.relative()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
576
|
+
|
|
577
|
+
*Related issues and pull requests on GitHub:*
|
|
578
|
+
`#1319 <https://github.com/aio-libs/yarl/issues/1319>`__.
|
|
579
|
+
|
|
580
|
+
- Improved performance of the ``yarl.URL.with_name()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
581
|
+
|
|
582
|
+
*Related issues and pull requests on GitHub:*
|
|
583
|
+
`#1320 <https://github.com/aio-libs/yarl/issues/1320>`__.
|
|
584
|
+
|
|
585
|
+
- Improved performance of ``~yarl.URL.parent`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
586
|
+
|
|
587
|
+
*Related issues and pull requests on GitHub:*
|
|
588
|
+
`#1321 <https://github.com/aio-libs/yarl/issues/1321>`__.
|
|
589
|
+
|
|
590
|
+
- Improved performance of the ``yarl.URL.with_scheme()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
591
|
+
|
|
592
|
+
*Related issues and pull requests on GitHub:*
|
|
593
|
+
`#1322 <https://github.com/aio-libs/yarl/issues/1322>`__.
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
----
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
1.15.4
|
|
600
|
+
======
|
|
601
|
+
|
|
602
|
+
*(2024-10-16)*
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
Miscellaneous internal changes
|
|
606
|
+
------------------------------
|
|
607
|
+
|
|
608
|
+
- Improved performance of the quoter when all characters are safe -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
609
|
+
|
|
610
|
+
*Related issues and pull requests on GitHub:*
|
|
611
|
+
`#1288 <https://github.com/aio-libs/yarl/issues/1288>`__.
|
|
612
|
+
|
|
613
|
+
- Improved performance of unquoting strings -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
614
|
+
|
|
615
|
+
*Related issues and pull requests on GitHub:*
|
|
616
|
+
`#1292 <https://github.com/aio-libs/yarl/issues/1292>`__, `#1293 <https://github.com/aio-libs/yarl/issues/1293>`__.
|
|
617
|
+
|
|
618
|
+
- Improved performance of calling ``yarl.URL.build()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
619
|
+
|
|
620
|
+
*Related issues and pull requests on GitHub:*
|
|
621
|
+
`#1297 <https://github.com/aio-libs/yarl/issues/1297>`__.
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
----
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
1.15.3
|
|
628
|
+
======
|
|
629
|
+
|
|
630
|
+
*(2024-10-15)*
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
Bug fixes
|
|
634
|
+
---------
|
|
635
|
+
|
|
636
|
+
- Fixed ``yarl.URL.build()`` failing to validate paths must start with a ``/`` when passing ``authority`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
637
|
+
|
|
638
|
+
The validation only worked correctly when passing ``host``.
|
|
639
|
+
|
|
640
|
+
*Related issues and pull requests on GitHub:*
|
|
641
|
+
`#1265 <https://github.com/aio-libs/yarl/issues/1265>`__.
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
Removals and backward incompatible breaking changes
|
|
645
|
+
---------------------------------------------------
|
|
646
|
+
|
|
647
|
+
- Removed support for Python 3.8 as it has reached end of life -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
648
|
+
|
|
649
|
+
*Related issues and pull requests on GitHub:*
|
|
650
|
+
`#1203 <https://github.com/aio-libs/yarl/issues/1203>`__.
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
Miscellaneous internal changes
|
|
654
|
+
------------------------------
|
|
655
|
+
|
|
656
|
+
- Improved performance of constructing ``~yarl.URL`` when the net location is only the host -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
657
|
+
|
|
658
|
+
*Related issues and pull requests on GitHub:*
|
|
659
|
+
`#1271 <https://github.com/aio-libs/yarl/issues/1271>`__.
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
----
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
1.15.2
|
|
666
|
+
======
|
|
667
|
+
|
|
668
|
+
*(2024-10-13)*
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
Miscellaneous internal changes
|
|
672
|
+
------------------------------
|
|
673
|
+
|
|
674
|
+
- Improved performance of converting ``~yarl.URL`` to a string -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
675
|
+
|
|
676
|
+
*Related issues and pull requests on GitHub:*
|
|
677
|
+
`#1234 <https://github.com/aio-libs/yarl/issues/1234>`__.
|
|
678
|
+
|
|
679
|
+
- Improved performance of ``yarl.URL.joinpath()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
680
|
+
|
|
681
|
+
*Related issues and pull requests on GitHub:*
|
|
682
|
+
`#1248 <https://github.com/aio-libs/yarl/issues/1248>`__, `#1250 <https://github.com/aio-libs/yarl/issues/1250>`__.
|
|
683
|
+
|
|
684
|
+
- Improved performance of constructing query strings from ``~multidict.MultiDict`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
685
|
+
|
|
686
|
+
*Related issues and pull requests on GitHub:*
|
|
687
|
+
`#1256 <https://github.com/aio-libs/yarl/issues/1256>`__.
|
|
688
|
+
|
|
689
|
+
- Improved performance of constructing query strings with ``int`` values -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
690
|
+
|
|
691
|
+
*Related issues and pull requests on GitHub:*
|
|
692
|
+
`#1259 <https://github.com/aio-libs/yarl/issues/1259>`__.
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
----
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
1.15.1
|
|
699
|
+
======
|
|
700
|
+
|
|
701
|
+
*(2024-10-12)*
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
Miscellaneous internal changes
|
|
705
|
+
------------------------------
|
|
706
|
+
|
|
707
|
+
- Improved performance of calling ``yarl.URL.build()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
708
|
+
|
|
709
|
+
*Related issues and pull requests on GitHub:*
|
|
710
|
+
`#1222 <https://github.com/aio-libs/yarl/issues/1222>`__.
|
|
711
|
+
|
|
712
|
+
- Improved performance of all ``~yarl.URL`` methods that create new ``~yarl.URL`` objects -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
713
|
+
|
|
714
|
+
*Related issues and pull requests on GitHub:*
|
|
715
|
+
`#1226 <https://github.com/aio-libs/yarl/issues/1226>`__.
|
|
716
|
+
|
|
717
|
+
- Improved performance of ``~yarl.URL`` methods that modify the network location -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
718
|
+
|
|
719
|
+
*Related issues and pull requests on GitHub:*
|
|
720
|
+
`#1229 <https://github.com/aio-libs/yarl/issues/1229>`__.
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
----
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
1.15.0
|
|
727
|
+
======
|
|
728
|
+
|
|
729
|
+
*(2024-10-11)*
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
Bug fixes
|
|
733
|
+
---------
|
|
734
|
+
|
|
735
|
+
- Fixed validation with ``yarl.URL.with_scheme()`` when passed scheme is not lowercase -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
736
|
+
|
|
737
|
+
*Related issues and pull requests on GitHub:*
|
|
738
|
+
`#1189 <https://github.com/aio-libs/yarl/issues/1189>`__.
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
Features
|
|
742
|
+
--------
|
|
743
|
+
|
|
744
|
+
- Started building ``armv7l`` wheels -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
745
|
+
|
|
746
|
+
*Related issues and pull requests on GitHub:*
|
|
747
|
+
`#1204 <https://github.com/aio-libs/yarl/issues/1204>`__.
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Miscellaneous internal changes
|
|
751
|
+
------------------------------
|
|
752
|
+
|
|
753
|
+
- Improved performance of constructing unencoded ``~yarl.URL`` objects -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
754
|
+
|
|
755
|
+
*Related issues and pull requests on GitHub:*
|
|
756
|
+
`#1188 <https://github.com/aio-libs/yarl/issues/1188>`__.
|
|
757
|
+
|
|
758
|
+
- Added a cache for parsing hosts to reduce overhead of encoding ``~yarl.URL`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
759
|
+
|
|
760
|
+
*Related issues and pull requests on GitHub:*
|
|
761
|
+
`#1190 <https://github.com/aio-libs/yarl/issues/1190>`__.
|
|
762
|
+
|
|
763
|
+
- Improved performance of constructing query strings from ``~collections.abc.Mapping`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
764
|
+
|
|
765
|
+
*Related issues and pull requests on GitHub:*
|
|
766
|
+
`#1193 <https://github.com/aio-libs/yarl/issues/1193>`__.
|
|
767
|
+
|
|
768
|
+
- Improved performance of converting ``~yarl.URL`` objects to strings -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
769
|
+
|
|
770
|
+
*Related issues and pull requests on GitHub:*
|
|
771
|
+
`#1198 <https://github.com/aio-libs/yarl/issues/1198>`__.
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
----
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
1.14.0
|
|
778
|
+
======
|
|
779
|
+
|
|
780
|
+
*(2024-10-08)*
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
Packaging updates and notes for downstreams
|
|
784
|
+
-------------------------------------------
|
|
785
|
+
|
|
786
|
+
- Switched to using the ``propcache`` package for property caching
|
|
787
|
+
-- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
788
|
+
|
|
789
|
+
The ``propcache`` package is derived from the property caching
|
|
790
|
+
code in ``yarl`` and has been broken out to avoid maintaining it for multiple
|
|
791
|
+
projects.
|
|
792
|
+
|
|
793
|
+
*Related issues and pull requests on GitHub:*
|
|
794
|
+
`#1169 <https://github.com/aio-libs/yarl/issues/1169>`__.
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
Contributor-facing changes
|
|
798
|
+
--------------------------
|
|
799
|
+
|
|
800
|
+
- Started testing with Hypothesis -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__ and `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
801
|
+
|
|
802
|
+
Special thanks to `@Zac-HD <https://github.com/sponsors/Zac-HD>`__ for helping us get started with this framework.
|
|
803
|
+
|
|
804
|
+
*Related issues and pull requests on GitHub:*
|
|
805
|
+
`#860 <https://github.com/aio-libs/yarl/issues/860>`__.
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
Miscellaneous internal changes
|
|
809
|
+
------------------------------
|
|
810
|
+
|
|
811
|
+
- Improved performance of ``yarl.URL.is_default_port()`` when no explicit port is set -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
812
|
+
|
|
813
|
+
*Related issues and pull requests on GitHub:*
|
|
814
|
+
`#1168 <https://github.com/aio-libs/yarl/issues/1168>`__.
|
|
815
|
+
|
|
816
|
+
- Improved performance of converting ``~yarl.URL`` to a string when no explicit port is set -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
817
|
+
|
|
818
|
+
*Related issues and pull requests on GitHub:*
|
|
819
|
+
`#1170 <https://github.com/aio-libs/yarl/issues/1170>`__.
|
|
820
|
+
|
|
821
|
+
- Improved performance of the ``yarl.URL.origin()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
822
|
+
|
|
823
|
+
*Related issues and pull requests on GitHub:*
|
|
824
|
+
`#1175 <https://github.com/aio-libs/yarl/issues/1175>`__.
|
|
825
|
+
|
|
826
|
+
- Improved performance of encoding hosts -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
827
|
+
|
|
828
|
+
*Related issues and pull requests on GitHub:*
|
|
829
|
+
`#1176 <https://github.com/aio-libs/yarl/issues/1176>`__.
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
----
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
1.13.1
|
|
836
|
+
======
|
|
837
|
+
|
|
838
|
+
*(2024-09-27)*
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
Miscellaneous internal changes
|
|
842
|
+
------------------------------
|
|
843
|
+
|
|
844
|
+
- Improved performance of calling ``yarl.URL.build()`` with ``authority`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
845
|
+
|
|
846
|
+
*Related issues and pull requests on GitHub:*
|
|
847
|
+
`#1163 <https://github.com/aio-libs/yarl/issues/1163>`__.
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
----
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
1.13.0
|
|
854
|
+
======
|
|
855
|
+
|
|
856
|
+
*(2024-09-26)*
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
Bug fixes
|
|
860
|
+
---------
|
|
861
|
+
|
|
862
|
+
- Started rejecting ASCII hostnames with invalid characters. For host strings that
|
|
863
|
+
look like authority strings, the exception message includes advice on what to do
|
|
864
|
+
instead -- by `@mjpieters <https://github.com/sponsors/mjpieters>`__.
|
|
865
|
+
|
|
866
|
+
*Related issues and pull requests on GitHub:*
|
|
867
|
+
`#880 <https://github.com/aio-libs/yarl/issues/880>`__, `#954 <https://github.com/aio-libs/yarl/issues/954>`__.
|
|
868
|
+
|
|
869
|
+
- Fixed IPv6 addresses missing brackets when the ``~yarl.URL`` was converted to a string -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
870
|
+
|
|
871
|
+
*Related issues and pull requests on GitHub:*
|
|
872
|
+
`#1157 <https://github.com/aio-libs/yarl/issues/1157>`__, `#1158 <https://github.com/aio-libs/yarl/issues/1158>`__.
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Features
|
|
876
|
+
--------
|
|
877
|
+
|
|
878
|
+
- Added ``~yarl.URL.host_subcomponent`` which returns the ``3986#section-3.2.2`` host subcomponent -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
879
|
+
|
|
880
|
+
The only current practical difference between ``~yarl.URL.raw_host`` and ``~yarl.URL.host_subcomponent`` is that IPv6 addresses are returned bracketed.
|
|
881
|
+
|
|
882
|
+
*Related issues and pull requests on GitHub:*
|
|
883
|
+
`#1159 <https://github.com/aio-libs/yarl/issues/1159>`__.
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
----
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
1.12.1
|
|
890
|
+
======
|
|
891
|
+
|
|
892
|
+
*(2024-09-23)*
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
No significant changes.
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
----
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
1.12.0
|
|
902
|
+
======
|
|
903
|
+
|
|
904
|
+
*(2024-09-23)*
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
Features
|
|
908
|
+
--------
|
|
909
|
+
|
|
910
|
+
- Added ``~yarl.URL.path_safe`` to be able to fetch the path without ``%2F`` and ``%25`` decoded -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
911
|
+
|
|
912
|
+
*Related issues and pull requests on GitHub:*
|
|
913
|
+
`#1150 <https://github.com/aio-libs/yarl/issues/1150>`__.
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
Removals and backward incompatible breaking changes
|
|
917
|
+
---------------------------------------------------
|
|
918
|
+
|
|
919
|
+
- Restore decoding ``%2F`` (``/``) in ``URL.path`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
920
|
+
|
|
921
|
+
This change restored the behavior before `#1057 <https://github.com/aio-libs/yarl/issues/1057>`__.
|
|
922
|
+
|
|
923
|
+
*Related issues and pull requests on GitHub:*
|
|
924
|
+
`#1151 <https://github.com/aio-libs/yarl/issues/1151>`__.
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
Miscellaneous internal changes
|
|
928
|
+
------------------------------
|
|
929
|
+
|
|
930
|
+
- Improved performance of processing paths -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
931
|
+
|
|
932
|
+
*Related issues and pull requests on GitHub:*
|
|
933
|
+
`#1143 <https://github.com/aio-libs/yarl/issues/1143>`__.
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
----
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
1.11.1
|
|
940
|
+
======
|
|
941
|
+
|
|
942
|
+
*(2024-09-09)*
|
|
943
|
+
|
|
944
|
+
|
|
945
|
+
Bug fixes
|
|
946
|
+
---------
|
|
947
|
+
|
|
948
|
+
- Allowed scheme replacement for relative URLs if the scheme does not require a host -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
949
|
+
|
|
950
|
+
*Related issues and pull requests on GitHub:*
|
|
951
|
+
`#280 <https://github.com/aio-libs/yarl/issues/280>`__, `#1138 <https://github.com/aio-libs/yarl/issues/1138>`__.
|
|
952
|
+
|
|
953
|
+
- Allowed empty host for URL schemes other than the special schemes listed in the WHATWG URL spec -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
954
|
+
|
|
955
|
+
*Related issues and pull requests on GitHub:*
|
|
956
|
+
`#1136 <https://github.com/aio-libs/yarl/issues/1136>`__.
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
Features
|
|
960
|
+
--------
|
|
961
|
+
|
|
962
|
+
- Loosened restriction on integers as query string values to allow classes that implement ``__int__`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
963
|
+
|
|
964
|
+
*Related issues and pull requests on GitHub:*
|
|
965
|
+
`#1139 <https://github.com/aio-libs/yarl/issues/1139>`__.
|
|
966
|
+
|
|
967
|
+
|
|
968
|
+
Miscellaneous internal changes
|
|
969
|
+
------------------------------
|
|
970
|
+
|
|
971
|
+
- Improved performance of normalizing paths -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
972
|
+
|
|
973
|
+
*Related issues and pull requests on GitHub:*
|
|
974
|
+
`#1137 <https://github.com/aio-libs/yarl/issues/1137>`__.
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
----
|
|
978
|
+
|
|
979
|
+
|
|
980
|
+
1.11.0
|
|
981
|
+
======
|
|
982
|
+
|
|
983
|
+
*(2024-09-08)*
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
Features
|
|
987
|
+
--------
|
|
988
|
+
|
|
989
|
+
- Added ``URL.extend_query()()`` method, which can be used to extend parameters without replacing same named keys -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
990
|
+
|
|
991
|
+
This method was primarily added to replace the inefficient hand rolled method currently used in ``aiohttp``.
|
|
992
|
+
|
|
993
|
+
*Related issues and pull requests on GitHub:*
|
|
994
|
+
`#1128 <https://github.com/aio-libs/yarl/issues/1128>`__.
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
Miscellaneous internal changes
|
|
998
|
+
------------------------------
|
|
999
|
+
|
|
1000
|
+
- Improved performance of the Cython ``cached_property`` implementation -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1001
|
+
|
|
1002
|
+
*Related issues and pull requests on GitHub:*
|
|
1003
|
+
`#1122 <https://github.com/aio-libs/yarl/issues/1122>`__.
|
|
1004
|
+
|
|
1005
|
+
- Simplified computing ports by removing unnecessary code -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1006
|
+
|
|
1007
|
+
*Related issues and pull requests on GitHub:*
|
|
1008
|
+
`#1123 <https://github.com/aio-libs/yarl/issues/1123>`__.
|
|
1009
|
+
|
|
1010
|
+
- Improved performance of encoding non IPv6 hosts -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1011
|
+
|
|
1012
|
+
*Related issues and pull requests on GitHub:*
|
|
1013
|
+
`#1125 <https://github.com/aio-libs/yarl/issues/1125>`__.
|
|
1014
|
+
|
|
1015
|
+
- Improved performance of ``URL.build()()`` when the path, query string, or fragment is an empty string -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1016
|
+
|
|
1017
|
+
*Related issues and pull requests on GitHub:*
|
|
1018
|
+
`#1126 <https://github.com/aio-libs/yarl/issues/1126>`__.
|
|
1019
|
+
|
|
1020
|
+
- Improved performance of the ``URL.update_query()()`` method -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1021
|
+
|
|
1022
|
+
*Related issues and pull requests on GitHub:*
|
|
1023
|
+
`#1130 <https://github.com/aio-libs/yarl/issues/1130>`__.
|
|
1024
|
+
|
|
1025
|
+
- Improved performance of processing query string changes when arguments are ``str`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1026
|
+
|
|
1027
|
+
*Related issues and pull requests on GitHub:*
|
|
1028
|
+
`#1131 <https://github.com/aio-libs/yarl/issues/1131>`__.
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
----
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
1.10.0
|
|
1035
|
+
======
|
|
1036
|
+
|
|
1037
|
+
*(2024-09-06)*
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
Bug fixes
|
|
1041
|
+
---------
|
|
1042
|
+
|
|
1043
|
+
- Fixed joining a path when the existing path was empty -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1044
|
+
|
|
1045
|
+
A regression in ``URL.join()()`` was introduced in `#1082 <https://github.com/aio-libs/yarl/issues/1082>`__.
|
|
1046
|
+
|
|
1047
|
+
*Related issues and pull requests on GitHub:*
|
|
1048
|
+
`#1118 <https://github.com/aio-libs/yarl/issues/1118>`__.
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
Features
|
|
1052
|
+
--------
|
|
1053
|
+
|
|
1054
|
+
- Added ``URL.without_query_params()()`` method, to drop some parameters from query string -- by `@hongquan <https://github.com/sponsors/hongquan>`__.
|
|
1055
|
+
|
|
1056
|
+
*Related issues and pull requests on GitHub:*
|
|
1057
|
+
`#774 <https://github.com/aio-libs/yarl/issues/774>`__, `#898 <https://github.com/aio-libs/yarl/issues/898>`__, `#1010 <https://github.com/aio-libs/yarl/issues/1010>`__.
|
|
1058
|
+
|
|
1059
|
+
- The previously protected types ``_SimpleQuery``, ``_QueryVariable``, and ``_Query`` are now available for use externally as ``SimpleQuery``, ``QueryVariable``, and ``Query`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1060
|
+
|
|
1061
|
+
*Related issues and pull requests on GitHub:*
|
|
1062
|
+
`#1050 <https://github.com/aio-libs/yarl/issues/1050>`__, `#1113 <https://github.com/aio-libs/yarl/issues/1113>`__.
|
|
1063
|
+
|
|
1064
|
+
|
|
1065
|
+
Contributor-facing changes
|
|
1066
|
+
--------------------------
|
|
1067
|
+
|
|
1068
|
+
- Replaced all ``~typing.Optional`` with ``~typing.Union`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1069
|
+
|
|
1070
|
+
*Related issues and pull requests on GitHub:*
|
|
1071
|
+
`#1095 <https://github.com/aio-libs/yarl/issues/1095>`__.
|
|
1072
|
+
|
|
1073
|
+
|
|
1074
|
+
Miscellaneous internal changes
|
|
1075
|
+
------------------------------
|
|
1076
|
+
|
|
1077
|
+
- Significantly improved performance of parsing the network location -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1078
|
+
|
|
1079
|
+
*Related issues and pull requests on GitHub:*
|
|
1080
|
+
`#1112 <https://github.com/aio-libs/yarl/issues/1112>`__.
|
|
1081
|
+
|
|
1082
|
+
- Added internal types to the cache to prevent future refactoring errors -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1083
|
+
|
|
1084
|
+
*Related issues and pull requests on GitHub:*
|
|
1085
|
+
`#1117 <https://github.com/aio-libs/yarl/issues/1117>`__.
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
----
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
1.9.11
|
|
1092
|
+
======
|
|
1093
|
+
|
|
1094
|
+
*(2024-09-04)*
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Bug fixes
|
|
1098
|
+
---------
|
|
1099
|
+
|
|
1100
|
+
- Fixed a ``TypeError`` with ``MultiDictProxy`` and Python 3.8 -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1101
|
+
|
|
1102
|
+
*Related issues and pull requests on GitHub:*
|
|
1103
|
+
`#1084 <https://github.com/aio-libs/yarl/issues/1084>`__, `#1105 <https://github.com/aio-libs/yarl/issues/1105>`__, `#1107 <https://github.com/aio-libs/yarl/issues/1107>`__.
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
Miscellaneous internal changes
|
|
1107
|
+
------------------------------
|
|
1108
|
+
|
|
1109
|
+
- Improved performance of encoding hosts -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1110
|
+
|
|
1111
|
+
Previously, the library would unconditionally try to parse a host as an IP Address. The library now avoids trying to parse a host as an IP Address if the string is not in one of the formats described in ``3986#section-3.2.2``.
|
|
1112
|
+
|
|
1113
|
+
*Related issues and pull requests on GitHub:*
|
|
1114
|
+
`#1104 <https://github.com/aio-libs/yarl/issues/1104>`__.
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
----
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
1.9.10
|
|
1121
|
+
======
|
|
1122
|
+
|
|
1123
|
+
*(2024-09-04)*
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
Bug fixes
|
|
1127
|
+
---------
|
|
1128
|
+
|
|
1129
|
+
- ``URL.join()()`` has been changed to match
|
|
1130
|
+
``3986`` and align with
|
|
1131
|
+
``/ operation()`` and ``URL.joinpath()()``
|
|
1132
|
+
when joining URLs with empty segments.
|
|
1133
|
+
Previously ``urllib.parse.urljoin`` was used,
|
|
1134
|
+
which has known issues with empty segments
|
|
1135
|
+
(`python/cpython#84774 <https://github.com/python/cpython/issues/84774>`_).
|
|
1136
|
+
|
|
1137
|
+
Due to the semantics of ``URL.join()()``, joining an
|
|
1138
|
+
URL with scheme requires making it relative, prefixing with ``./``.
|
|
1139
|
+
|
|
1140
|
+
.. code-block:: pycon
|
|
1141
|
+
|
|
1142
|
+
>>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
|
|
1143
|
+
URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
Empty segments are honored in the base as well as the joined part.
|
|
1147
|
+
|
|
1148
|
+
.. code-block:: pycon
|
|
1149
|
+
|
|
1150
|
+
>>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
|
|
1151
|
+
URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
-- by `@commonism <https://github.com/sponsors/commonism>`__
|
|
1156
|
+
|
|
1157
|
+
This change initially appeared in 1.9.5 but was reverted in 1.9.6 to resolve a problem with query string handling.
|
|
1158
|
+
|
|
1159
|
+
*Related issues and pull requests on GitHub:*
|
|
1160
|
+
`#1039 <https://github.com/aio-libs/yarl/issues/1039>`__, `#1082 <https://github.com/aio-libs/yarl/issues/1082>`__.
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
Features
|
|
1164
|
+
--------
|
|
1165
|
+
|
|
1166
|
+
- Added ``~yarl.URL.absolute`` which is now preferred over ``URL.is_absolute()`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1167
|
+
|
|
1168
|
+
*Related issues and pull requests on GitHub:*
|
|
1169
|
+
`#1100 <https://github.com/aio-libs/yarl/issues/1100>`__.
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
----
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
1.9.9
|
|
1176
|
+
=====
|
|
1177
|
+
|
|
1178
|
+
*(2024-09-04)*
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
Bug fixes
|
|
1182
|
+
---------
|
|
1183
|
+
|
|
1184
|
+
- Added missing type on ``~yarl.URL.port`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1185
|
+
|
|
1186
|
+
*Related issues and pull requests on GitHub:*
|
|
1187
|
+
`#1097 <https://github.com/aio-libs/yarl/issues/1097>`__.
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
----
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
1.9.8
|
|
1194
|
+
=====
|
|
1195
|
+
|
|
1196
|
+
*(2024-09-03)*
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
Features
|
|
1200
|
+
--------
|
|
1201
|
+
|
|
1202
|
+
- Covered the ``~yarl.URL`` object with types -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1203
|
+
|
|
1204
|
+
*Related issues and pull requests on GitHub:*
|
|
1205
|
+
`#1084 <https://github.com/aio-libs/yarl/issues/1084>`__.
|
|
1206
|
+
|
|
1207
|
+
- Cache parsing of IP Addresses when encoding hosts -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1208
|
+
|
|
1209
|
+
*Related issues and pull requests on GitHub:*
|
|
1210
|
+
`#1086 <https://github.com/aio-libs/yarl/issues/1086>`__.
|
|
1211
|
+
|
|
1212
|
+
|
|
1213
|
+
Contributor-facing changes
|
|
1214
|
+
--------------------------
|
|
1215
|
+
|
|
1216
|
+
- Covered the ``~yarl.URL`` object with types -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1217
|
+
|
|
1218
|
+
*Related issues and pull requests on GitHub:*
|
|
1219
|
+
`#1084 <https://github.com/aio-libs/yarl/issues/1084>`__.
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
Miscellaneous internal changes
|
|
1223
|
+
------------------------------
|
|
1224
|
+
|
|
1225
|
+
- Improved performance of handling ports -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1226
|
+
|
|
1227
|
+
*Related issues and pull requests on GitHub:*
|
|
1228
|
+
`#1081 <https://github.com/aio-libs/yarl/issues/1081>`__.
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
----
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
1.9.7
|
|
1235
|
+
=====
|
|
1236
|
+
|
|
1237
|
+
*(2024-09-01)*
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
Removals and backward incompatible breaking changes
|
|
1241
|
+
---------------------------------------------------
|
|
1242
|
+
|
|
1243
|
+
- Removed support ``3986#section-3.2.3`` port normalization when the scheme is not one of ``http``, ``https``, ``wss``, or ``ws`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1244
|
+
|
|
1245
|
+
Support for port normalization was recently added in `#1033 <https://github.com/aio-libs/yarl/issues/1033>`__ and contained code that would do blocking I/O if the scheme was not one of the four listed above. The code has been removed because this library is intended to be safe for usage with ``asyncio``.
|
|
1246
|
+
|
|
1247
|
+
*Related issues and pull requests on GitHub:*
|
|
1248
|
+
`#1076 <https://github.com/aio-libs/yarl/issues/1076>`__.
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
Miscellaneous internal changes
|
|
1252
|
+
------------------------------
|
|
1253
|
+
|
|
1254
|
+
- Improved performance of property caching -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1255
|
+
|
|
1256
|
+
The ``reify`` implementation from ``aiohttp`` was adapted to replace the internal ``cached_property`` implementation.
|
|
1257
|
+
|
|
1258
|
+
*Related issues and pull requests on GitHub:*
|
|
1259
|
+
`#1070 <https://github.com/aio-libs/yarl/issues/1070>`__.
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
----
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
1.9.6
|
|
1266
|
+
=====
|
|
1267
|
+
|
|
1268
|
+
*(2024-08-30)*
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
Bug fixes
|
|
1272
|
+
---------
|
|
1273
|
+
|
|
1274
|
+
- Reverted ``3986`` compatible ``URL.join()()`` honoring empty segments which was introduced in `#1039 <https://github.com/aio-libs/yarl/issues/1039>`__.
|
|
1275
|
+
|
|
1276
|
+
This change introduced a regression handling query string parameters with joined URLs. The change was reverted to maintain compatibility with the previous behavior.
|
|
1277
|
+
|
|
1278
|
+
*Related issues and pull requests on GitHub:*
|
|
1279
|
+
`#1067 <https://github.com/aio-libs/yarl/issues/1067>`__.
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
----
|
|
1283
|
+
|
|
1284
|
+
|
|
1285
|
+
1.9.5
|
|
1286
|
+
=====
|
|
1287
|
+
|
|
1288
|
+
*(2024-08-30)*
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
Bug fixes
|
|
1292
|
+
---------
|
|
1293
|
+
|
|
1294
|
+
- Joining URLs with empty segments has been changed
|
|
1295
|
+
to match ``3986``.
|
|
1296
|
+
|
|
1297
|
+
Previously empty segments would be removed from path,
|
|
1298
|
+
breaking use-cases such as
|
|
1299
|
+
|
|
1300
|
+
.. code-block:: python
|
|
1301
|
+
|
|
1302
|
+
URL("https://web.archive.org/web/") / "https://github.com/"
|
|
1303
|
+
|
|
1304
|
+
Now ``/ operation()`` and ``URL.joinpath()()``
|
|
1305
|
+
keep empty segments, but do not introduce new empty segments.
|
|
1306
|
+
e.g.
|
|
1307
|
+
|
|
1308
|
+
.. code-block:: python
|
|
1309
|
+
|
|
1310
|
+
URL("https://example.org/") / ""
|
|
1311
|
+
|
|
1312
|
+
does not introduce an empty segment.
|
|
1313
|
+
|
|
1314
|
+
-- by `@commonism <https://github.com/sponsors/commonism>`__ and `@youtux <https://github.com/sponsors/youtux>`__
|
|
1315
|
+
|
|
1316
|
+
*Related issues and pull requests on GitHub:*
|
|
1317
|
+
`#1026 <https://github.com/aio-libs/yarl/issues/1026>`__.
|
|
1318
|
+
|
|
1319
|
+
- The default protocol ports of well-known URI schemes are now taken into account
|
|
1320
|
+
during the normalization of the URL string representation in accordance with
|
|
1321
|
+
``3986#section-3.2.3``.
|
|
1322
|
+
|
|
1323
|
+
Specified ports are removed from the ``str`` representation of a ``~yarl.URL``
|
|
1324
|
+
if the port matches the scheme's default port -- by `@commonism <https://github.com/sponsors/commonism>`__.
|
|
1325
|
+
|
|
1326
|
+
*Related issues and pull requests on GitHub:*
|
|
1327
|
+
`#1033 <https://github.com/aio-libs/yarl/issues/1033>`__.
|
|
1328
|
+
|
|
1329
|
+
- ``URL.join()()`` has been changed to match
|
|
1330
|
+
``3986`` and align with
|
|
1331
|
+
``/ operation()`` and ``URL.joinpath()()``
|
|
1332
|
+
when joining URLs with empty segments.
|
|
1333
|
+
Previously ``urllib.parse.urljoin`` was used,
|
|
1334
|
+
which has known issues with empty segments
|
|
1335
|
+
(`python/cpython#84774 <https://github.com/python/cpython/issues/84774>`_).
|
|
1336
|
+
|
|
1337
|
+
Due to the semantics of ``URL.join()()``, joining an
|
|
1338
|
+
URL with scheme requires making it relative, prefixing with ``./``.
|
|
1339
|
+
|
|
1340
|
+
.. code-block:: pycon
|
|
1341
|
+
|
|
1342
|
+
>>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
|
|
1343
|
+
URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
Empty segments are honored in the base as well as the joined part.
|
|
1347
|
+
|
|
1348
|
+
.. code-block:: pycon
|
|
1349
|
+
|
|
1350
|
+
>>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
|
|
1351
|
+
URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
-- by `@commonism <https://github.com/sponsors/commonism>`__
|
|
1356
|
+
|
|
1357
|
+
*Related issues and pull requests on GitHub:*
|
|
1358
|
+
`#1039 <https://github.com/aio-libs/yarl/issues/1039>`__.
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
Removals and backward incompatible breaking changes
|
|
1362
|
+
---------------------------------------------------
|
|
1363
|
+
|
|
1364
|
+
- Stopped decoding ``%2F`` (``/``) in ``URL.path``, as this could lead to code incorrectly treating it as a path separator
|
|
1365
|
+
-- by `@Dreamsorcerer <https://github.com/sponsors/Dreamsorcerer>`__.
|
|
1366
|
+
|
|
1367
|
+
*Related issues and pull requests on GitHub:*
|
|
1368
|
+
`#1057 <https://github.com/aio-libs/yarl/issues/1057>`__.
|
|
1369
|
+
|
|
1370
|
+
- Dropped support for Python 3.7 -- by `@Dreamsorcerer <https://github.com/sponsors/Dreamsorcerer>`__.
|
|
1371
|
+
|
|
1372
|
+
*Related issues and pull requests on GitHub:*
|
|
1373
|
+
`#1016 <https://github.com/aio-libs/yarl/issues/1016>`__.
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
Improved documentation
|
|
1377
|
+
----------------------
|
|
1378
|
+
|
|
1379
|
+
- On the ``Contributing docs`` page,
|
|
1380
|
+
a link to the ``Towncrier philosophy`` has been fixed.
|
|
1381
|
+
|
|
1382
|
+
*Related issues and pull requests on GitHub:*
|
|
1383
|
+
`#981 <https://github.com/aio-libs/yarl/issues/981>`__.
|
|
1384
|
+
|
|
1385
|
+
- The pre-existing ``/ magic method()``
|
|
1386
|
+
has been documented in the API reference -- by `@commonism <https://github.com/sponsors/commonism>`__.
|
|
1387
|
+
|
|
1388
|
+
*Related issues and pull requests on GitHub:*
|
|
1389
|
+
`#1026 <https://github.com/aio-libs/yarl/issues/1026>`__.
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
Packaging updates and notes for downstreams
|
|
1393
|
+
-------------------------------------------
|
|
1394
|
+
|
|
1395
|
+
- A flaw in the logic for copying the project directory into a
|
|
1396
|
+
temporary folder that led to infinite recursion when ``TMPDIR``
|
|
1397
|
+
was set to a project subdirectory path. This was happening in Fedora
|
|
1398
|
+
and its downstream due to the use of `pyproject-rpm-macros
|
|
1399
|
+
<https://src.fedoraproject.org/rpms/pyproject-rpm-macros>`__. It was
|
|
1400
|
+
only reproducible with ``pip wheel`` and was not affecting the
|
|
1401
|
+
``pyproject-build`` users.
|
|
1402
|
+
|
|
1403
|
+
-- by `@hroncok <https://github.com/sponsors/hroncok>`__ and `@webknjaz <https://github.com/sponsors/webknjaz>`__
|
|
1404
|
+
|
|
1405
|
+
*Related issues and pull requests on GitHub:*
|
|
1406
|
+
`#992 <https://github.com/aio-libs/yarl/issues/992>`__, `#1014 <https://github.com/aio-libs/yarl/issues/1014>`__.
|
|
1407
|
+
|
|
1408
|
+
- Support Python 3.13 and publish non-free-threaded wheels
|
|
1409
|
+
|
|
1410
|
+
*Related issues and pull requests on GitHub:*
|
|
1411
|
+
`#1054 <https://github.com/aio-libs/yarl/issues/1054>`__.
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
Contributor-facing changes
|
|
1415
|
+
--------------------------
|
|
1416
|
+
|
|
1417
|
+
- The CI/CD setup has been updated to test ``arm64`` wheels
|
|
1418
|
+
under macOS 14, except for Python 3.7 that is unsupported
|
|
1419
|
+
in that environment -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1420
|
+
|
|
1421
|
+
*Related issues and pull requests on GitHub:*
|
|
1422
|
+
`#1015 <https://github.com/aio-libs/yarl/issues/1015>`__.
|
|
1423
|
+
|
|
1424
|
+
- Removed unused type ignores and casts -- by `@hauntsaninja <https://github.com/sponsors/hauntsaninja>`__.
|
|
1425
|
+
|
|
1426
|
+
*Related issues and pull requests on GitHub:*
|
|
1427
|
+
`#1031 <https://github.com/aio-libs/yarl/issues/1031>`__.
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
Miscellaneous internal changes
|
|
1431
|
+
------------------------------
|
|
1432
|
+
|
|
1433
|
+
- ``port``, ``scheme``, and ``raw_host`` are now ``cached_property`` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
|
|
1434
|
+
|
|
1435
|
+
``aiohttp`` accesses these properties quite often, which cause ``urllib`` to build the ``_hostinfo`` property every time. ``port``, ``scheme``, and ``raw_host`` are now cached properties, which will improve performance.
|
|
1436
|
+
|
|
1437
|
+
*Related issues and pull requests on GitHub:*
|
|
1438
|
+
`#1044 <https://github.com/aio-libs/yarl/issues/1044>`__, `#1058 <https://github.com/aio-libs/yarl/issues/1058>`__.
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
----
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
1.9.4 (2023-12-06)
|
|
1445
|
+
==================
|
|
1446
|
+
|
|
1447
|
+
Bug fixes
|
|
1448
|
+
---------
|
|
1449
|
+
|
|
1450
|
+
- Started raising ``TypeError`` when a string value is passed into
|
|
1451
|
+
``yarl.URL.build()`` as the ``port`` argument -- by `@commonism <https://github.com/sponsors/commonism>`__.
|
|
1452
|
+
|
|
1453
|
+
Previously the empty string as port would create malformed URLs when rendered as string representations. (`#883 <https://github.com/aio-libs/yarl/issues/883>`__)
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
Packaging updates and notes for downstreams
|
|
1457
|
+
-------------------------------------------
|
|
1458
|
+
|
|
1459
|
+
- The leading ``--`` has been dropped from the `PEP 517 <https://peps.python.org/pep-517>`__ in-tree build
|
|
1460
|
+
backend config setting names. ``--pure-python`` is now just ``pure-python``
|
|
1461
|
+
-- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1462
|
+
|
|
1463
|
+
The usage now looks as follows:
|
|
1464
|
+
|
|
1465
|
+
.. code-block:: console
|
|
1466
|
+
|
|
1467
|
+
$ python -m build \
|
|
1468
|
+
--config-setting=pure-python=true \
|
|
1469
|
+
--config-setting=with-cython-tracing=true
|
|
1470
|
+
|
|
1471
|
+
(`#963 <https://github.com/aio-libs/yarl/issues/963>`__)
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
Contributor-facing changes
|
|
1475
|
+
--------------------------
|
|
1476
|
+
|
|
1477
|
+
- A step-by-step ``Release Guide`` guide has
|
|
1478
|
+
been added, describing how to release *yarl* -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1479
|
+
|
|
1480
|
+
This is primarily targeting maintainers. (`#960 <https://github.com/aio-libs/yarl/issues/960>`__)
|
|
1481
|
+
- Coverage collection has been implemented for the Cython modules
|
|
1482
|
+
-- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1483
|
+
|
|
1484
|
+
It will also be reported to Codecov from any non-release CI jobs.
|
|
1485
|
+
|
|
1486
|
+
To measure coverage in a development environment, *yarl* can be
|
|
1487
|
+
installed in editable mode:
|
|
1488
|
+
|
|
1489
|
+
.. code-block:: console
|
|
1490
|
+
|
|
1491
|
+
$ python -Im pip install -e .
|
|
1492
|
+
|
|
1493
|
+
Editable install produces C-files required for the Cython coverage
|
|
1494
|
+
plugin to map the measurements back to the PYX-files.
|
|
1495
|
+
|
|
1496
|
+
`#961 <https://github.com/aio-libs/yarl/issues/961>`__
|
|
1497
|
+
|
|
1498
|
+
- It is now possible to request line tracing in Cython builds using the
|
|
1499
|
+
``with-cython-tracing`` `PEP 517 <https://peps.python.org/pep-517>`__ config setting
|
|
1500
|
+
-- `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1501
|
+
|
|
1502
|
+
This can be used in CI and development environment to measure coverage
|
|
1503
|
+
on Cython modules, but is not normally useful to the end-users or
|
|
1504
|
+
downstream packagers.
|
|
1505
|
+
|
|
1506
|
+
Here's a usage example:
|
|
1507
|
+
|
|
1508
|
+
.. code-block:: console
|
|
1509
|
+
|
|
1510
|
+
$ python -Im pip install . --config-settings=with-cython-tracing=true
|
|
1511
|
+
|
|
1512
|
+
For editable installs, this setting is on by default. Otherwise, it's
|
|
1513
|
+
off unless requested explicitly.
|
|
1514
|
+
|
|
1515
|
+
The following produces C-files required for the Cython coverage
|
|
1516
|
+
plugin to map the measurements back to the PYX-files:
|
|
1517
|
+
|
|
1518
|
+
.. code-block:: console
|
|
1519
|
+
|
|
1520
|
+
$ python -Im pip install -e .
|
|
1521
|
+
|
|
1522
|
+
Alternatively, the ``YARL_CYTHON_TRACING=1`` environment variable
|
|
1523
|
+
can be set to do the same as the `PEP 517 <https://peps.python.org/pep-517>`__ config setting.
|
|
1524
|
+
|
|
1525
|
+
`#962 <https://github.com/aio-libs/yarl/issues/962>`__
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
1.9.3 (2023-11-20)
|
|
1529
|
+
==================
|
|
1530
|
+
|
|
1531
|
+
Bug fixes
|
|
1532
|
+
---------
|
|
1533
|
+
|
|
1534
|
+
- Stopped dropping trailing slashes in ``yarl.URL.joinpath()`` -- by `@gmacon <https://github.com/sponsors/gmacon>`__. (`#862 <https://github.com/aio-libs/yarl/issues/862>`__, `#866 <https://github.com/aio-libs/yarl/issues/866>`__)
|
|
1535
|
+
- Started accepting string subclasses in ``yarl.URL.__truediv__()`` operations (``URL / segment``) -- by `@mjpieters <https://github.com/sponsors/mjpieters>`__. (`#871 <https://github.com/aio-libs/yarl/issues/871>`__, `#884 <https://github.com/aio-libs/yarl/issues/884>`__)
|
|
1536
|
+
- Fixed the human representation of URLs with square brackets in usernames and passwords -- by `@mjpieters <https://github.com/sponsors/mjpieters>`__. (`#876 <https://github.com/aio-libs/yarl/issues/876>`__, `#882 <https://github.com/aio-libs/yarl/issues/882>`__)
|
|
1537
|
+
- Updated type hints to include ``URL.missing_port()``, ``URL.__bytes__()``
|
|
1538
|
+
and the ``encoding`` argument to ``yarl.URL.joinpath()``
|
|
1539
|
+
-- by `@mjpieters <https://github.com/sponsors/mjpieters>`__. (`#891 <https://github.com/aio-libs/yarl/issues/891>`__)
|
|
1540
|
+
|
|
1541
|
+
|
|
1542
|
+
Packaging updates and notes for downstreams
|
|
1543
|
+
-------------------------------------------
|
|
1544
|
+
|
|
1545
|
+
- Integrated Cython 3 to enable building *yarl* under Python 3.12 -- by `@mjpieters <https://github.com/sponsors/mjpieters>`__. (`#829 <https://github.com/aio-libs/yarl/issues/829>`__, `#881 <https://github.com/aio-libs/yarl/issues/881>`__)
|
|
1546
|
+
- Declared modern ``setuptools.build_meta`` as the `PEP 517 <https://peps.python.org/pep-517>`__ build
|
|
1547
|
+
backend in ``pyproject.toml`` explicitly -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__. (`#886 <https://github.com/aio-libs/yarl/issues/886>`__)
|
|
1548
|
+
- Converted most of the packaging setup into a declarative ``setup.cfg``
|
|
1549
|
+
config -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__. (`#890 <https://github.com/aio-libs/yarl/issues/890>`__)
|
|
1550
|
+
- The packaging is replaced from an old-fashioned ``setup.py`` to an
|
|
1551
|
+
in-tree `PEP 517 <https://peps.python.org/pep-517>`__ build backend -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1552
|
+
|
|
1553
|
+
Whenever the end-users or downstream packagers need to build ``yarl`` from
|
|
1554
|
+
source (a Git checkout or an sdist), they may pass a ``config_settings``
|
|
1555
|
+
flag ``--pure-python``. If this flag is not set, a C-extension will be built
|
|
1556
|
+
and included into the distribution.
|
|
1557
|
+
|
|
1558
|
+
Here is how this can be done with ``pip``:
|
|
1559
|
+
|
|
1560
|
+
.. code-block:: console
|
|
1561
|
+
|
|
1562
|
+
$ python -m pip install . --config-settings=--pure-python=false
|
|
1563
|
+
|
|
1564
|
+
This will also work with ``-e | --editable``.
|
|
1565
|
+
|
|
1566
|
+
The same can be achieved via ``pypa/build``:
|
|
1567
|
+
|
|
1568
|
+
.. code-block:: console
|
|
1569
|
+
|
|
1570
|
+
$ python -m build --config-setting=--pure-python=false
|
|
1571
|
+
|
|
1572
|
+
Adding ``-w | --wheel`` can force ``pypa/build`` produce a wheel from source
|
|
1573
|
+
directly, as opposed to building an ``sdist`` and then building from it. (`#893 <https://github.com/aio-libs/yarl/issues/893>`__)
|
|
1574
|
+
|
|
1575
|
+
.. attention::
|
|
1576
|
+
|
|
1577
|
+
v1.9.3 was the only version using the ``--pure-python`` setting name.
|
|
1578
|
+
Later versions dropped the ``--`` prefix, making it just ``pure-python``.
|
|
1579
|
+
|
|
1580
|
+
- Declared Python 3.12 supported officially in the distribution package metadata
|
|
1581
|
+
-- by `@edgarrmondragon <https://github.com/sponsors/edgarrmondragon>`__. (`#942 <https://github.com/aio-libs/yarl/issues/942>`__)
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
Contributor-facing changes
|
|
1585
|
+
--------------------------
|
|
1586
|
+
|
|
1587
|
+
- A regression test for no-host URLs was added per `#821 <https://github.com/aio-libs/yarl/issues/821>`__
|
|
1588
|
+
and ``3986`` -- by `@kenballus <https://github.com/sponsors/kenballus>`__. (`#821 <https://github.com/aio-libs/yarl/issues/821>`__, `#822 <https://github.com/aio-libs/yarl/issues/822>`__)
|
|
1589
|
+
- Started testing *yarl* against Python 3.12 in CI -- by `@mjpieters <https://github.com/sponsors/mjpieters>`__. (`#881 <https://github.com/aio-libs/yarl/issues/881>`__)
|
|
1590
|
+
- All Python 3.12 jobs are now marked as required to pass in CI
|
|
1591
|
+
-- by `@edgarrmondragon <https://github.com/sponsors/edgarrmondragon>`__. (`#942 <https://github.com/aio-libs/yarl/issues/942>`__)
|
|
1592
|
+
- MyST is now integrated in Sphinx -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.
|
|
1593
|
+
|
|
1594
|
+
This allows the contributors to author new documents in Markdown
|
|
1595
|
+
when they have difficulties with going straight RST. (`#953 <https://github.com/aio-libs/yarl/issues/953>`__)
|
|
1596
|
+
|
|
1597
|
+
|
|
1598
|
+
1.9.2 (2023-04-25)
|
|
1599
|
+
==================
|
|
1600
|
+
|
|
1601
|
+
Bugfixes
|
|
1602
|
+
--------
|
|
1603
|
+
|
|
1604
|
+
- Fix regression with ``yarl.URL.__truediv__()`` and absolute URLs with empty paths causing the raw path to lack the leading ``/``.
|
|
1605
|
+
(`#854 <https://github.com/aio-libs/yarl/issues/854>`_)
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
1.9.1 (2023-04-21)
|
|
1609
|
+
==================
|
|
1610
|
+
|
|
1611
|
+
Bugfixes
|
|
1612
|
+
--------
|
|
1613
|
+
|
|
1614
|
+
- Marked tests that fail on older Python patch releases (< 3.7.10, < 3.8.8 and < 3.9.2) as expected to fail due to missing a security fix for CVE-2021-23336. (`#850 <https://github.com/aio-libs/yarl/issues/850>`_)
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
1.9.0 (2023-04-19)
|
|
1618
|
+
==================
|
|
1619
|
+
|
|
1620
|
+
This release was never published to PyPI, due to issues with the build process.
|
|
1621
|
+
|
|
1622
|
+
Features
|
|
1623
|
+
--------
|
|
1624
|
+
|
|
1625
|
+
- Added ``URL.joinpath(*elements)``, to create a new URL appending multiple path elements. (`#704 <https://github.com/aio-libs/yarl/issues/704>`_)
|
|
1626
|
+
- Made ``URL.__truediv__()()`` return ``NotImplemented`` if called with an
|
|
1627
|
+
unsupported type — by `@michaeljpeters <https://github.com/sponsors/michaeljpeters>`__.
|
|
1628
|
+
(`#832 <https://github.com/aio-libs/yarl/issues/832>`_)
|
|
1629
|
+
|
|
1630
|
+
|
|
1631
|
+
Bugfixes
|
|
1632
|
+
--------
|
|
1633
|
+
|
|
1634
|
+
- Path normalization for absolute URLs no longer raises a ValueError exception
|
|
1635
|
+
when ``..`` segments would otherwise go beyond the URL path root.
|
|
1636
|
+
(`#536 <https://github.com/aio-libs/yarl/issues/536>`_)
|
|
1637
|
+
- Fixed an issue with update_query() not getting rid of the query when argument is None. (`#792 <https://github.com/aio-libs/yarl/issues/792>`_)
|
|
1638
|
+
- Added some input restrictions on with_port() function to prevent invalid boolean inputs or out of valid port inputs; handled incorrect 0 port representation. (`#793 <https://github.com/aio-libs/yarl/issues/793>`_)
|
|
1639
|
+
- Made ``yarl.URL.build()`` raise a ``TypeError`` if the ``host`` argument is ``None`` — by `@paulpapacz <https://github.com/sponsors/paulpapacz>`__. (`#808 <https://github.com/aio-libs/yarl/issues/808>`_)
|
|
1640
|
+
- Fixed an issue with ``update_query()`` getting rid of the query when the argument
|
|
1641
|
+
is empty but not ``None``. (`#845 <https://github.com/aio-libs/yarl/issues/845>`_)
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
Misc
|
|
1645
|
+
----
|
|
1646
|
+
|
|
1647
|
+
- `#220 <https://github.com/aio-libs/yarl/issues/220>`_
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
1.8.2 (2022-12-03)
|
|
1651
|
+
==================
|
|
1652
|
+
|
|
1653
|
+
This is the first release that started shipping wheels for Python 3.11.
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
1.8.1 (2022-08-01)
|
|
1657
|
+
==================
|
|
1658
|
+
|
|
1659
|
+
Misc
|
|
1660
|
+
----
|
|
1661
|
+
|
|
1662
|
+
- `#694 <https://github.com/aio-libs/yarl/issues/694>`_, `#699 <https://github.com/aio-libs/yarl/issues/699>`_, `#700 <https://github.com/aio-libs/yarl/issues/700>`_, `#701 <https://github.com/aio-libs/yarl/issues/701>`_, `#702 <https://github.com/aio-libs/yarl/issues/702>`_, `#703 <https://github.com/aio-libs/yarl/issues/703>`_, `#739 <https://github.com/aio-libs/yarl/issues/739>`_
|
|
1663
|
+
|
|
1664
|
+
|
|
1665
|
+
1.8.0 (2022-08-01)
|
|
1666
|
+
==================
|
|
1667
|
+
|
|
1668
|
+
Features
|
|
1669
|
+
--------
|
|
1670
|
+
|
|
1671
|
+
- Added ``URL.raw_suffix``, ``URL.suffix``, ``URL.raw_suffixes``, ``URL.suffixes``, ``URL.with_suffix``. (`#613 <https://github.com/aio-libs/yarl/issues/613>`_)
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
Improved Documentation
|
|
1675
|
+
----------------------
|
|
1676
|
+
|
|
1677
|
+
- Fixed broken internal references to ``yarl.URL.human_repr()``.
|
|
1678
|
+
(`#665 <https://github.com/aio-libs/yarl/issues/665>`_)
|
|
1679
|
+
- Fixed broken external references to ``multidict:index`` docs. (`#665 <https://github.com/aio-libs/yarl/issues/665>`_)
|
|
1680
|
+
|
|
1681
|
+
|
|
1682
|
+
Deprecations and Removals
|
|
1683
|
+
-------------------------
|
|
1684
|
+
|
|
1685
|
+
- Dropped Python 3.6 support. (`#672 <https://github.com/aio-libs/yarl/issues/672>`_)
|
|
1686
|
+
|
|
1687
|
+
|
|
1688
|
+
Misc
|
|
1689
|
+
----
|
|
1690
|
+
|
|
1691
|
+
- `#646 <https://github.com/aio-libs/yarl/issues/646>`_, `#699 <https://github.com/aio-libs/yarl/issues/699>`_, `#701 <https://github.com/aio-libs/yarl/issues/701>`_
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
1.7.2 (2021-11-01)
|
|
1695
|
+
==================
|
|
1696
|
+
|
|
1697
|
+
Bugfixes
|
|
1698
|
+
--------
|
|
1699
|
+
|
|
1700
|
+
- Changed call in ``with_port()`` to stop reencoding parts of the URL that were already encoded. (`#623 <https://github.com/aio-libs/yarl/issues/623>`_)
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
1.7.1 (2021-10-07)
|
|
1704
|
+
==================
|
|
1705
|
+
|
|
1706
|
+
Bugfixes
|
|
1707
|
+
--------
|
|
1708
|
+
|
|
1709
|
+
- Fix 1.7.0 build error
|
|
1710
|
+
|
|
1711
|
+
1.7.0 (2021-10-06)
|
|
1712
|
+
==================
|
|
1713
|
+
|
|
1714
|
+
Features
|
|
1715
|
+
--------
|
|
1716
|
+
|
|
1717
|
+
- Add ``__bytes__()`` magic method so that ``bytes(url)`` will work and use optimal ASCII encoding.
|
|
1718
|
+
(`#582 <https://github.com/aio-libs/yarl/issues/582>`_)
|
|
1719
|
+
- Started shipping platform-specific arm64 wheels for Apple Silicon. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
|
|
1720
|
+
- Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
|
|
1721
|
+
- Added support for Python 3.10. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
1.6.3 (2020-11-14)
|
|
1725
|
+
==================
|
|
1726
|
+
|
|
1727
|
+
Bugfixes
|
|
1728
|
+
--------
|
|
1729
|
+
|
|
1730
|
+
- No longer loose characters when decoding incorrect percent-sequences (like ``%e2%82%f8``). All non-decodable percent-sequences are now preserved.
|
|
1731
|
+
`#517 <https://github.com/aio-libs/yarl/issues/517>`_
|
|
1732
|
+
- Provide x86 Windows wheels.
|
|
1733
|
+
`#535 <https://github.com/aio-libs/yarl/issues/535>`_
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
----
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
1.6.2 (2020-10-12)
|
|
1740
|
+
==================
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
Bugfixes
|
|
1744
|
+
--------
|
|
1745
|
+
|
|
1746
|
+
- Provide generated ``.c`` files in TarBall distribution.
|
|
1747
|
+
`#530 <https://github.com/aio-libs/multidict/issues/530>`_
|
|
1748
|
+
|
|
1749
|
+
1.6.1 (2020-10-12)
|
|
1750
|
+
==================
|
|
1751
|
+
|
|
1752
|
+
Features
|
|
1753
|
+
--------
|
|
1754
|
+
|
|
1755
|
+
- Provide wheels for ``aarch64``, ``i686``, ``ppc64le``, ``s390x`` architectures on
|
|
1756
|
+
Linux as well as ``x86_64``.
|
|
1757
|
+
`#507 <https://github.com/aio-libs/yarl/issues/507>`_
|
|
1758
|
+
- Provide wheels for Python 3.9.
|
|
1759
|
+
`#526 <https://github.com/aio-libs/yarl/issues/526>`_
|
|
1760
|
+
|
|
1761
|
+
Bugfixes
|
|
1762
|
+
--------
|
|
1763
|
+
|
|
1764
|
+
- ``human_repr()`` now always produces valid representation equivalent to the original URL (if the original URL is valid).
|
|
1765
|
+
`#511 <https://github.com/aio-libs/yarl/issues/511>`_
|
|
1766
|
+
- Fixed requoting a single percent followed by a percent-encoded character in the Cython implementation.
|
|
1767
|
+
`#514 <https://github.com/aio-libs/yarl/issues/514>`_
|
|
1768
|
+
- Fix ValueError when decoding ``%`` which is not followed by two hexadecimal digits.
|
|
1769
|
+
`#516 <https://github.com/aio-libs/yarl/issues/516>`_
|
|
1770
|
+
- Fix decoding ``%`` followed by a space and hexadecimal digit.
|
|
1771
|
+
`#520 <https://github.com/aio-libs/yarl/issues/520>`_
|
|
1772
|
+
- Fix annotation of ``with_query()``/``update_query()`` methods for ``key=[val1, val2]`` case.
|
|
1773
|
+
`#528 <https://github.com/aio-libs/yarl/issues/528>`_
|
|
1774
|
+
|
|
1775
|
+
Removal
|
|
1776
|
+
-------
|
|
1777
|
+
|
|
1778
|
+
- Drop Python 3.5 support; Python 3.6 is the minimal supported Python version.
|
|
1779
|
+
|
|
1780
|
+
|
|
1781
|
+
----
|
|
1782
|
+
|
|
1783
|
+
|
|
1784
|
+
1.6.0 (2020-09-23)
|
|
1785
|
+
==================
|
|
1786
|
+
|
|
1787
|
+
Features
|
|
1788
|
+
--------
|
|
1789
|
+
|
|
1790
|
+
- Allow for int and float subclasses in query, while still denying bool.
|
|
1791
|
+
`#492 <https://github.com/aio-libs/yarl/issues/492>`_
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
Bugfixes
|
|
1795
|
+
--------
|
|
1796
|
+
|
|
1797
|
+
- Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator.
|
|
1798
|
+
`#502 <https://github.com/aio-libs/yarl/issues/502>`_
|
|
1799
|
+
- Keep IPv6 brackets in ``origin()``.
|
|
1800
|
+
`#504 <https://github.com/aio-libs/yarl/issues/504>`_
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
----
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
1.5.1 (2020-08-01)
|
|
1807
|
+
==================
|
|
1808
|
+
|
|
1809
|
+
Bugfixes
|
|
1810
|
+
--------
|
|
1811
|
+
|
|
1812
|
+
- Fix including relocated internal ``yarl._quoting_c`` C-extension into published PyPI dists.
|
|
1813
|
+
`#485 <https://github.com/aio-libs/yarl/issues/485>`_
|
|
1814
|
+
|
|
1815
|
+
|
|
1816
|
+
Misc
|
|
1817
|
+
----
|
|
1818
|
+
|
|
1819
|
+
- `#484 <https://github.com/aio-libs/yarl/issues/484>`_
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
----
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
1.5.0 (2020-07-26)
|
|
1826
|
+
==================
|
|
1827
|
+
|
|
1828
|
+
Features
|
|
1829
|
+
--------
|
|
1830
|
+
|
|
1831
|
+
- Convert host to lowercase on URL building.
|
|
1832
|
+
`#386 <https://github.com/aio-libs/yarl/issues/386>`_
|
|
1833
|
+
- Allow using ``mod`` operator (``%``) for updating query string (an alias for ``update_query()`` method).
|
|
1834
|
+
`#435 <https://github.com/aio-libs/yarl/issues/435>`_
|
|
1835
|
+
- Allow use of sequences such as ``list`` and ``tuple`` in the values
|
|
1836
|
+
of a mapping such as ``dict`` to represent that a key has many values::
|
|
1837
|
+
|
|
1838
|
+
url = URL("http://example.com")
|
|
1839
|
+
assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")
|
|
1840
|
+
|
|
1841
|
+
`#443 <https://github.com/aio-libs/yarl/issues/443>`_
|
|
1842
|
+
- Support ``URL.build()`` with scheme and path (creates a relative URL).
|
|
1843
|
+
`#464 <https://github.com/aio-libs/yarl/issues/464>`_
|
|
1844
|
+
- Cache slow IDNA encode/decode calls.
|
|
1845
|
+
`#476 <https://github.com/aio-libs/yarl/issues/476>`_
|
|
1846
|
+
- Add ``@final`` / ``Final`` type hints
|
|
1847
|
+
`#477 <https://github.com/aio-libs/yarl/issues/477>`_
|
|
1848
|
+
- Support URL authority/raw_authority properties and authority argument of ``URL.build()`` method.
|
|
1849
|
+
`#478 <https://github.com/aio-libs/yarl/issues/478>`_
|
|
1850
|
+
- Hide the library implementation details, make the exposed public list very clean.
|
|
1851
|
+
`#483 <https://github.com/aio-libs/yarl/issues/483>`_
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
Bugfixes
|
|
1855
|
+
--------
|
|
1856
|
+
|
|
1857
|
+
- Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+).
|
|
1858
|
+
`#409 <https://github.com/aio-libs/yarl/issues/409>`_
|
|
1859
|
+
- Fix a bug where query component, passed in a form of mapping or sequence, is unquoted in unexpected way.
|
|
1860
|
+
`#426 <https://github.com/aio-libs/yarl/issues/426>`_
|
|
1861
|
+
- Hide ``Query`` and ``QueryVariable`` type aliases in ``__init__.pyi``, now they are prefixed with underscore.
|
|
1862
|
+
`#431 <https://github.com/aio-libs/yarl/issues/431>`_
|
|
1863
|
+
- Keep IPv6 brackets after updating port/user/password.
|
|
1864
|
+
`#451 <https://github.com/aio-libs/yarl/issues/451>`_
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
----
|
|
1868
|
+
|
|
1869
|
+
|
|
1870
|
+
1.4.2 (2019-12-05)
|
|
1871
|
+
==================
|
|
1872
|
+
|
|
1873
|
+
Features
|
|
1874
|
+
--------
|
|
1875
|
+
|
|
1876
|
+
- Workaround for missing ``str.isascii()`` in Python 3.6
|
|
1877
|
+
`#389 <https://github.com/aio-libs/yarl/issues/389>`_
|
|
1878
|
+
|
|
1879
|
+
|
|
1880
|
+
----
|
|
1881
|
+
|
|
1882
|
+
|
|
1883
|
+
1.4.1 (2019-11-29)
|
|
1884
|
+
==================
|
|
1885
|
+
|
|
1886
|
+
* Fix regression, make the library work on Python 3.5 and 3.6 again.
|
|
1887
|
+
|
|
1888
|
+
1.4.0 (2019-11-29)
|
|
1889
|
+
==================
|
|
1890
|
+
|
|
1891
|
+
* Distinguish an empty password in URL from a password not provided at all (#262)
|
|
1892
|
+
|
|
1893
|
+
* Fixed annotations for optional parameters of ``URL.build`` (#309)
|
|
1894
|
+
|
|
1895
|
+
* Use None as default value of ``user`` parameter of ``URL.build`` (#309)
|
|
1896
|
+
|
|
1897
|
+
* Enforce building C Accelerated modules when installing from source tarball, use
|
|
1898
|
+
``YARL_NO_EXTENSIONS`` environment variable for falling back to (slower) Pure Python
|
|
1899
|
+
implementation (#329)
|
|
1900
|
+
|
|
1901
|
+
* Drop Python 3.5 support
|
|
1902
|
+
|
|
1903
|
+
* Fix quoting of plus in path by pure python version (#339)
|
|
1904
|
+
|
|
1905
|
+
* Don't create a new URL if fragment is unchanged (#292)
|
|
1906
|
+
|
|
1907
|
+
* Included in error message the path that produces starting slash forbidden error (#376)
|
|
1908
|
+
|
|
1909
|
+
* Skip slow IDNA encoding for ASCII-only strings (#387)
|
|
1910
|
+
|
|
1911
|
+
|
|
1912
|
+
1.3.0 (2018-12-11)
|
|
1913
|
+
==================
|
|
1914
|
+
|
|
1915
|
+
* Fix annotations for ``query`` parameter (#207)
|
|
1916
|
+
|
|
1917
|
+
* An incoming query sequence can have int variables (the same as for
|
|
1918
|
+
Mapping type) (#208)
|
|
1919
|
+
|
|
1920
|
+
* Add ``URL.explicit_port`` property (#218)
|
|
1921
|
+
|
|
1922
|
+
* Give a friendlier error when port can't be converted to int (#168)
|
|
1923
|
+
|
|
1924
|
+
* ``bool(URL())`` now returns ``False`` (#272)
|
|
1925
|
+
|
|
1926
|
+
1.2.6 (2018-06-14)
|
|
1927
|
+
==================
|
|
1928
|
+
|
|
1929
|
+
* Drop Python 3.4 trove classifier (#205)
|
|
1930
|
+
|
|
1931
|
+
1.2.5 (2018-05-23)
|
|
1932
|
+
==================
|
|
1933
|
+
|
|
1934
|
+
* Fix annotations for ``build`` (#199)
|
|
1935
|
+
|
|
1936
|
+
1.2.4 (2018-05-08)
|
|
1937
|
+
==================
|
|
1938
|
+
|
|
1939
|
+
* Fix annotations for ``cached_property`` (#195)
|
|
1940
|
+
|
|
1941
|
+
1.2.3 (2018-05-03)
|
|
1942
|
+
==================
|
|
1943
|
+
|
|
1944
|
+
* Accept ``str`` subclasses in ``URL`` constructor (#190)
|
|
1945
|
+
|
|
1946
|
+
1.2.2 (2018-05-01)
|
|
1947
|
+
==================
|
|
1948
|
+
|
|
1949
|
+
* Fix build
|
|
1950
|
+
|
|
1951
|
+
1.2.1 (2018-04-30)
|
|
1952
|
+
==================
|
|
1953
|
+
|
|
1954
|
+
* Pin minimal required Python to 3.5.3 (#189)
|
|
1955
|
+
|
|
1956
|
+
1.2.0 (2018-04-30)
|
|
1957
|
+
==================
|
|
1958
|
+
|
|
1959
|
+
* Forbid inheritance, replace ``__init__`` with ``__new__`` (#171)
|
|
1960
|
+
|
|
1961
|
+
* Support PEP-561 (provide type hinting marker) (#182)
|
|
1962
|
+
|
|
1963
|
+
1.1.1 (2018-02-17)
|
|
1964
|
+
==================
|
|
1965
|
+
|
|
1966
|
+
* Fix performance regression: don't encode empty ``netloc`` (#170)
|
|
1967
|
+
|
|
1968
|
+
1.1.0 (2018-01-21)
|
|
1969
|
+
==================
|
|
1970
|
+
|
|
1971
|
+
* Make pure Python quoter consistent with Cython version (#162)
|
|
1972
|
+
|
|
1973
|
+
1.0.0 (2018-01-15)
|
|
1974
|
+
==================
|
|
1975
|
+
|
|
1976
|
+
* Use fast path if quoted string does not need requoting (#154)
|
|
1977
|
+
|
|
1978
|
+
* Speed up quoting/unquoting by ``_Quoter`` and ``_Unquoter`` classes (#155)
|
|
1979
|
+
|
|
1980
|
+
* Drop ``yarl.quote`` and ``yarl.unquote`` public functions (#155)
|
|
1981
|
+
|
|
1982
|
+
* Add custom string writer, reuse static buffer if available (#157)
|
|
1983
|
+
Code is 50-80 times faster than Pure Python version (was 4-5 times faster)
|
|
1984
|
+
|
|
1985
|
+
* Don't recode IP zone (#144)
|
|
1986
|
+
|
|
1987
|
+
* Support ``encoded=True`` in ``yarl.URL.build()`` (#158)
|
|
1988
|
+
|
|
1989
|
+
* Fix updating query with multiple keys (#160)
|
|
1990
|
+
|
|
1991
|
+
0.18.0 (2018-01-10)
|
|
1992
|
+
===================
|
|
1993
|
+
|
|
1994
|
+
* Fallback to IDNA 2003 if domain name is not IDNA 2008 compatible (#152)
|
|
1995
|
+
|
|
1996
|
+
0.17.0 (2017-12-30)
|
|
1997
|
+
===================
|
|
1998
|
+
|
|
1999
|
+
* Use IDNA 2008 for domain name processing (#149)
|
|
2000
|
+
|
|
2001
|
+
0.16.0 (2017-12-07)
|
|
2002
|
+
===================
|
|
2003
|
+
|
|
2004
|
+
* Fix raising ``TypeError`` by ``url.query_string()`` after
|
|
2005
|
+
``url.with_query({})`` (empty mapping) (#141)
|
|
2006
|
+
|
|
2007
|
+
0.15.0 (2017-11-23)
|
|
2008
|
+
===================
|
|
2009
|
+
|
|
2010
|
+
* Add ``raw_path_qs`` attribute (#137)
|
|
2011
|
+
|
|
2012
|
+
0.14.2 (2017-11-14)
|
|
2013
|
+
===================
|
|
2014
|
+
|
|
2015
|
+
* Restore ``strict`` parameter as no-op in ``quote`` / ``unquote``
|
|
2016
|
+
|
|
2017
|
+
0.14.1 (2017-11-13)
|
|
2018
|
+
===================
|
|
2019
|
+
|
|
2020
|
+
* Restore ``strict`` parameter as no-op for sake of compatibility with
|
|
2021
|
+
aiohttp 2.2
|
|
2022
|
+
|
|
2023
|
+
0.14.0 (2017-11-11)
|
|
2024
|
+
===================
|
|
2025
|
+
|
|
2026
|
+
* Drop strict mode (#123)
|
|
2027
|
+
|
|
2028
|
+
* Fix ``"ValueError: Unallowed PCT %"`` when there's a ``"%"`` in the URL (#124)
|
|
2029
|
+
|
|
2030
|
+
0.13.0 (2017-10-01)
|
|
2031
|
+
===================
|
|
2032
|
+
|
|
2033
|
+
* Document ``encoded`` parameter (#102)
|
|
2034
|
+
|
|
2035
|
+
* Support relative URLs like ``'?key=value'`` (#100)
|
|
2036
|
+
|
|
2037
|
+
* Unsafe encoding for QS fixed. Encode ``;`` character in value parameter (#104)
|
|
2038
|
+
|
|
2039
|
+
* Process passwords without user names (#95)
|
|
2040
|
+
|
|
2041
|
+
0.12.0 (2017-06-26)
|
|
2042
|
+
===================
|
|
2043
|
+
|
|
2044
|
+
* Properly support paths without leading slash in ``URL.with_path()`` (#90)
|
|
2045
|
+
|
|
2046
|
+
* Enable type annotation checks
|
|
2047
|
+
|
|
2048
|
+
0.11.0 (2017-06-26)
|
|
2049
|
+
===================
|
|
2050
|
+
|
|
2051
|
+
* Normalize path (#86)
|
|
2052
|
+
|
|
2053
|
+
* Clear query and fragment parts in ``.with_path()`` (#85)
|
|
2054
|
+
|
|
2055
|
+
0.10.3 (2017-06-13)
|
|
2056
|
+
===================
|
|
2057
|
+
|
|
2058
|
+
* Prevent double URL arguments unquoting (#83)
|
|
2059
|
+
|
|
2060
|
+
0.10.2 (2017-05-05)
|
|
2061
|
+
===================
|
|
2062
|
+
|
|
2063
|
+
* Unexpected hash behavior (#75)
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
0.10.1 (2017-05-03)
|
|
2067
|
+
===================
|
|
2068
|
+
|
|
2069
|
+
* Unexpected compare behavior (#73)
|
|
2070
|
+
|
|
2071
|
+
* Do not quote or unquote + if not a query string. (#74)
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
0.10.0 (2017-03-14)
|
|
2075
|
+
===================
|
|
2076
|
+
|
|
2077
|
+
* Added ``URL.build`` class method (#58)
|
|
2078
|
+
|
|
2079
|
+
* Added ``path_qs`` attribute (#42)
|
|
2080
|
+
|
|
2081
|
+
|
|
2082
|
+
0.9.8 (2017-02-16)
|
|
2083
|
+
==================
|
|
2084
|
+
|
|
2085
|
+
* Do not quote ``:`` in path
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
0.9.7 (2017-02-16)
|
|
2089
|
+
==================
|
|
2090
|
+
|
|
2091
|
+
* Load from pickle without _cache (#56)
|
|
2092
|
+
|
|
2093
|
+
* Percent-encoded pluses in path variables become spaces (#59)
|
|
2094
|
+
|
|
2095
|
+
|
|
2096
|
+
0.9.6 (2017-02-15)
|
|
2097
|
+
==================
|
|
2098
|
+
|
|
2099
|
+
* Revert backward incompatible change (BaseURL)
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
0.9.5 (2017-02-14)
|
|
2103
|
+
==================
|
|
2104
|
+
|
|
2105
|
+
* Fix BaseURL rich comparison support
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
0.9.4 (2017-02-14)
|
|
2109
|
+
==================
|
|
2110
|
+
|
|
2111
|
+
* Use BaseURL
|
|
2112
|
+
|
|
2113
|
+
|
|
2114
|
+
0.9.3 (2017-02-14)
|
|
2115
|
+
==================
|
|
2116
|
+
|
|
2117
|
+
* Added BaseURL
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
0.9.2 (2017-02-08)
|
|
2121
|
+
==================
|
|
2122
|
+
|
|
2123
|
+
* Remove debug print
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
0.9.1 (2017-02-07)
|
|
2127
|
+
==================
|
|
2128
|
+
|
|
2129
|
+
* Do not lose tail chars (#45)
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
0.9.0 (2017-02-07)
|
|
2133
|
+
==================
|
|
2134
|
+
|
|
2135
|
+
* Allow to quote ``%`` in non strict mode (#21)
|
|
2136
|
+
|
|
2137
|
+
* Incorrect parsing of query parameters with %3B (;) inside (#34)
|
|
2138
|
+
|
|
2139
|
+
* Fix core dumps (#41)
|
|
2140
|
+
|
|
2141
|
+
* ``tmpbuf`` - compiling error (#43)
|
|
2142
|
+
|
|
2143
|
+
* Added ``URL.update_path()`` method
|
|
2144
|
+
|
|
2145
|
+
* Added ``URL.update_query()`` method (#47)
|
|
2146
|
+
|
|
2147
|
+
|
|
2148
|
+
0.8.1 (2016-12-03)
|
|
2149
|
+
==================
|
|
2150
|
+
|
|
2151
|
+
* Fix broken aiohttp: revert back ``quote`` / ``unquote``.
|
|
2152
|
+
|
|
2153
|
+
|
|
2154
|
+
0.8.0 (2016-12-03)
|
|
2155
|
+
==================
|
|
2156
|
+
|
|
2157
|
+
* Support more verbose error messages in ``.with_query()`` (#24)
|
|
2158
|
+
|
|
2159
|
+
* Don't percent-encode ``@`` and ``:`` in path (#32)
|
|
2160
|
+
|
|
2161
|
+
* Don't expose ``yarl.quote`` and ``yarl.unquote``, these functions are
|
|
2162
|
+
part of private API
|
|
2163
|
+
|
|
2164
|
+
0.7.1 (2016-11-18)
|
|
2165
|
+
==================
|
|
2166
|
+
|
|
2167
|
+
* Accept not only ``str`` but all classes inherited from ``str`` also (#25)
|
|
2168
|
+
|
|
2169
|
+
0.7.0 (2016-11-07)
|
|
2170
|
+
==================
|
|
2171
|
+
|
|
2172
|
+
* Accept ``int`` as value for ``.with_query()``
|
|
2173
|
+
|
|
2174
|
+
0.6.0 (2016-11-07)
|
|
2175
|
+
==================
|
|
2176
|
+
|
|
2177
|
+
* Explicitly use UTF8 encoding in ``setup.py`` (#20)
|
|
2178
|
+
* Properly unquote non-UTF8 strings (#19)
|
|
2179
|
+
|
|
2180
|
+
0.5.3 (2016-11-02)
|
|
2181
|
+
==================
|
|
2182
|
+
|
|
2183
|
+
* Don't use ``typing.NamedTuple`` fields but indexes on URL construction
|
|
2184
|
+
|
|
2185
|
+
0.5.2 (2016-11-02)
|
|
2186
|
+
==================
|
|
2187
|
+
|
|
2188
|
+
* Inline ``_encode`` class method
|
|
2189
|
+
|
|
2190
|
+
0.5.1 (2016-11-02)
|
|
2191
|
+
==================
|
|
2192
|
+
|
|
2193
|
+
* Make URL construction faster by removing extra classmethod calls
|
|
2194
|
+
|
|
2195
|
+
0.5.0 (2016-11-02)
|
|
2196
|
+
==================
|
|
2197
|
+
|
|
2198
|
+
* Add Cython optimization for quoting/unquoting
|
|
2199
|
+
* Provide binary wheels
|
|
2200
|
+
|
|
2201
|
+
0.4.3 (2016-09-29)
|
|
2202
|
+
==================
|
|
2203
|
+
|
|
2204
|
+
* Fix typing stubs
|
|
2205
|
+
|
|
2206
|
+
0.4.2 (2016-09-29)
|
|
2207
|
+
==================
|
|
2208
|
+
|
|
2209
|
+
* Expose ``quote()`` and ``unquote()`` as public API
|
|
2210
|
+
|
|
2211
|
+
0.4.1 (2016-09-28)
|
|
2212
|
+
==================
|
|
2213
|
+
|
|
2214
|
+
* Support empty values in query (``'/path?arg'``)
|
|
2215
|
+
|
|
2216
|
+
0.4.0 (2016-09-27)
|
|
2217
|
+
==================
|
|
2218
|
+
|
|
2219
|
+
* Introduce ``relative()`` (#16)
|
|
2220
|
+
|
|
2221
|
+
0.3.2 (2016-09-27)
|
|
2222
|
+
==================
|
|
2223
|
+
|
|
2224
|
+
* Typo fixes #15
|
|
2225
|
+
|
|
2226
|
+
0.3.1 (2016-09-26)
|
|
2227
|
+
==================
|
|
2228
|
+
|
|
2229
|
+
* Support sequence of pairs as ``with_query()`` parameter
|
|
2230
|
+
|
|
2231
|
+
0.3.0 (2016-09-26)
|
|
2232
|
+
==================
|
|
2233
|
+
|
|
2234
|
+
* Introduce ``is_default_port()``
|
|
2235
|
+
|
|
2236
|
+
0.2.1 (2016-09-26)
|
|
2237
|
+
==================
|
|
2238
|
+
|
|
2239
|
+
* Raise ValueError for URLs like 'http://:8080/'
|
|
2240
|
+
|
|
2241
|
+
0.2.0 (2016-09-18)
|
|
2242
|
+
==================
|
|
2243
|
+
|
|
2244
|
+
* Avoid doubling slashes when joining paths (#13)
|
|
2245
|
+
|
|
2246
|
+
* Appending path starting from slash is forbidden (#12)
|
|
2247
|
+
|
|
2248
|
+
0.1.4 (2016-09-09)
|
|
2249
|
+
==================
|
|
2250
|
+
|
|
2251
|
+
* Add ``kwargs`` support for ``with_query()`` (#10)
|
|
2252
|
+
|
|
2253
|
+
0.1.3 (2016-09-07)
|
|
2254
|
+
==================
|
|
2255
|
+
|
|
2256
|
+
* Document ``with_query()``, ``with_fragment()`` and ``origin()``
|
|
2257
|
+
|
|
2258
|
+
* Allow ``None`` for ``with_query()`` and ``with_fragment()``
|
|
2259
|
+
|
|
2260
|
+
0.1.2 (2016-09-07)
|
|
2261
|
+
==================
|
|
2262
|
+
|
|
2263
|
+
* Fix links, tune docs theme.
|
|
2264
|
+
|
|
2265
|
+
0.1.1 (2016-09-06)
|
|
2266
|
+
==================
|
|
2267
|
+
|
|
2268
|
+
* Update README, old version used obsolete API
|
|
2269
|
+
|
|
2270
|
+
0.1.0 (2016-09-06)
|
|
2271
|
+
==================
|
|
2272
|
+
|
|
2273
|
+
* The library was deeply refactored, bytes are gone away but all
|
|
2274
|
+
accepted strings are encoded if needed.
|
|
2275
|
+
|
|
2276
|
+
0.0.1 (2016-08-30)
|
|
2277
|
+
==================
|
|
2278
|
+
|
|
2279
|
+
* The first release.
|