Skip to main content

Yet another URL library

Project description

yarl

The module provides handy URL class for URL parsing and changing.

https://github.com/aio-libs/yarl/workflows/CI/badge.svg Codecov coverage for the pytest-driven measurements https://img.shields.io/endpoint?url=https://codspeed.io/badge.json https://badge.fury.io/py/yarl.svg https://readthedocs.org/projects/yarl/badge/?version=latest https://img.shields.io/pypi/pyversions/yarl.svg Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Introduction

Url is constructed from str:

>>> from yarl import URL
>>> url = URL('https://www.python.org/~guido?arg=1#frag')
>>> url
URL('https://www.python.org/~guido?arg=1#frag')

All url parts: scheme, user, password, host, port, path, query and fragment are accessible by properties:

>>> url.scheme
'https'
>>> url.host
'www.python.org'
>>> url.path
'/~guido'
>>> url.query_string
'arg=1'
>>> url.query
<MultiDictProxy('arg': '1')>
>>> url.fragment
'frag'

All url manipulations produce a new url object:

>>> url = URL('https://www.python.org')
>>> url / 'foo' / 'bar'
URL('https://www.python.org/foo/bar')
>>> url / 'foo' % {'bar': 'baz'}
URL('https://www.python.org/foo?bar=baz')

Strings passed to constructor and modification methods are automatically encoded giving canonical representation as result:

>>> url = URL('https://www.python.org/шлях')
>>> url
URL('https://www.python.org/%D1%88%D0%BB%D1%8F%D1%85')

Regular properties are percent-decoded, use raw_ versions for getting encoded strings:

>>> url.path
'/шлях'

>>> url.raw_path
'/%D1%88%D0%BB%D1%8F%D1%85'

Human readable representation of URL is available as .human_repr():

>>> url.human_repr()
'https://www.python.org/шлях'

For full documentation please read https://yarl.aio-libs.org.

Installation

$ pip install yarl

The library is Python 3 only!

PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install yarl on another operating system where wheels are not provided, the tarball will be used to compile the library from the source code. It requires a C compiler and and Python headers installed.

To skip the compilation you must explicitly opt-in by using a PEP 517 configuration setting pure-python, or setting the YARL_NO_EXTENSIONS environment variable to a non-empty value, e.g.:

$ pip install yarl --config-settings=pure-python=false

Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.

Dependencies

YARL requires multidict and propcache libraries.

API documentation

The documentation is located at https://yarl.aio-libs.org.

Why isn’t boolean supported by the URL query API?

There is no standard for boolean representation of boolean values.

Some systems prefer true/false, others like yes/no, on/off, Y/N, 1/0, etc.

yarl cannot make an unambiguous decision on how to serialize bool values because it is specific to how the end-user’s application is built and would be different for different apps. The library doesn’t accept booleans in the API; a user should convert bools into strings using own preferred translation protocol.

Comparison with other URL libraries

  • furl (https://pypi.python.org/pypi/furl)

    The library has rich functionality but the furl object is mutable.

    I’m afraid to pass this object into foreign code: who knows if the code will modify my url in a terrible way while I just want to send URL with handy helpers for accessing URL properties.

    furl has other non-obvious tricky things but the main objection is mutability.

  • URLObject (https://pypi.python.org/pypi/URLObject)

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

    But the library doesn’t do any decode/encode transformations leaving the end user to cope with these gory details.

Source code

The project is hosted on GitHub

Please file an issue on the bug tracker if you have found a bug or have some suggestion in order to improve the library.

Discussion list

aio-libs google group: https://groups.google.com/forum/#!forum/aio-libs

Feel free to post your questions and ideas here.

Authors and License

The yarl package is written by Andrew Svetlov.

It’s Apache 2 licensed and freely available.

Changelog

1.22.0

(2025-10-05)

Features

  • Added arm64 Windows wheel builds – by @finnagin.

    Related issues and pull requests on GitHub: #1516.


1.21.0

(2025-10-05)

Contributor-facing changes

  • The reusable-cibuildwheel.yml workflow has been refactored to be more generic and ci-cd.yml now holds all the configuration toggles – by @webknjaz.

    Related issues and pull requests on GitHub: #1535.

  • When building wheels, the source distribution is now passed directly to the cibuildwheel invocation – by @webknjaz.

    Related issues and pull requests on GitHub: #1536.

  • Added CI for Python 3.14 – by @kumaraditya303.

    Related issues and pull requests on GitHub: #1560.


1.20.1

(2025-06-09)

Bug fixes

  • Started raising a ValueError exception raised for corrupted IPv6 URL values.

    These fixes the issue where exception IndexError was leaking from the internal code because of not being handled and transformed into a user-facing error. The problem was happening under the following conditions: empty IPv6 URL, brackets in reverse order.

    – by @MaelPic.

    Related issues and pull requests on GitHub: #1512.

Packaging updates and notes for downstreams

  • Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1514.

  • Made Cython line tracing opt-in via the with-cython-tracing build config setting – by @bdraco.

    Previously, line tracing was enabled by default in pyproject.toml, which caused build issues for some users and made wheels nearly twice as slow. Now line tracing is only enabled when explicitly requested via pip install . --config-setting=with-cython-tracing=true or by setting the YARL_CYTHON_TRACING environment variable.

    Related issues and pull requests on GitHub: #1521.


1.20.0

(2025-04-16)

Features

  • Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1456.

Packaging updates and notes for downstreams

  • Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1456.


1.19.0

(2025-04-05)

Bug fixes

  • Fixed entire name being re-encoded when using yarl.URL.with_suffix() – by @NTFSvolume.

    Related issues and pull requests on GitHub: #1468.

Features

  • Started building armv7l wheels for manylinux – by @bdraco.

    Related issues and pull requests on GitHub: #1495.

Contributor-facing changes

  • GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.

    Related issues and pull requests on GitHub: #1471.

  • Increased minimum propcache version to 0.2.1 to fix failing tests – by @bdraco.

    Related issues and pull requests on GitHub: #1479.

  • Added all hidden folders to pytest’s norecursedirs to prevent it from trying to collect tests there – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1480.

Miscellaneous internal changes

  • Improved accuracy of type annotations – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1484.

  • Improved performance of parsing query strings – by @bdraco.

    Related issues and pull requests on GitHub: #1493, #1497.

  • Improved performance of the C unquoter – by @bdraco.

    Related issues and pull requests on GitHub: #1496, #1498.


1.18.3

(2024-12-01)

Bug fixes

  • Fixed uppercase ASCII hosts being rejected by URL.build()() and yarl.URL.with_host() – by @bdraco.

    Related issues and pull requests on GitHub: #954, #1442.

Miscellaneous internal changes

  • Improved performances of multiple path properties on cache miss – by @bdraco.

    Related issues and pull requests on GitHub: #1443.


1.18.2

(2024-11-29)

No significant changes.


1.18.1

(2024-11-29)

Miscellaneous internal changes

  • Improved cache performance when ~yarl.URL objects are constructed from yarl.URL.build() with encoded=True – by @bdraco.

    Related issues and pull requests on GitHub: #1432.

  • Improved cache performance for operations that produce a new ~yarl.URL object – by @bdraco.

    Related issues and pull requests on GitHub: #1434, #1436.


1.18.0

(2024-11-21)

Features

  • 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.

    Related issues and pull requests on GitHub: #111, #1421.

Contributor-facing changes

  • Started running downstream aiohttp tests in CI – by @Cycloctane.

    Related issues and pull requests on GitHub: #1415.

Miscellaneous internal changes

  • Improved performance of converting ~yarl.URL to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1422.


1.17.2

(2024-11-17)

Bug fixes

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related issues and pull requests on GitHub: #1411, #1412.

  • Fixed a bug causing ~yarl.URL.port to return the default port when the given port was zero – by @gmacon.

    Related issues and pull requests on GitHub: #1413.

Features

  • Make error messages include details of incorrect type when port is not int in yarl.URL.build(). – by @Cycloctane.

    Related issues and pull requests on GitHub: #1414.

Packaging updates and notes for downstreams

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related issues and pull requests on GitHub: #1411, #1412.

Miscellaneous internal changes

  • Improved performance of the yarl.URL.joinpath() method – by @bdraco.

    Related issues and pull requests on GitHub: #1418.


1.17.1

(2024-10-30)

Miscellaneous internal changes

  • Improved performance of many ~yarl.URL methods – by @bdraco.

    Related issues and pull requests on GitHub: #1396, #1397, #1398.

  • Improved performance of passing a dict or str to yarl.URL.extend_query() – by @bdraco.

    Related issues and pull requests on GitHub: #1401.


1.17.0

(2024-10-28)

Features

  • 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.

    Related issues and pull requests on GitHub: #1375.


1.16.0

(2024-10-21)

Bug fixes

  • 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.

    Related issues and pull requests on GitHub: #1342.

Removals and backward incompatible breaking changes

  • Migrated to using a single cache for encoding hosts – by @bdraco.

    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.

    Related issues and pull requests on GitHub: #1348, #1357, #1363.

Miscellaneous internal changes

  • Improved performance of constructing ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1336.

  • Improved performance of calling yarl.URL.build() and constructing unencoded ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1345.

  • Reworked the internal encoding cache to improve performance on cache hit – by @bdraco.

    Related issues and pull requests on GitHub: #1369.


1.15.5

(2024-10-18)

Miscellaneous internal changes

  • Improved performance of the yarl.URL.joinpath() method – by @bdraco.

    Related issues and pull requests on GitHub: #1304.

  • Improved performance of the yarl.URL.extend_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1305.

  • Improved performance of the yarl.URL.origin() method – by @bdraco.

    Related issues and pull requests on GitHub: #1306.

  • Improved performance of the yarl.URL.with_path() method – by @bdraco.

    Related issues and pull requests on GitHub: #1307.

  • Improved performance of the yarl.URL.with_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1308, #1328.

  • Improved performance of the yarl.URL.update_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1309, #1327.

  • Improved performance of the yarl.URL.join() method – by @bdraco.

    Related issues and pull requests on GitHub: #1313.

  • Improved performance of ~yarl.URL equality checks – by @bdraco.

    Related issues and pull requests on GitHub: #1315.

  • Improved performance of ~yarl.URL methods that modify the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1316.

  • Improved performance of the yarl.URL.with_fragment() method – by @bdraco.

    Related issues and pull requests on GitHub: #1317.

  • Improved performance of calculating the hash of ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1318.

  • Improved performance of the yarl.URL.relative() method – by @bdraco.

    Related issues and pull requests on GitHub: #1319.

  • Improved performance of the yarl.URL.with_name() method – by @bdraco.

    Related issues and pull requests on GitHub: #1320.

  • Improved performance of ~yarl.URL.parent – by @bdraco.

    Related issues and pull requests on GitHub: #1321.

  • Improved performance of the yarl.URL.with_scheme() method – by @bdraco.

    Related issues and pull requests on GitHub: #1322.


1.15.4

(2024-10-16)

Miscellaneous internal changes

  • Improved performance of the quoter when all characters are safe – by @bdraco.

    Related issues and pull requests on GitHub: #1288.

  • Improved performance of unquoting strings – by @bdraco.

    Related issues and pull requests on GitHub: #1292, #1293.

  • Improved performance of calling yarl.URL.build() – by @bdraco.

    Related issues and pull requests on GitHub: #1297.


1.15.3

(2024-10-15)

Bug fixes

  • Fixed yarl.URL.build() failing to validate paths must start with a / when passing authority – by @bdraco.

    The validation only worked correctly when passing host.

    Related issues and pull requests on GitHub: #1265.

Removals and backward incompatible breaking changes

  • Removed support for Python 3.8 as it has reached end of life – by @bdraco.

    Related issues and pull requests on GitHub: #1203.

Miscellaneous internal changes

  • Improved performance of constructing ~yarl.URL when the net location is only the host – by @bdraco.

    Related issues and pull requests on GitHub: #1271.


1.15.2

(2024-10-13)

Miscellaneous internal changes

  • Improved performance of converting ~yarl.URL to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1234.

  • Improved performance of yarl.URL.joinpath() – by @bdraco.

    Related issues and pull requests on GitHub: #1248, #1250.

  • Improved performance of constructing query strings from ~multidict.MultiDict – by @bdraco.

    Related issues and pull requests on GitHub: #1256.

  • Improved performance of constructing query strings with int values – by @bdraco.

    Related issues and pull requests on GitHub: #1259.


1.15.1

(2024-10-12)

Miscellaneous internal changes

  • Improved performance of calling yarl.URL.build() – by @bdraco.

    Related issues and pull requests on GitHub: #1222.

  • Improved performance of all ~yarl.URL methods that create new ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1226.

  • Improved performance of ~yarl.URL methods that modify the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1229.


1.15.0

(2024-10-11)

Bug fixes

  • Fixed validation with yarl.URL.with_scheme() when passed scheme is not lowercase – by @bdraco.

    Related issues and pull requests on GitHub: #1189.

Features

  • Started building armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #1204.

Miscellaneous internal changes

  • Improved performance of constructing unencoded ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1188.

  • Added a cache for parsing hosts to reduce overhead of encoding ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1190.

  • Improved performance of constructing query strings from ~collections.abc.Mapping – by @bdraco.

    Related issues and pull requests on GitHub: #1193.

  • Improved performance of converting ~yarl.URL objects to strings – by @bdraco.

    Related issues and pull requests on GitHub: #1198.


1.14.0

(2024-10-08)

Packaging updates and notes for downstreams

  • Switched to using the propcache package for property caching – by @bdraco.

    The propcache package is derived from the property caching code in yarl and has been broken out to avoid maintaining it for multiple projects.

    Related issues and pull requests on GitHub: #1169.

Contributor-facing changes

  • Started testing with Hypothesis – by @webknjaz and @bdraco.

    Special thanks to @Zac-HD for helping us get started with this framework.

    Related issues and pull requests on GitHub: #860.

Miscellaneous internal changes

  • Improved performance of yarl.URL.is_default_port() when no explicit port is set – by @bdraco.

    Related issues and pull requests on GitHub: #1168.

  • Improved performance of converting ~yarl.URL to a string when no explicit port is set – by @bdraco.

    Related issues and pull requests on GitHub: #1170.

  • Improved performance of the yarl.URL.origin() method – by @bdraco.

    Related issues and pull requests on GitHub: #1175.

  • Improved performance of encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1176.


1.13.1

(2024-09-27)

Miscellaneous internal changes

  • Improved performance of calling yarl.URL.build() with authority – by @bdraco.

    Related issues and pull requests on GitHub: #1163.


1.13.0

(2024-09-26)

Bug fixes

  • Started rejecting ASCII hostnames with invalid characters. For host strings that look like authority strings, the exception message includes advice on what to do instead – by @mjpieters.

    Related issues and pull requests on GitHub: #880, #954.

  • Fixed IPv6 addresses missing brackets when the ~yarl.URL was converted to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1157, #1158.

Features

  • Added ~yarl.URL.host_subcomponent which returns the 3986#section-3.2.2 host subcomponent – by @bdraco.

    The only current practical difference between ~yarl.URL.raw_host and ~yarl.URL.host_subcomponent is that IPv6 addresses are returned bracketed.

    Related issues and pull requests on GitHub: #1159.


1.12.1

(2024-09-23)

No significant changes.


1.12.0

(2024-09-23)

Features

  • Added ~yarl.URL.path_safe to be able to fetch the path without %2F and %25 decoded – by @bdraco.

    Related issues and pull requests on GitHub: #1150.

Removals and backward incompatible breaking changes

  • Restore decoding %2F (/) in URL.path – by @bdraco.

    This change restored the behavior before #1057.

    Related issues and pull requests on GitHub: #1151.

Miscellaneous internal changes

  • Improved performance of processing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1143.


1.11.1

(2024-09-09)

Bug fixes

  • Allowed scheme replacement for relative URLs if the scheme does not require a host – by @bdraco.

    Related issues and pull requests on GitHub: #280, #1138.

  • Allowed empty host for URL schemes other than the special schemes listed in the WHATWG URL spec – by @bdraco.

    Related issues and pull requests on GitHub: #1136.

Features

  • Loosened restriction on integers as query string values to allow classes that implement __int__ – by @bdraco.

    Related issues and pull requests on GitHub: #1139.

Miscellaneous internal changes

  • Improved performance of normalizing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1137.


1.11.0

(2024-09-08)

Features

  • Added URL.extend_query()() method, which can be used to extend parameters without replacing same named keys – by @bdraco.

    This method was primarily added to replace the inefficient hand rolled method currently used in aiohttp.

    Related issues and pull requests on GitHub: #1128.

Miscellaneous internal changes

  • Improved performance of the Cython cached_property implementation – by @bdraco.

    Related issues and pull requests on GitHub: #1122.

  • Simplified computing ports by removing unnecessary code – by @bdraco.

    Related issues and pull requests on GitHub: #1123.

  • Improved performance of encoding non IPv6 hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1125.

  • Improved performance of URL.build()() when the path, query string, or fragment is an empty string – by @bdraco.

    Related issues and pull requests on GitHub: #1126.

  • Improved performance of the URL.update_query()() method – by @bdraco.

    Related issues and pull requests on GitHub: #1130.

  • Improved performance of processing query string changes when arguments are str – by @bdraco.

    Related issues and pull requests on GitHub: #1131.


1.10.0

(2024-09-06)

Bug fixes

  • Fixed joining a path when the existing path was empty – by @bdraco.

    A regression in URL.join()() was introduced in #1082.

    Related issues and pull requests on GitHub: #1118.

Features

  • Added URL.without_query_params()() method, to drop some parameters from query string – by @hongquan.

    Related issues and pull requests on GitHub: #774, #898, #1010.

  • The previously protected types _SimpleQuery, _QueryVariable, and _Query are now available for use externally as SimpleQuery, QueryVariable, and Query – by @bdraco.

    Related issues and pull requests on GitHub: #1050, #1113.

Contributor-facing changes

  • Replaced all ~typing.Optional with ~typing.Union – by @bdraco.

    Related issues and pull requests on GitHub: #1095.

Miscellaneous internal changes

  • Significantly improved performance of parsing the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1112.

  • Added internal types to the cache to prevent future refactoring errors – by @bdraco.

    Related issues and pull requests on GitHub: #1117.


1.9.11

(2024-09-04)

Bug fixes

  • Fixed a TypeError with MultiDictProxy and Python 3.8 – by @bdraco.

    Related issues and pull requests on GitHub: #1084, #1105, #1107.

Miscellaneous internal changes

  • Improved performance of encoding hosts – by @bdraco.

    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.

    Related issues and pull requests on GitHub: #1104.


1.9.10

(2024-09-04)

Bug fixes

  • URL.join()() has been changed to match 3986 and align with / operation() and URL.joinpath()() when joining URLs with empty segments. Previously urllib.parse.urljoin was used, which has known issues with empty segments (python/cpython#84774).

    Due to the semantics of URL.join()(), joining an URL with scheme requires making it relative, prefixing with ./.

    >>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    Empty segments are honored in the base as well as the joined part.

    >>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    – by @commonism

    This change initially appeared in 1.9.5 but was reverted in 1.9.6 to resolve a problem with query string handling.

    Related issues and pull requests on GitHub: #1039, #1082.

Features

  • Added ~yarl.URL.absolute which is now preferred over URL.is_absolute() – by @bdraco.

    Related issues and pull requests on GitHub: #1100.


1.9.9

(2024-09-04)

Bug fixes

  • Added missing type on ~yarl.URL.port – by @bdraco.

    Related issues and pull requests on GitHub: #1097.


1.9.8

(2024-09-03)

Features

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

  • Cache parsing of IP Addresses when encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

  • Removed support 3986#section-3.2.3 port normalization when the scheme is not one of http, https, wss, or ws – by @bdraco.

    Support for port normalization was recently added in #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.

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

    The reify implementation from aiohttp was adapted to replace the internal cached_property implementation.

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

  • Reverted 3986 compatible URL.join()() honoring empty segments which was introduced in #1039.

    This change introduced a regression handling query string parameters with joined URLs. The change was reverted to maintain compatibility with the previous behavior.

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

  • Joining URLs with empty segments has been changed to match 3986.

    Previously empty segments would be removed from path, breaking use-cases such as

    URL("https://web.archive.org/web/") / "https://github.com/"

    Now / operation() and URL.joinpath()() keep empty segments, but do not introduce new empty segments. e.g.

    URL("https://example.org/") / ""

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

  • The default protocol ports of well-known URI schemes are now taken into account during the normalization of the URL string representation in accordance with 3986#section-3.2.3.

    Specified ports are removed from the str representation of a ~yarl.URL if the port matches the scheme’s default port – by @commonism.

    Related issues and pull requests on GitHub: #1033.

  • URL.join()() has been changed to match 3986 and align with / operation() and URL.joinpath()() when joining URLs with empty segments. Previously urllib.parse.urljoin was used, which has known issues with empty segments (python/cpython#84774).

    Due to the semantics of URL.join()(), joining an URL with scheme requires making it relative, prefixing with ./.

    >>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    Empty segments are honored in the base as well as the joined part.

    >>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

  • Stopped decoding %2F (/) in URL.path, as this could lead to code incorrectly treating it as a path separator – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

  • On the Contributing docs page, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub: #981.

  • The pre-existing / magic method() has been documented in the API reference – by @commonism.

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

  • A flaw in the logic for copying the project directory into a temporary folder that led to infinite recursion when TMPDIR was set to a project subdirectory path. This was happening in Fedora and its downstream due to the use of pyproject-rpm-macros. It was only reproducible with pip wheel and was not affecting the pyproject-build users.

    – by @hroncok and @webknjaz

    Related issues and pull requests on GitHub: #992, #1014.

  • Support Python 3.13 and publish non-free-threaded wheels

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

  • The CI/CD setup has been updated to test arm64 wheels under macOS 14, except for Python 3.7 that is unsupported in that environment – by @webknjaz.

    Related issues and pull requests on GitHub: #1015.

  • Removed unused type ignores and casts – by @hauntsaninja.

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

  • port, scheme, and raw_host are now cached_property – by @bdraco.

    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.

    Related issues and pull requests on GitHub: #1044, #1058.


1.9.4 (2023-12-06)

Bug fixes

  • Started raising TypeError when a string value is passed into yarl.URL.build() as the port argument – by @commonism.

    Previously the empty string as port would create malformed URLs when rendered as string representations. (#883)

Packaging updates and notes for downstreams

  • The leading -- has been dropped from the PEP 517 in-tree build backend config setting names. --pure-python is now just pure-python – by @webknjaz.

    The usage now looks as follows:

    $ python -m build \
        --config-setting=pure-python=true \
        --config-setting=with-cython-tracing=true

    (#963)

Contributor-facing changes

  • A step-by-step Release Guide guide has been added, describing how to release yarl – by @webknjaz.

    This is primarily targeting maintainers. (#960)

  • Coverage collection has been implemented for the Cython modules – by @webknjaz.

    It will also be reported to Codecov from any non-release CI jobs.

    To measure coverage in a development environment, yarl can be installed in editable mode:

    $ python -Im pip install -e .

    Editable install produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files.

    #961

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @webknjaz.

    This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.

    Here’s a usage example:

    $ python -Im pip install . --config-settings=with-cython-tracing=true

    For editable installs, this setting is on by default. Otherwise, it’s off unless requested explicitly.

    The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:

    $ python -Im pip install -e .

    Alternatively, the YARL_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.

    #962

1.9.3 (2023-11-20)

Bug fixes

  • Stopped dropping trailing slashes in yarl.URL.joinpath() – by @gmacon. (#862, #866)

  • Started accepting string subclasses in yarl.URL.__truediv__() operations (URL / segment) – by @mjpieters. (#871, #884)

  • Fixed the human representation of URLs with square brackets in usernames and passwords – by @mjpieters. (#876, #882)

  • Updated type hints to include URL.missing_port(), URL.__bytes__() and the encoding argument to yarl.URL.joinpath() – by @mjpieters. (#891)

Packaging updates and notes for downstreams

  • Integrated Cython 3 to enable building yarl under Python 3.12 – by @mjpieters. (#829, #881)

  • Declared modern setuptools.build_meta as the PEP 517 build backend in pyproject.toml explicitly – by @webknjaz. (#886)

  • Converted most of the packaging setup into a declarative setup.cfg config – by @webknjaz. (#890)

  • The packaging is replaced from an old-fashioned setup.py to an in-tree PEP 517 build backend – by @webknjaz.

    Whenever the end-users or downstream packagers need to build yarl from source (a Git checkout or an sdist), they may pass a config_settings flag --pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    $ python -m pip install . --config-settings=--pure-python=false

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    $ python -m build --config-setting=--pure-python=false

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it. (#893)

  • Declared Python 3.12 supported officially in the distribution package metadata – by @edgarrmondragon. (#942)

Contributor-facing changes

  • A regression test for no-host URLs was added per #821 and 3986 – by @kenballus. (#821, #822)

  • Started testing yarl against Python 3.12 in CI – by @mjpieters. (#881)

  • All Python 3.12 jobs are now marked as required to pass in CI – by @edgarrmondragon. (#942)

  • MyST is now integrated in Sphinx – by @webknjaz.

    This allows the contributors to author new documents in Markdown when they have difficulties with going straight RST. (#953)

1.9.2 (2023-04-25)

Bugfixes

  • Fix regression with yarl.URL.__truediv__() and absolute URLs with empty paths causing the raw path to lack the leading /. (#854)

1.9.1 (2023-04-21)

Bugfixes

  • 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)

1.9.0 (2023-04-19)

This release was never published to PyPI, due to issues with the build process.

Features

  • Added URL.joinpath(*elements), to create a new URL appending multiple path elements. (#704)

  • Made URL.__truediv__()() return NotImplemented if called with an unsupported type — by @michaeljpeters. (#832)

Bugfixes

  • Path normalization for absolute URLs no longer raises a ValueError exception when .. segments would otherwise go beyond the URL path root. (#536)

  • Fixed an issue with update_query() not getting rid of the query when argument is None. (#792)

  • 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)

  • Made yarl.URL.build() raise a TypeError if the host argument is None — by @paulpapacz. (#808)

  • Fixed an issue with update_query() getting rid of the query when the argument is empty but not None. (#845)

Misc

1.8.2 (2022-12-03)

This is the first release that started shipping wheels for Python 3.11.

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

  • Added URL.raw_suffix, URL.suffix, URL.raw_suffixes, URL.suffixes, URL.with_suffix. (#613)

Improved Documentation

  • Fixed broken internal references to yarl.URL.human_repr(). (#665)

  • Fixed broken external references to multidict:index docs. (#665)

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

  • Changed call in with_port() to stop reencoding parts of the URL that were already encoded. (#623)

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

  • Add __bytes__() magic method so that bytes(url) will work and use optimal ASCII encoding. (#582)

  • Started shipping platform-specific arm64 wheels for Apple Silicon. (#622)

  • Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. (#622)

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

  • No longer loose characters when decoding incorrect percent-sequences (like %e2%82%f8). All non-decodable percent-sequences are now preserved. #517

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

  • Provide generated .c files in TarBall distribution. #530

1.6.1 (2020-10-12)

Features

  • Provide wheels for aarch64, i686, ppc64le, s390x architectures on Linux as well as x86_64. #507

  • Provide wheels for Python 3.9. #526

Bugfixes

  • human_repr() now always produces valid representation equivalent to the original URL (if the original URL is valid). #511

  • Fixed requoting a single percent followed by a percent-encoded character in the Cython implementation. #514

  • Fix ValueError when decoding % which is not followed by two hexadecimal digits. #516

  • Fix decoding % followed by a space and hexadecimal digit. #520

  • Fix annotation of with_query()/update_query() methods for key=[val1, val2] case. #528

Removal

  • Drop Python 3.5 support; Python 3.6 is the minimal supported Python version.


1.6.0 (2020-09-23)

Features

  • Allow for int and float subclasses in query, while still denying bool. #492

Bugfixes

  • Do not requote arguments in URL.build(), with_xxx() and in / operator. #502

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

  • Fix including relocated internal yarl._quoting_c C-extension into published PyPI dists. #485

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

  • Allow using mod operator (%) for updating query string (an alias for update_query() method). #435

  • Allow use of sequences such as list and tuple in the values of a mapping such as dict to represent that a key has many values:

    url = URL("http://example.com")
    assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")

    #443

  • Support URL.build() with scheme and path (creates a relative URL). #464

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

  • Support URL authority/raw_authority properties and authority argument of URL.build() method. #478

  • Hide the library implementation details, make the exposed public list very clean. #483

Bugfixes

  • Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+). #409

  • Fix a bug where query component, passed in a form of mapping or sequence, is unquoted in unexpected way. #426

  • Hide Query and QueryVariable type aliases in __init__.pyi, now they are prefixed with underscore. #431

  • Keep IPv6 brackets after updating port/user/password. #451


1.4.2 (2019-12-05)

Features

  • Workaround for missing str.isascii() in Python 3.6 #389


1.4.1 (2019-11-29)

  • Fix regression, make the library work on Python 3.5 and 3.6 again.

1.4.0 (2019-11-29)

  • Distinguish an empty password in URL from a password not provided at all (#262)

  • Fixed annotations for optional parameters of URL.build (#309)

  • Use None as default value of user parameter of URL.build (#309)

  • Enforce building C Accelerated modules when installing from source tarball, use YARL_NO_EXTENSIONS environment variable for falling back to (slower) Pure Python implementation (#329)

  • Drop Python 3.5 support

  • Fix quoting of plus in path by pure python version (#339)

  • Don’t create a new URL if fragment is unchanged (#292)

  • Included in error message the path that produces starting slash forbidden error (#376)

  • Skip slow IDNA encoding for ASCII-only strings (#387)

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

  • An incoming query sequence can have int variables (the same as for Mapping type) (#208)

  • Add URL.explicit_port property (#218)

  • Give a friendlier error when port can’t be converted to int (#168)

  • bool(URL()) now returns False (#272)

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

  • Forbid inheritance, replace __init__ with __new__ (#171)

  • Support PEP-561 (provide type hinting marker) (#182)

1.1.1 (2018-02-17)

  • Fix performance regression: don’t encode empty netloc (#170)

1.1.0 (2018-01-21)

  • Make pure Python quoter consistent with Cython version (#162)

1.0.0 (2018-01-15)

  • Use fast path if quoted string does not need requoting (#154)

  • Speed up quoting/unquoting by _Quoter and _Unquoter classes (#155)

  • Drop yarl.quote and yarl.unquote public functions (#155)

  • Add custom string writer, reuse static buffer if available (#157) Code is 50-80 times faster than Pure Python version (was 4-5 times faster)

  • Don’t recode IP zone (#144)

  • Support encoded=True in yarl.URL.build() (#158)

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

  • Fallback to IDNA 2003 if domain name is not IDNA 2008 compatible (#152)

0.17.0 (2017-12-30)

  • Use IDNA 2008 for domain name processing (#149)

0.16.0 (2017-12-07)

  • Fix raising TypeError by url.query_string() after url.with_query({}) (empty mapping) (#141)

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

  • Restore strict parameter as no-op in quote / unquote

0.14.1 (2017-11-13)

  • Restore strict parameter as no-op for sake of compatibility with aiohttp 2.2

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

  • Fix "ValueError: Unallowed PCT %" when there’s a "%" in the URL (#124)

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

  • Support relative URLs like '?key=value' (#100)

  • Unsafe encoding for QS fixed. Encode ; character in value parameter (#104)

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

  • Properly support paths without leading slash in URL.with_path() (#90)

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

  • Clear query and fragment parts in .with_path() (#85)

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

  • Do not quote or unquote + if not a query string. (#74)

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

  • Percent-encoded pluses in path variables become spaces (#59)

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

  • Allow to quote % in non strict mode (#21)

  • Incorrect parsing of query parameters with %3B (;) inside (#34)

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

  • Added URL.update_query() method (#47)

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

  • Support more verbose error messages in .with_query() (#24)

  • Don’t percent-encode @ and : in path (#32)

  • Don’t expose yarl.quote and yarl.unquote, these functions are part of private API

0.7.1 (2016-11-18)

  • Accept not only str but all classes inherited from str also (#25)

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

  • Explicitly use UTF8 encoding in setup.py (#20)

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

  • Don’t use typing.NamedTuple fields but indexes on URL construction

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

  • Expose quote() and unquote() as public API

0.4.1 (2016-09-28)

  • Support empty values in query ('/path?arg')

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

  • Appending path starting from slash is forbidden (#12)

0.1.4 (2016-09-09)

  • Add kwargs support for with_query() (#10)

0.1.3 (2016-09-07)

  • Document with_query(), with_fragment() and origin()

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

  • The library was deeply refactored, bytes are gone away but all accepted strings are encoded if needed.

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yarl-1.22.0.tar.gz (187.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

yarl-1.22.0-py3-none-any.whl (46.8 kB view details)

Uploaded Python 3

yarl-1.22.0-cp314-cp314t-win_arm64.whl (85.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

yarl-1.22.0-cp314-cp314t-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

yarl-1.22.0-cp314-cp314t-win32.whl (89.1 kB view details)

Uploaded CPython 3.14tWindows x86

yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl (341.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl (357.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (352.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl (334.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl (347.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (339.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (373.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (363.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (323.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (361.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl (96.0 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl (146.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp314-cp314-win_arm64.whl (82.9 kB view details)

Uploaded CPython 3.14Windows ARM64

yarl-1.22.0-cp314-cp314-win_amd64.whl (88.3 kB view details)

Uploaded CPython 3.14Windows x86-64

yarl-1.22.0-cp314-cp314-win32.whl (83.0 kB view details)

Uploaded CPython 3.14Windows x86

yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl (370.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl (383.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl (381.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl (355.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl (364.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (372.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (394.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (387.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (338.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl (94.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl (140.5 kB view details)

Uploaded CPython 3.14macOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp313-cp313t-win_arm64.whl (83.9 kB view details)

Uploaded CPython 3.13tWindows ARM64

yarl-1.22.0-cp313-cp313t-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

yarl-1.22.0-cp313-cp313t-win32.whl (86.9 kB view details)

Uploaded CPython 3.13tWindows x86

yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl (342.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl (356.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (351.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl (334.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl (346.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (341.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (372.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (361.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (323.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (362.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl (96.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl (146.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp313-cp313-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.13Windows ARM64

yarl-1.22.0-cp313-cp313-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.13Windows x86-64

yarl-1.22.0-cp313-cp313-win32.whl (81.6 kB view details)

Uploaded CPython 3.13Windows x86

yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl (374.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl (385.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl (382.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl (361.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl (365.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (397.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (387.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (342.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (373.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl (93.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl (140.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp312-cp312-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.12Windows ARM64

yarl-1.22.0-cp312-cp312-win_amd64.whl (87.2 kB view details)

Uploaded CPython 3.12Windows x86-64

yarl-1.22.0-cp312-cp312-win32.whl (81.6 kB view details)

Uploaded CPython 3.12Windows x86

yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl (383.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl (382.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl (365.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl (365.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (396.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (386.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (345.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl (94.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl (142.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp311-cp311-win_arm64.whl (81.6 kB view details)

Uploaded CPython 3.11Windows ARM64

yarl-1.22.0-cp311-cp311-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.11Windows x86-64

yarl-1.22.0-cp311-cp311-win32.whl (81.8 kB view details)

Uploaded CPython 3.11Windows x86

yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl (370.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl (381.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl (385.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl (358.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl (363.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (365.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (392.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (388.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (336.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (368.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl (94.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl (141.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp310-cp310-win_arm64.whl (82.0 kB view details)

Uploaded CPython 3.10Windows ARM64

yarl-1.22.0-cp310-cp310-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.10Windows x86-64

yarl-1.22.0-cp310-cp310-win32.whl (82.1 kB view details)

Uploaded CPython 3.10Windows x86

yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl (351.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl (357.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl (359.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl (335.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl (342.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (347.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (371.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (363.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (319.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (347.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl (94.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl (93.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl (140.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

yarl-1.22.0-cp39-cp39-win_arm64.whl (82.2 kB view details)

Uploaded CPython 3.9Windows ARM64

yarl-1.22.0-cp39-cp39-win_amd64.whl (87.1 kB view details)

Uploaded CPython 3.9Windows x86-64

yarl-1.22.0-cp39-cp39-win32.whl (82.3 kB view details)

Uploaded CPython 3.9Windows x86

yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl (350.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl (357.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl (358.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl (335.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (346.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (370.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (363.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (318.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (347.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl (94.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl (93.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl (141.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file yarl-1.22.0.tar.gz.

File metadata

  • Download URL: yarl-1.22.0.tar.gz
  • Upload date:
  • Size: 187.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0.tar.gz
Algorithm Hash digest
SHA256 bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71
MD5 21bde2ca6df9bfc66b1810461e0ded05
BLAKE2b-256 57630c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0.tar.gz:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-py3-none-any.whl.

File metadata

  • Download URL: yarl-1.22.0-py3-none-any.whl
  • Upload date:
  • Size: 46.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1380560bdba02b6b6c90de54133c81c9f2a453dee9912fe58c1dcced1edb7cff
MD5 35029f1b3f432e3604136d4cd3a2e1be
BLAKE2b-256 73aeb48f95715333080afb75a4504487cbe142cae1268afc482d06692d605ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9f6d73c1436b934e3f01df1e1b21ff765cd1d28c77dfb9ace207f746d4610ee1
MD5 5b87edde92ca6c0e229209a9027f3143
BLAKE2b-256 48b7503c98092fb3b344a179579f55814b613c1fbb1c23b3ec14a7b008a66a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9fb17ea16e972c63d25d4a97f016d235c78dd2344820eb35bc034bc32012ee27
MD5 feb5cd23fc22fcecd1b0af54273d6eea
BLAKE2b-256 f9860f0dccb6e59a9e7f122c5afd43568b1d31b8ab7dda5f1b01fb5c7025c9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 89.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8009b3173bcd637be650922ac455946197d858b3630b6d8787aa9e5c4564533e
MD5 af7ef63a60e1eaf222ae0d661c59b602
BLAKE2b-256 351855e6011f7c044dc80b98893060773cefcfdbf60dfefb8cb2f58b9bacbd83

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0232bce2170103ec23c454e54a57008a9a72b5d1c3105dc2496750da8cfa47c
MD5 7798935efd9b3e1f9e07c28ec9855091
BLAKE2b-256 cf726a85bba382f22cf78add705d8c3731748397d986e197e53ecc7835e76de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0b5bcc1a9c4839e7e30b7b30dd47fe5e7e44fb7054ec29b5bb8d526aa1041093
MD5 2d57968b8423db1e84a39dfd2230d3fa
BLAKE2b-256 3275f8919b2eafc929567d3d8411f72bdb1a2109c01caaab4ebfa5f8ffadc15b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e4b582bab49ac33c8deb97e058cd67c2c50dac0dd134874106d9c774fd272529
MD5 5c259af76e2376e2e2966fbc3bddca4f
BLAKE2b-256 86a0c2ab48d74599c7c84cb104ebd799c5813de252bea0f360ffc29d270c2caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf4a21e58b9cde0e401e683ebd00f6ed30a06d14e93f7c8fd059f8b6e8f87b6a
MD5 73aed2d134af48dcaaf7c92c20e3fd05
BLAKE2b-256 433c45a2b6d80195959239a7b2a8810506d4eea5487dce61c2a3393e7fc3c52e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33e32a0dd0c8205efa8e83d04fc9f19313772b78522d1bdc7d9aed706bfd6138
MD5 554037a2e535ad894655eda478bf3c5a
BLAKE2b-256 5f97aa6a143d3afba17b6465733681c70cf175af89f76ec8d9286e08437a7454

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e51ac5435758ba97ad69617e13233da53908beccc6cfcd6c34bbed8dcbede486
MD5 047eab8b3780502c508777a5ab6ac883
BLAKE2b-256 031fc5d94abc91557384719da10ff166b916107c1b45e4d0423a88457071dd88

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 efb07073be061c8f79d03d04139a80ba33cbd390ca8f0297aae9cce6411e4c6b
MD5 22b805b1599d7f5767bd9df400dac86c
BLAKE2b-256 c96659db471aecfbd559a1fd48aedd954435558cd98c7d0da8b03cc6c140a32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c4647674b6150d2cae088fc07de2738a84b8bcedebef29802cf0b0a82ab6face
MD5 398067d727d7b8c3ae6f0c7c4fdcef58
BLAKE2b-256 8c96475509110d3f0153b43d06164cf4195c64d16999e0c7e2d8a099adcd6907

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d77e1b2c6d04711478cb1c4ab90db07f1609ccf06a287d5607fcd90dc9863acf
MD5 0998a35f231a3558c32f611f7572ed30
BLAKE2b-256 fb76242a5ef4677615cf95330cfc1b4610e78184400699bdda0acb897ef5e49a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e7ce67c34138a058fd092f67d07a72b8e31ff0c9236e751957465a24b28910c
MD5 dc96864a650a9109fdb098da08e26b16
BLAKE2b-256 b0ab5b13d3e157505c43c3b43b5a776cbf7b24a02bc4cccc40314771197e3508

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 334b8721303e61b00019474cc103bdac3d7b1f65e91f0bfedeec2d56dfe74b53
MD5 d18e0167b7e46b2e32b09bf1f3e81a63
BLAKE2b-256 5d9a2f65743589809af4d0a6d3aa749343c4b5f4c380cc24a8e94a3c6625a808

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d947071e6ebcf2e2bee8fce76e10faca8f7a14808ca36a910263acaacef08eca
MD5 acc03c7359a50bb026b8dc2509134a89
BLAKE2b-256 18829665c61910d4d84f41a5bf6837597c89e665fa88aa4941080704645932a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 45c2842ff0e0d1b35a6bf1cd6c690939dacb617a70827f715232b2e0494d55d1
MD5 87dfbd3f7101b9d6e28d0d85817a46d4
BLAKE2b-256 065ea15eb13db90abd87dfbefb9760c0f3f257ac42a5cac7e75dbc23bed97a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8218f4e98d3c10d683584cb40f0424f4b9fd6e95610232dd75e13743b070ee33
MD5 d78379383dddaccc5b6a8893dba7427b
BLAKE2b-256 df0a227ab4ff5b998a1b7410abc7b46c9b7a26b0ca9e86c34ba4b8d8bc7c63d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0d6e6885777af0f110b0e5d7e5dda8b704efed3894da26220b7f3d887b839a79
MD5 268b2ed41d13b22b9e76227cbfdde7fa
BLAKE2b-256 ac30ac3a0c5bdc1d6efd1b41fa24d4897a4329b3b1e98de9449679dd327af4f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6a635ea45ba4ea8238463b4f7d0e721bad669f80878b7bfd1f89266e2ae63da2
MD5 ad8afcebe05e6fc28156b352c7394d3a
BLAKE2b-256 503caf9dba3b8b5eeb302f36f16f92791f3ea62e3f47763406abf6d5a4a3333b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22b029f2881599e2f1b06f8f1db2ee63bd309e2293ba2d566e008ba12778b8da
MD5 d92151b791eb018b9ce93ff5f0ff6e8f
BLAKE2b-256 d9f93aa2c0e480fb73e872ae2814c43bc1e734740bb0d54e8cb2a95925f98131

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f87ac53513d22240c7d59203f25cc3beac1e574c6cd681bbfd321987b69f95fd
MD5 88a9e57f44202b3b594c00eee5f18261
BLAKE2b-256 67a8fb6b1adbe98cf1e2dd9fad71003d3a63a1bc22459c6e15f5714eb9323b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ebd4549b108d732dba1d4ace67614b9545b21ece30937a63a65dd34efa19732d
MD5 2a8801d544e87aa15061d8dfdc086912
BLAKE2b-256 ec2a249405fd26776f8b13c067378ef4d7dd49c9098d1b6457cdd152a99e96a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4792b262d585ff0dff6bcb787f8492e40698443ec982a3568c2096433660c694
MD5 691ed0feae629de3c2204f9d3c1ed5fd
BLAKE2b-256 807c428e5812e6b87cd00ee8e898328a62c95825bf37c7fa87f0b6bb2ad31304

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68986a61557d37bb90d3051a45b91fa3d5c516d177dfc6dd6f2f436a07ff2b6b
MD5 d73903ed10465ebd61f8415a1251d7b9
BLAKE2b-256 b62ef4d26183c8db0bb82d491b072f3127fb8c381a6206a3a56332714b79b751

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bca03b91c323036913993ff5c738d0842fc9c60c4648e5c8d98331526df89784
MD5 d1ad22d4a8223f18807c217db3a3c85e
BLAKE2b-256 f5e7d8c5a7752fef68205296201f8ec2bf718f5c805a7a7e9880576c67600658

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 078a8aefd263f4d4f923a9677b942b445a2be970ca24548a8102689a3a8ab8da
MD5 0c070ac3e218f3fdb07e06261423415e
BLAKE2b-256 9892ab8d4657bd5b46a38094cfaea498f18bb70ce6b63508fd7e909bd1f93066

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 131a085a53bfe839a477c0845acf21efc77457ba2bcf5899618136d64f3303a2
MD5 f37f6a9697580f2145cadda9a6b76133
BLAKE2b-256 e39f90360108e3b32bd76789088e99538febfea24a102380ae73827f62073543

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 852863707010316c973162e703bddabec35e8757e67fcb8ad58829de1ebc8590
MD5 8f2201ad17d8c41e390796a1c7ed1c19
BLAKE2b-256 3f3f08e9b826ec2e099ea6e7c69a61272f4f6da62cb5b1b63590bb80ca2e4a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3d7a87a78d46a2e3d5b72587ac14b4c16952dd0887dbb051451eceac774411e
MD5 ee9df6bb9d0a90aeaae1016ec8a7e76b
BLAKE2b-256 a7bc315a56aca762d44a6aaaf7ad253f04d996cb6b27bad34410f82d76ea8038

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594fcab1032e2d2cc3321bb2e51271e7cd2b516c7d9aee780ece81b07ff8244b
MD5 bc9f426912d8429265e7c76ed71c7127
BLAKE2b-256 1163ff458113c5c2dac9a9719ac68ee7c947cb621432bcf28c9972b1c0e83938

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0dd9a702591ca2e543631c2a017e4a547e38a5c0f29eece37d9097e04a7ac683
MD5 1c036bbf160695eb2874d6cbe05979e5
BLAKE2b-256 e4043532d990fdbab02e5ede063676b5c4260e7f3abea2151099c2aa745acc4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 34b36c2c57124530884d89d50ed2c1478697ad7473efd59cfd479945c95650e4
MD5 3d34f68b0a4bc70276b88393e3eec0e9
BLAKE2b-256 46b3e20ef504049f1a1c54a814b4b9bed96d1ac0e0610c3b4da178f87209db05

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp314-cp314-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 7861058d0582b847bc4e3a4a4c46828a410bca738673f35a29ba3ca5db0b473b
MD5 b5fa604eae8cdd5148838a4559fe4bb2
BLAKE2b-256 6966991858aa4b5892d57aef7ee1ba6b4d01ec3b7eb3060795d34090a3ca3278

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 93.7 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ff86011bd159a9d2dfc89c34cfd8aff12875980e3bd6a39ff097887520e60249
MD5 5a80b6b5b3ab49cd10f3ecbcc3882d3e
BLAKE2b-256 31748b74bae38ed7fe6793d0c15a0c8207bbb819cf287788459e5ed230996cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 1834bb90991cc2999f10f97f5f01317f99b143284766d197e43cd5b45eb18d03
MD5 e219d2c7811ec32229f6bb7934e501bb
BLAKE2b-256 e0e511f140a58bf4c6ad7aca69a892bff0ee638c31bea4206748fc0df4ebcb3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de6b9a04c606978fdfe72666fa216ffcf2d1a9f6a381058d4378f8d7b1e5de62
MD5 e0daa1af3416a616b4d160da7b1033c8
BLAKE2b-256 4bb84c0e9e9f597074b208d18cef227d83aac36184bfbc6eab204ea55783dbc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5a3bf7f62a289fa90f1990422dc8dff5a458469ea71d1624585ec3a4c8d6960f
MD5 9749178d8ad1ab58717c6ec0b186b4c3
BLAKE2b-256 81c806e1d69295792ba54d556f06686cbd6a7ce39c22307100e3fb4a2c0b0a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 59c189e3e99a59cf8d83cbb31d4db02d66cda5a1a4374e8a012b51255341abf5
MD5 140e98a83d651050f43a8c9a62474ae4
BLAKE2b-256 c2adb77d7b3f14a4283bffb8e92c6026496f6de49751c2f97d4352242bba3990

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4afb5c34f2c6fecdcc182dfcfc6af6cccf1aa923eed4d6a12e9d96904e1a0d8
MD5 1136ec75053a46490f98d2e6bb811fc3
BLAKE2b-256 85b447328bf996acd01a4c16ef9dcd2f59c969f495073616586f78cd5f2efb99

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b7c88eeef021579d600e50363e0b6ee4f7f6f728cd3486b9d0f3ee7b946398d
MD5 6ee96212ea552cb84049c907d71a9c55
BLAKE2b-256 493699ca3122201b382a3cf7cc937b95235b0ac944f7e9f2d5331d50821ed352

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d7672ecf7557476642c88497c2f8d8542f8e36596e928e9bcba0e42e1e7d71f
MD5 90e245fa6bc85697632604d82f34561a
BLAKE2b-256 c1428b27c83bb875cd89448e42cd627e0fb971fa1675c9ec546393d18826cb50

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6c5010a52015e7c70f86eb967db0f37f3c8bd503a695a49f8d45700144667708
MD5 bae895f6735ea9165e1ebd48fc72da83
BLAKE2b-256 4696f3941a46af7d5d0f0498f86d71275696800ddcdd20426298e572b19b91ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ca1f59c4e1ab6e72f0a23c13fca5430f889634166be85dbf1013683e49e3278e
MD5 68534c62a1059b65f19e6c286ab7b093
BLAKE2b-256 6650bfc2a29a1d78644c5a7220ce2f304f38248dc94124a326794e677634b6cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2ca6fd72a8cd803be290d42f2dec5cdcd5299eeb93c2d929bf060ad9efaf5de0
MD5 ec98797fff56c8ef04a3736c49b75393
BLAKE2b-256 50b2375b933c93a54bff7fc041e1a6ad2c0f6f733ffb0c6e642ce56ee3b39970

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4398557cbf484207df000309235979c79c4356518fd5c99158c7d38203c4da4f
MD5 002e952a03f3f516f22f2d807b9d182d
BLAKE2b-256 d1c57dffad5e4f2265b29c9d7ec869c369e4223166e4f9206fc2243ee9eea727

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfebc0ac8333520d2d0423cbbe43ae43c8838862ddb898f5ca68565e395516e9
MD5 9c46765f558a572e887cd4da47b66102
BLAKE2b-256 abce05e9828a49271ba6b5b038b15b3934e996980dd78abdfeb52a04cfb9467e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47d8a5c446df1c4db9d21b49619ffdba90e77c89ec6e283f453856c74b50b9e3
MD5 a7ff7009162186cc05d30ef5e62e16b6
BLAKE2b-256 654776594ae8eab26210b4867be6f49129861ad33da1f1ebdf7051e98492bf62

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 719ae08b6972befcba4310e49edb1161a88cdd331e3a694b84466bd938a6ab10
MD5 dc6c541ccec863be2336ecd465af8f60
BLAKE2b-256 88fc6908f062a2f77b5f9f6d69cecb1747260831ff206adcbc5b510aff88df91

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5d0fcda9608875f7d052eff120c7a5da474a6796fe4d83e152e0e4d42f6d1a9b
MD5 f6daf8a909f13a682fc00bf250948849
BLAKE2b-256 984d264a01eae03b6cf629ad69bae94e3b0e5344741e929073678e84bf7a3e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 87.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47743b82b76d89a1d20b83e60d5c20314cbd5ba2befc9cda8f28300c4a08ed4d
MD5 74f4d64fbc84938c7fdde36c37d6a323
BLAKE2b-256 9aee450914ae11b419eadd067c6183ae08381cfdfcb9798b90b2b713bbebddda

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d3e32536234a95f513bd374e93d717cf6b2231a791758de6c509e3653f234c95
MD5 0e35705387518e0d3994416c6b0ee718
BLAKE2b-256 bb4903da1580665baa8bef5e8ed34c6df2c2aca0a2f28bf397ed238cc1bbc6f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1b51bebd221006d3d2f95fbe124b22b247136647ae5dcc8c7acafba66e5ee67
MD5 42820e44c91b24cbadcfd1a2dd6f9373
BLAKE2b-256 e584891158426bc8036bfdfd862fabd0e0fa25df4176ec793e447f4b85cf1be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 139718f35149ff544caba20fce6e8a2f71f1e39b92c700d8438a0b1d2a631a02
MD5 a3b58e69779fd6f25959d6e6a1f08ebc
BLAKE2b-256 aa7f59ec509abf90eda5048b0bc3e2d7b5099dffdb3e6b127019895ab9d5ef44

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7044802eec4524fde550afc28edda0dd5784c4c45f0be151a2d3ba017daca7d
MD5 1f8de1945c91b3a64e569124ec102a2e
BLAKE2b-256 ca5a09b7be3905962f145b73beb468cdd53db8aa171cf18c80400a54c5b82846

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47fdb18187e2a4e18fda2c25c05d8251a9e4a521edaed757fef033e7d8498d9a
MD5 baeafc71db249933383f3461fdeedf8e
BLAKE2b-256 b29d8e1ae6d1d008a9567877b08f0ce4077a29974c04c062dabdb923ed98e6fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0748275abb8c1e1e09301ee3cf90c8a99678a4e92e4373705f2a2570d581273
MD5 fb2f0e7be7ec88a62b746215b5f93a87
BLAKE2b-256 a1b9ab437b261702ced75122ed78a876a6dec0a1b0f5e17a4ac7a9a2482d8abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bec03d0d388060058f5d291a813f21c011041938a441c593374da6077fe21b1b
MD5 ed0293243684ab670df82520c9ebe504
BLAKE2b-256 11c9cd8538dc2e7727095e0c1d867bad1e40c98f37763e6d995c1939f5fdc7b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 243dda95d901c733f5b59214d28b0120893d91777cb8aa043e6ef059d3cddfe2
MD5 86f2d0a78b7201776ef0e3b6bfa5e10d
BLAKE2b-256 d99ac5db84ea024f76838220280f732970aa4ee154015d7f5c1bfb60a267af6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c401e05ad47a75869c3ab3e35137f8468b846770587e70d71e11de797d113df
MD5 9999950d73d29953eec2410a6eed10da
BLAKE2b-256 d4f833b92454789dde8407f156c00303e9a891f1f51a0330b0fad7c909f87692

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e5542339dcf2747135c5c85f68680353d5cb9ffd741c0f2e8d832d054d41f35a
MD5 8a032035f1e013dcd77954514c743f77
BLAKE2b-256 6e9e51a77ac7516e8e7803b06e01f74e78649c24ee1021eca3d6a739cb6ea49c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4f15793aa49793ec8d1c708ab7f9eded1aa72edc5174cae703651555ed1b601
MD5 ce00244787081f0f4a0a672bc45b6f08
BLAKE2b-256 613acaf4e25036db0f2da4ca22a353dfeb3c9d3c95d2761ebe9b14df8fc16eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22965c2af250d20c873cdbee8ff958fb809940aeb2e74ba5f20aaf6b7ac8c70c
MD5 0e16b9e7499c5b3e73e2241b541b10cd
BLAKE2b-256 18913274b215fd8442a03975ce6bee5fe6aa57a8326b29b9d3d56234a1dca244

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01e73b85a5434f89fc4fe27dcda2aff08ddf35e4d47bbbea3bdcd25321af538a
MD5 2156e85f44f2d341b68bcd2f7141cf32
BLAKE2b-256 018804d98af0b47e0ef42597b9b28863b9060bb515524da0a65d5f4db160b2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8dee9c25c74997f6a750cd317b8ca63545169c098faee42c84aa5e506c819b53
MD5 c8165241ace278fd0c15cc8e6fa85fc5
BLAKE2b-256 eaf3d67de7260456ee105dc1d162d43a019ecad6b91e2f51809d6cddaa56690e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ea70f61a47f3cc93bdf8b2f368ed359ef02a01ca6393916bc8ff877427181e74
MD5 11a1cbb418ff63c0b1a16446b7a92a79
BLAKE2b-256 44c5c21b562d1680a77634d748e30c653c3ca918beb35555cff24986fff54598

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8884d8b332a5e9b88e23f60bb166890009429391864c685e17bd73a9eda9105c
MD5 25239cb0d11bf6f5ff649cae2a31e78c
BLAKE2b-256 c89a6ad1a9b37c2f72874f93e691b2e7ecb6137fb2b899983125db4204e47575

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 70dfd4f241c04bd9239d53b17f11e6ab672b9f1420364af63e8531198e3f5fe8
MD5 1bc9d57636911fbd41dbd5975304d9a7
BLAKE2b-256 e73d68bf18d50dc674b942daec86a9ba922d3113d8399b0e52b9897530442da2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a49370e8f711daec68d09b821a34e1167792ee2d24d405cbc2387be4f158b520
MD5 689a2e25b7a1a0ddaa059cf8d89669c8
BLAKE2b-256 5965afc6e62bb506a319ea67b694551dab4a7e6fb7bf604e9bd9f3e11d575fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31f0b53913220599446872d757257be5898019c85e7971599065bc55065dc99d
MD5 2066d387c1cfc4b6dad4a1d0c4b7783e
BLAKE2b-256 bfcd4617eb60f032f19ae3a688dc990d8f0d89ee0ea378b61cac81ede3e52fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b790b39c7e9a4192dc2e201a282109ed2985a1ddbd5ac08dc56d0e121400a8f7
MD5 97a4bcbfc7ad1bb7b181134b5b6df5ce
BLAKE2b-256 25e15302ff9b28f0c59cac913b91fe3f16c59a033887e57ce9ca5d41a3a94737

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 433885ab5431bc3d3d4f2f9bd15bfa1614c522b0f1405d62c4f926ccd69d04fa
MD5 91931eb40dbf49c1a58b63e618f73fa5
BLAKE2b-256 a283cf8c7bcc6355631762f7d8bdab920ad09b82efa6b722999dfb05afa6cfac

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e8fbaa7cec507aa24ea27a01456e8dd4b6fab829059b69844bd348f2d467124
MD5 db50478defc84c84d92f6f295a09dfe5
BLAKE2b-256 2242d2685e35908cbeaa6532c1fc73e89e7f2efb5d8a7df3959ea8e37177c5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50678a3b71c751d58d7908edc96d332af328839eea883bb554a43f539101277a
MD5 5c614e6a029315effb741480c94c9a7a
BLAKE2b-256 db0f0d52c98b8a885aeda831224b78f3be7ec2e1aa4a62091f9f9188c3c65b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f6d2cb59377d99718913ad9a151030d6f83ef420a2b8f521d94609ecc106ee82
MD5 7d85290756f2c9f8dbd1169865410e94
BLAKE2b-256 6192682279d0e099d0e14d7fd2e176bd04f48de1484f56546a3e1313cd6c8e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 42188e6a615c1a75bcaa6e150c3fe8f3e8680471a6b10150c5f7e83f47cc34d2
MD5 1428bbcc6068a77ff035d06eea8862ec
BLAKE2b-256 d793a58f4d596d2be2ae7bab1a5846c4d270b894958845753b2c606d666744d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b8a0588521a26bf92a57a1705b77b8b59044cdceccac7151bd8d229e66b8dedb
MD5 6712b89f4ecd6d12de1595889109cb36
BLAKE2b-256 177a795cb6dfee561961c30b800f0ed616b923a2ec6258b5def2a00bf8231334

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1651bf8e0398574646744c1885a41198eba53dc8a9312b954073f845c90a8df
MD5 39d1f9f669a048681b8d6505add0d894
BLAKE2b-256 60419a1fe0b73dbcefce72e46cf149b0e0a67612d60bfc90fb59c2b2efdfbd86

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 939fe60db294c786f6b7c2d2e121576628468f65453d86b0fe36cb52f987bd74
MD5 c3a8d22acbae7ab801901a97f3ee20e4
BLAKE2b-256 baf50601483296f09c3c65e303d60c070a5c19fcdbc72daa061e96170785bc7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f1e09112a2c31ffe8d80be1b0988fa6a18c5d5cad92a9ffbb1c04c91bfe52ad2
MD5 0b837e47e3265ffc582735ba9a88f7ad
BLAKE2b-256 5a9ab312ed670df903145598914770eb12de1bac44599549b3360acc96878df8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e340382d1afa5d32b892b3ff062436d592ec3d692aeea3bef3a5cfe11bbf8c6f
MD5 ee6370cceeb7f4c0604c0fea4a7e87a2
BLAKE2b-256 75ff46736024fee3429b80a165a732e38e5d5a238721e634ab41b040d49f8738

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b6a6f620cfe13ccec221fa312139135166e47ae169f8253f72a0abc0dae94376
MD5 7d7fb9b0ea8d4ff68b5a873f9a1f7179
BLAKE2b-256 2b1388b78b93ad3f2f0b78e13bfaaa24d11cbc746e93fe76d8c06bf139615646

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 078278b9b0b11568937d9509b589ee83ef98ed6d561dfe2020e24a9fd08eaa2b
MD5 cab780a6f9ff9393072352c7a5686436
BLAKE2b-256 b5f7149bb6f45f267cb5c074ac40c01c6b3ea6d8a620d34b337f6321928a1b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a9b1ba5610a4e20f655258d5a1fdc7ebe3d837bb0e45b581398b99eb98b1f5ca
MD5 66cd7e127ca33efd2410ce5276b260f4
BLAKE2b-256 2ddffadd00fb1c90e1a5a8bd731fa3d3de2e165e5a3666a095b04e31b04d9cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b266bd01fedeffeeac01a79ae181719ff848a5a13ce10075adbefc8f1daee70e
MD5 7e43d309c721feb103c10952972198ac
BLAKE2b-256 35d8611cc282502381ad855448643e1ad0538957fc82ae83dfe7762c14069e14

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 51af598701f5299012b8416486b40fceef8c26fc87dc6d7d1f6fc30609ea0aa6
MD5 0a3e3c4ccc6b7ab1b5831b0ab238923f
BLAKE2b-256 87e540d7a94debb8448c7771a916d1861d6609dddf7958dc381117e7ba36d9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d5372ca1df0f91a86b047d1277c2aaf1edb32d78bbcefffc81b40ffd18f027ed
MD5 4d527f939daebb96b98d1a1f22728341
BLAKE2b-256 2cd1b49454411a60edb6fefdcad4f8e6dbba7d8019e3a508a1c5836cba6d0781

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6944b2dc72c4d7f7052683487e3677456050ff77fcf5e6204e98caf785ad1967
MD5 f98599fb83583576ccae5f95999e4345
BLAKE2b-256 f8f9a678c992d78e394e7126ee0b0e4e71bd2775e4334d00a9278c06a6cce96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b06bcadaac49c70f4c88af4ffcfbe3dc155aab3163e75777818092478bcbbe7
MD5 8d18290cb0b9545e14382ff1884ab3ce
BLAKE2b-256 302df715501cae832651d3282387c6a9236cd26bd00d0ff1e404b3dc52447884

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c52a6e78aef5cf47a98ef8e934755abf53953379b7d53e68b15ff4420e6683d
MD5 e2c1bf4905b315ad337c03049a5fc525
BLAKE2b-256 460071b90ed48e895667ecfb1eaab27c1523ee2fa217433ed77a73b13205ca4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e6438cc8f23a9c1478633d216b16104a586b9761db62bfacb6425bac0a36679e
MD5 be12888979e40108544ab5f884620b35
BLAKE2b-256 860824bd2477bd59c0bbd994fe1d93b126e0472e4e3df5a96a277b0a55309e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ba440ae430c00eee41509353628600212112cd5018d5def7e9b05ea7ac34eb65
MD5 76ce645d403bbb5cc44781479cbf4f99
BLAKE2b-256 0bf55777b19e26fdf98563985e481f8be3d8a39f8734147a6ebf459d0dab5a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3e2daa88dc91870215961e96a039ec73e4937da13cf77ce17f9cad0c18df3503
MD5 19a22ae50508df8a01822edb57ccf699
BLAKE2b-256 9526812a540e1c3c6418fec60e9bbd38e871eaba9545e94fa5eff8f4a8e28e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ea66b1c11c9150f1372f69afb6b8116f2dd7286f38e14ea71a44eee9ec51b9d
MD5 c2a3f3584b406293f17c3201bcf695f6
BLAKE2b-256 68fe2c1f674960c376e29cb0bec1249b117d11738db92a6ccc4a530b972648db

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 792a2af6d58177ef7c19cbf0097aba92ca1b9cb3ffdd9c7470e156c8f9b5e028
MD5 a262cf10b5fecff6513981dc19a7e1cb
BLAKE2b-256 c1da8da9f6a53f67b5106ffe902c6fa0164e10398d4e150d85838b82f424072a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 669930400e375570189492dc8d8341301578e8493aec04aebc20d4717f899dd6
MD5 a60902a4c6b339ffccc6144b1cb369bc
BLAKE2b-256 6aa1d065d51d02dc02ce81501d476b9ed2229d9a990818332242a882d5d60340

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1ab72135b1f2db3fed3997d7e7dc1b80573c67138023852b6efb336a5eae6511
MD5 50c0173eb25c7d524091ede3ab955eeb
BLAKE2b-256 4d275ab13fc84c76a0250afd3d26d5936349a35be56ce5785447d6c423b26d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 82.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b85b982afde6df99ecc996990d4ad7ccbdbb70e2a4ba4de0aecde5922ba98a0b
MD5 e5547e652464c26de81b6996453b7adb
BLAKE2b-256 afaf7df4f179d3b1a6dcb9a4bd2ffbc67642746fcafdb62580e66876ce83fff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb95a9b1adaa48e41815a55ae740cfda005758104049a640a398120bf02515ca
MD5 eff8cb7bda2700924b85f3d080999e8b
BLAKE2b-256 624694c76196642dbeae634c7a61ba3da88cd77bed875bf6e4a8bed037505aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 82.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 595697f68bd1f0c1c159fcb97b661fc9c3f5db46498043555d04805430e79bea
MD5 5121c0c4de8f90334557501f8d690359
BLAKE2b-256 828fe2d01f161b0c034a30410e375e191a5d27608c1f8693bab1a08b089ca096

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a899cbd98dce6f5d8de1aad31cb712ec0a530abc0a86bd6edaa47c1090138467
MD5 655acde54753e180beae770bb83ad8b2
BLAKE2b-256 26da11374c04e8e1184a6a03cf9c8f5688d3e5cec83ed6f31ad3481b3207f709

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 437840083abe022c978470b942ff832c3940b2ad3734d424b7eaffcd07f76737
MD5 d5b423ccad7acb13a61332c8367f00c3
BLAKE2b-256 3171fa7e10fb772d273aa1f096ecb8ab8594117822f683bab7d2c5a89914c92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f0d97c18dfd9a9af4490631905a3f131a8e4c9e80a39353919e2cfed8f00aedc
MD5 87572ad7bb6f7549b54eda21d69a836a
BLAKE2b-256 572e34c5b4eb9b07e16e873db5b182c71e5f06f9b5af388cdaa97736d79dd9a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dcbb0829c671f305be48a7227918cfcd11276c2d637a8033a99a02b67bf9eda
MD5 3ae6e5856029942cbbfcb0b285a4e28b
BLAKE2b-256 956f9dfd12c8bc90fea9eab39832ee32ea48f8e53d1256252a77b710c065c89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 663e1cadaddae26be034a6ab6072449a8426ddb03d500f43daf952b74553bba0
MD5 f3f6a14b291f2ecdaccef4aab198ecd1
BLAKE2b-256 c569599e7cea8d0fcb1694323b0db0dda317fa3162f7b90166faddecf532166f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cf71bf877efeac18b38d3930594c0948c82b64547c1cf420ba48722fe5509f6
MD5 0ce5d7b26da0258f5a87f65f4fd7c1a4
BLAKE2b-256 359f06b765d45c0e44e8ecf0fe15c9eacbbde342bb5b7561c46944f107bfb6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d332fc2e3c94dad927f2112395772a4e4fedbcf8f80efc21ed7cdfae4d574fdb
MD5 68cc0a6fa4eb995b107fda19b06a4a1f
BLAKE2b-256 0649f3219097403b9c84a4d079b1d7bda62dd9b86d0d6e4428c02d46ab2c77fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 80ddf7a5f8c86cb3eb4bc9028b07bbbf1f08a96c5c0bc1244be5e8fefcb94147
MD5 ab9c81461c60aa5e1908d85663e005ab
BLAKE2b-256 c397ac3f3feae7d522cf7ccec3d340bb0b2b61c56cb9767923df62a135092c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75976c6945d85dbb9ee6308cd7ff7b1fb9409380c82d6119bd778d8fcfe2931c
MD5 84534f96c22b4643ef0ba6d7266e6948
BLAKE2b-256 8409f92ed93bd6cd77872ab6c3462df45ca45cd058d8f1d0c9b4f54c1704429f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1b329cb8146d7b736677a2440e422eadd775d1806a81db2d4cded80a48efc1a
MD5 a9c059bfd98c620e84f7795ed5e7efbd
BLAKE2b-256 e27fdf1b6949b1fa1aa9ff6de6e2631876ad4b73c4437822026e85d8acb56bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07a524d84df0c10f41e3ee918846e1974aba4ec017f990dc735aad487a0bdfdf
MD5 5f2b3a03d7854808c68221d1298eef9e
BLAKE2b-256 b8125b274d8a0f30c07b91b2f02cba69152600b47830fcfb465c108880fcee9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cdac20da754f3a723cceea5b3448e1a2074866406adeb4ef35b469d089adb8f
MD5 449ab164d3ccb0858ee8a7044d3afb84
BLAKE2b-256 446f674f3e6f02266428c56f704cd2501c22f78e8b2eeb23f153117cc86fb28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c7bd6683587567e5a49ee6e336e0612bec8329be1b7d4c8af5687dcdeb67ee1e
MD5 da5e06c5f47b119a7667e58c4b05d177
BLAKE2b-256 d143a2204825342f37c337f5edb6637040fa14e365b2fcc2346960201d457579

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 82.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 dd7afd3f8b0bfb4e0d9fc3c31bfe8a4ec7debe124cfd90619305def3c8ca8cd2
MD5 988a44af240c4309f1127526e4344348
BLAKE2b-256 c2a370904f365080780d38b919edd42d224b8c4ce224a86950d2eaa2a24366ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10619d9fdee46d20edc49d3479e2f8269d0779f1b031e6f7c2aa1c76be04b7ed
MD5 c825538d471ed89a4cc3d8fe0cc91ba9
BLAKE2b-256 fd58d00f7cad9eba20c4eefac2682f34661d1d1b3a942fc0092eb60e78cfb733

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 82.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4dcc74149ccc8bba31ce1944acee24813e93cfdee2acda3c172df844948ddf7b
MD5 71ae9ce92cf347a09956d55eeef25e15
BLAKE2b-256 abc9f5042d87777bf6968435f04a2bbb15466b2f142e6e47fa4f34d1a3f32f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-win32.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 029866bde8d7b0878b9c160e72305bbf0a7342bcd20b9999381704ae03308dc8
MD5 f291381ff5bedf10c705c74c2a1fbb8b
BLAKE2b-256 8c52c49a619ee35a402fa3a7019a4fa8d26878fec0d1243f6968bbf516789578

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 357.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a4fcfc8eb2c34148c118dfa02e6427ca278bfd0f3df7c5f99e33d2c0e81eae3e
MD5 1e0decfd9f1e71a214590731090c2494
BLAKE2b-256 e289c020b6f547578c4e3dbb6335bf918f26e2f34ad0d1e515d72fd33ac0c635

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14291620375b1060613f4aab9ebf21850058b6b1b438f386cc814813d901c60b
MD5 dcd78f08395df12bc5473522c69381e1
BLAKE2b-256 a2be50b38447fd94a7992996a62b8b463d0579323fcfc08c61bdba949eef8a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5dbeefd6ca588b33576a01b0ad58aa934bc1b41ef89dee505bf2932b22ddffba
MD5 aeec22cb5c3159576e328f8774394c66
BLAKE2b-256 3c67bb6024de76e7186611ebe626aec5b71a2d2ecf9453e795f2dbd80614784c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84fc3ec96fce86ce5aa305eb4aa9358279d1aa644b71fab7b8ed33fe3ba1a7ca
MD5 51d8fb3d9a315c3148b3731598fda11d
BLAKE2b-256 1113a750e9fd6f9cc9ed3a52a70fe58ffe505322f0efe0d48e1fd9ffe53281f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e4e1f6f0b4da23e61188676e3ed027ef0baa833a2e633c29ff8530800edccba
MD5 8a0957d852322599e7016faa0e462caa
BLAKE2b-256 6b1f5e895e547129413f56c76be2c3ce4b96c797d2d0ff3e16a817d9269b12e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 088e4e08f033db4be2ccd1f34cf29fe994772fb54cfe004bbf54db320af56890
MD5 e58ee3d2c257dd0be3b77597e2d3a32d
BLAKE2b-256 8a0488a39a5dad39889f192cce8d66cc4c58dbeca983e83f9b6bf23822a7ed91

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 99b6fc1d55782461b78221e95fc357b47ad98b041e8e20f47c1411d0aacddc60
MD5 5441cff97807445713cf828aa06f42e8
BLAKE2b-256 1cef34724449d7ef2db4f22df644f2dac0b8a275d20f585e526937b3ae47b02d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e81fda2fb4a07eda1a2252b216aa0df23ebcd4d584894e9612e80999a78fd95b
MD5 17f417fbccf441eb7b8c1df97ecd184f
BLAKE2b-256 bde837a1e7b99721c0564b1fc7b0a4d1f595ef6fb8060d82ca61775b644185f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b580e71cac3f8113d3135888770903eaf2f507e9421e5697d6ee6d8cd1c7f054
MD5 b50034261d8c604d699a65382e378dd7
BLAKE2b-256 1891d7bfbc28a88c2895ecd0da6a874def0c147de78afc52c773c28e1aa233a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 94.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62441e55958977b8167b2709c164c91a6363e25da322d87ae6dd9c6019ceecf9
MD5 1bea70d39b39376b86ece85e30cd9e41
BLAKE2b-256 3258b8055273c203968e89808413ea4c984988b6649baabf10f4522e67c22d2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af74f05666a5e531289cb1cc9c883d1de2088b8e5b4de48004e5ca8a830ac859
MD5 a47d03e406f5e66ad9aaddd0eefde460
BLAKE2b-256 42e16d95d21b17a93e793e4ec420a925fe1f6a9342338ca7a563ed21129c0990

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 141.3 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3aa27acb6de7a23785d81557577491f6c38a5209a254d1191519d07d8fe51748
MD5 0f8f6a2e8d0c79c355611b67f78b4750
BLAKE2b-256 94fd6480106702a79bcceda5fd9c63cb19a04a6506bd5ce7fd8d9b63742f0021

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.22.0-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page