Skip to main content

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

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.21.0.tar.gz (187.1 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.21.0-py3-none-any.whl (46.8 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows x86-64

yarl-1.21.0-cp314-cp314t-win32.whl (89.0 kB view details)

Uploaded CPython 3.14tWindows x86

yarl-1.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

yarl-1.21.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (352.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yarl-1.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl (347.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yarl-1.21.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.21.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (373.5 kB view details)

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

yarl-1.21.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (363.1 kB view details)

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

yarl-1.21.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.21.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.21.0-cp314-cp314t-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yarl-1.21.0-cp314-cp314t-macosx_10_13_x86_64.whl (95.9 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

yarl-1.21.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.21.0-cp314-cp314-win_amd64.whl (88.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_s390x.whl (383.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

yarl-1.21.0-cp314-cp314-musllinux_1_2_ppc64le.whl (381.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

yarl-1.21.0-cp314-cp314-musllinux_1_2_armv7l.whl (355.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yarl-1.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (372.6 kB view details)

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

yarl-1.21.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (394.0 kB view details)

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

yarl-1.21.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.21.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (338.6 kB view details)

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

yarl-1.21.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.21.0-cp314-cp314-macosx_11_0_arm64.whl (94.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

yarl-1.21.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.21.0-cp313-cp313t-win_amd64.whl (93.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_s390x.whl (356.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

yarl-1.21.0-cp313-cp313t-musllinux_1_2_armv7l.whl (334.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yarl-1.21.0-cp313-cp313t-musllinux_1_2_aarch64.whl (346.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yarl-1.21.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.21.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.21.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.21.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.21.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (361.9 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yarl-1.21.0-cp313-cp313t-macosx_10_13_x86_64.whl (95.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

yarl-1.21.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.21.0-cp313-cp313-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.13Windows x86-64

yarl-1.21.0-cp313-cp313-win32.whl (81.5 kB view details)

Uploaded CPython 3.13Windows x86

yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_s390x.whl (385.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

yarl-1.21.0-cp313-cp313-musllinux_1_2_ppc64le.whl (382.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yarl-1.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (365.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yarl-1.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.0 kB view details)

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

yarl-1.21.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (397.6 kB view details)

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

yarl-1.21.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.21.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (342.3 kB view details)

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

yarl-1.21.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.21.0-cp313-cp313-macosx_11_0_arm64.whl (93.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

yarl-1.21.0-cp313-cp313-macosx_10_13_universal2.whl (139.9 kB view details)

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

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

Uploaded CPython 3.12Windows x86-64

yarl-1.21.0-cp312-cp312-win32.whl (81.5 kB view details)

Uploaded CPython 3.12Windows x86

yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_s390x.whl (383.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yarl-1.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.2 kB view details)

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

yarl-1.21.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.21.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.21.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.21.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.21.0-cp312-cp312-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

yarl-1.21.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.21.0-cp311-cp311-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_s390x.whl (381.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

yarl-1.21.0-cp311-cp311-musllinux_1_2_armv7l.whl (358.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yarl-1.21.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.21.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.21.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.21.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.21.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.21.0-cp311-cp311-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.21.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.21.0-cp310-cp310-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_s390x.whl (357.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

yarl-1.21.0-cp310-cp310-musllinux_1_2_ppc64le.whl (359.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yarl-1.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (346.9 kB view details)

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

yarl-1.21.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.21.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (363.8 kB view details)

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

yarl-1.21.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (319.5 kB view details)

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

yarl-1.21.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.21.0-cp310-cp310-macosx_11_0_arm64.whl (94.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.21.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.21.0-cp39-cp39-win_amd64.whl (87.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_s390x.whl (357.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

yarl-1.21.0-cp39-cp39-musllinux_1_2_ppc64le.whl (358.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yarl-1.21.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (346.4 kB view details)

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

yarl-1.21.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.21.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.21.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.21.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (347.0 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

yarl-1.21.0-cp39-cp39-macosx_10_9_x86_64.whl (93.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

yarl-1.21.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.21.0.tar.gz.

File metadata

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

File hashes

Hashes for yarl-1.21.0.tar.gz
Algorithm Hash digest
SHA256 866c17223f7d734377a260a2800e14791cb5e55ec252de624e053a0b36b8568a
MD5 efddc7671498cdc29fa8906175fb63c6
BLAKE2b-256 2dd1a1ee68b513f31c6de9af56cdfafebb4939bf0d6528945a862e101699ae98

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-py3-none-any.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c464852c531e44abc5ba05d0c0c97a8fa63719106b3dca46fedae14daedf46ae
MD5 18309a8b66bc662d1187e510c188ff21
BLAKE2b-256 08be3ebe06c6903bb0a0e63c1f445124c6367f4080ef347703fe6cd806672a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b0e38cf49c17e35831ec38029854b772717d6071f0419b74b80be57571a83d0a
MD5 f8b3da569ab90d57e18e60375204ed2f
BLAKE2b-256 fe3d2520bb07955ba583e0c500a1223d7139da80e523160c52bea0f23927f76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: yarl-1.21.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 89.0 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.21.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2584651c047718ec4a863ee81a5432f6f68974e6f0c58975f0aab408ff839798
MD5 cecddc42b355bbb4e69e7ed6bd4e2205
BLAKE2b-256 74d0143a8b2bc5e19e4719a00fc453c0a2207ee8b3411e837a7a56d39b3cf60e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb09731156f54dfd8bb097ce80f9436c2a1a282061ba29e526c375c69086b764
MD5 4ffb21e33fbb643902b1b7999175060a
BLAKE2b-256 fc36c124a3a2be46d051d693d5f0580be27b025f6bbf1d5dfeedcb933442dcd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f1b3930f0934057825227016a141ce16aad4b2a3805fb4e2de71064d042d72e9
MD5 811a0ad9a877fb90e9eb7189049ca754
BLAKE2b-256 24858cff7f713821578b6a7989af8d7226fe6119cd3d1884f7b67716290f9233

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7a9d0efd6ff6f4f55ff7a37852e4fcdc24b1feb3b09e204df3dda990171fe725
MD5 cb7cea98eabc57f0536dbe40f5033266
BLAKE2b-256 ae9b549c3e2cb0cb7dda9a59ad35c5a1e26e35942953a7debee8a983529c95e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9618070bb76a064c13020323b7fc23c332930604dfbc96b77e7ad7baca960c12
MD5 6adf9acd3f7e509ea6c7ee2bcb6e7d2e
BLAKE2b-256 af83957137aef698100645922f96fb78dd66ffbce4dcdd5e6c6e50eae5087a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b2f8e0bbdf49530ed09b2bc988082cab6ce24f4c49a0efd2ff5d9477cb29084
MD5 096c5a75a5c7dafb0c23e9830e696225
BLAKE2b-256 24bb0a9558f924c98875f96bfbf7e75ccc7a53da2f3b6e39065f039521a808d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 212a5c72d551f94b7799b5de1cc55ddcf3c69ac462f7c0df1beee7e47edb9fef
MD5 938a4c9af0cfa4b19b4a4b59982641a8
BLAKE2b-256 02bbf00f4e6f441e66db127c8a61d0371cdb5fea690cdc9a13ee2a84912f04a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d070756da822a538231d519ce290a1423ab108d6174ad1497cd020bee503d818
MD5 97883bc7c1d9c7bc3eafc9924a60c933
BLAKE2b-256 53fa1403e1d8d7fb5a19456731d55ce36cb7eead99a1d6b16a916a71f5295b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0aaa36261a1279b03fa0655a9bd879cc42e06406adaae0150fde25c778393fcb
MD5 b031f649e17b7c375d13a02e4e3267f1
BLAKE2b-256 54e52edd706871c7bdfe199f9a8ceba742929e1608400b4adfde872e0ff5977e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 26940710eece6b5b08a108e81d6325b47610990cd8bb28886e27d4a0d6d60930
MD5 f4d9b898a6686d76ee3a0c009ce7ef8f
BLAKE2b-256 5f7d9bf7c744ec1fdb2d97ecdf70775d61e5825859cf0eb42b6f05c454e6aea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19df967a905f2f9a09733dfb397baa6807772502931000f881943d7cfc6e9f47
MD5 c88dd6af3190270f15666b53587a0300
BLAKE2b-256 6f3bdbe3af9b3c55463413938933b349b7221a16f052fcc132890c634fbde116

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b449296e2ba009481385349138130f209bb502c4f890b3298bf3ea13d43a6d5
MD5 938bdcf7174a651df9aabd684b1ebbfe
BLAKE2b-256 f519fb9000892d04c500bad8f971cc2884cb986190ca606df9b4b41376d356af

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de1ab4f48fbcb4c2e578951338cc1c8245e510be061d2773a2d47616fb0d6470
MD5 6f23916d7dc5c53fde7ac716dd7cf131
BLAKE2b-256 bbf63054643d8187c0feb31db8da1abb73799a4d72f149bca3a928a171c6ecf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3cbae81bff4014ca7745fa11f7015f784198fadba8935cf5a71e139b0b124ff0
MD5 e42dba8ae4a345ba33fad8485ab18aca
BLAKE2b-256 2d40bd9d7894d4d14b6fc53e717536dd5e77e68fe278ce20ea6a04aa16dd413c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 884d4f3509dfc810299d14faed24c0fbcac82ae2a9737b0cb1d8f7a5e8a291f8
MD5 d461547de3230564c49c1a121d18d684
BLAKE2b-256 7e2b6447cbd3d43acc2ce2b6898fdaba7d517ee6269f5a278b5d09a1530cb645

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5e7d24e9c3b638f046fcd9a5374818257a8c6d1c3fc7542887521b81a970fbc2
MD5 0f45edcbd76556b7b42cd11dd73fe539
BLAKE2b-256 0b4be3657b7069fb1e24f014e4351b311e522ae7a58afc76369e0f31cf65e9d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c0123db2d86d169554d5fb19421e8e455efcfe2e8e254328b85c77e712ab506
MD5 af396b4ea7a3b0f0c2964ba002117231
BLAKE2b-256 d69ec5ec1f51be336bdaac908219255318cb86074f1c403a72fd47ec0209b9b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 10580c7d9b50c883b93cc0ab5c91df5cc1e5b18713736471d622776b01c36810
MD5 85c5d0b08aad94d7872488e3419b1408
BLAKE2b-256 72927d00ecf66b56ae1509a1a82fdf671a0c60c50182092a5e08af638b896237

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3b539230fd64f283594a56633a9751d299cde5ab9c2791452ccb47a865842fa8
MD5 4a7fdb6510139dd2a74bafb22aa6cdc8
BLAKE2b-256 d5114271403204e6f0cb46f63de249d1f552d23e26ad04a16e7cab686ab46256

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a0ba7cd4eabb7433e69737f33333d9e79d8ab6dbaa2f4d7313ad6611200cc65
MD5 d467177d35365b6f99f72fae02ffed3f
BLAKE2b-256 df2e9b1971c584f5ba0fde7f40b74f8d1b54e95c46fa39765189a1d696beb9af

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fcce63c1117ef0630a92a0bda3028a96dc17feed2c78c713de4c963d13d1881
MD5 2092cc5e675ceb4986b532f235848a65
BLAKE2b-256 4621949def9a5369ba8a653a30de07b01be5813db1fb0b5e0f1c34606a7f84cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 056fc431f10ae35aa2375c9de2b68176b34f54fb7de8bc2e830564e2a3d29efa
MD5 55aba274c9e1fb78c3d142fe3928b96e
BLAKE2b-256 8ad2c134f3acd2797dacd631851d7b868fc0c5e2d6b8ed8879bcf42696383504

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0a94664fe3c6dd44c36e875af0f338769dc9f80a1ccd58f53cf5f5b8341e8627
MD5 7e6b2ff7832b6b55ff52b925a62dcca8
BLAKE2b-256 e4290ae170810edb493591b5eced0b0a214e62df81ff9767282fd386282a9e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f9dae6ef584d3241571674ed7bcd1a28b003a5f0c3a6ca561ab42e5ce0c482e3
MD5 be1b2f5c691bd849d197392d050b3a3c
BLAKE2b-256 62c97ab9b63e3ca31a8b104d183774de3eccfe1da9889d5fbf11aa7d6c90f7d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 780313d2a1877adef0e3839ef9596ad53ab640715e7f453e7304c121cd7f262d
MD5 c28ca0d17c19df9eafdad9af419c408f
BLAKE2b-256 eba72b8401a64d91828f6e18bbdec8beb761a221d7795f94e7a1b3083af5d001

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ee84156656d4a09010c280f41011f0a317c62e745f7a2cfafabd8035823fe2d
MD5 236ca2bd7693c82b26e441f834ff24b6
BLAKE2b-256 e67dcdf516659244105b6eb78ee316b182f47d92ebdc33ce2b9cfe42e12c3cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b68c0c9deb2fcd183376600df99e88032a9c192d352b0f781e130b09220ef1cf
MD5 415fec1bb28f53c6808cf4c06aada6d7
BLAKE2b-256 9dba71eeca357170115c28315ec1b1c015b44b10cadd801d28f5b25b754853f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de9f7a51f828f73ea0ca2e856a7cac8766752f336241abdb6c5f45f402dd59ea
MD5 6479828737bab00dcb08e54cf89d1154
BLAKE2b-256 997a142a173f148ea8a1b36ae498a961c0be26986a5fab86908210d0507e75a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9eaf0f28ed19919bdeb02cfa541daaee8a05c070227eaab8d9732f1eebfe2869
MD5 4554fa7f58d91b248d3bd750fb7d6385
BLAKE2b-256 cfb901fc864ac6cc9bb1ae14ab852a7530d762254a27fe6c2c29e0c9c8dc6393

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e00aaf1574075439ccb0b827ca822c5a97c0103351ead292c42a9f17bd2eae0a
MD5 c1f450e9a5317621571ea37e274eb443
BLAKE2b-256 480f4496e5506abf690100fc5d37f31c3216e5c1c5fc2a228b08d39e42d174e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 99febd7a9efab236d798d72ca878ae0d92fffadcc2e472636d6e093ce2677980
MD5 06abaed85dfd5fb5bcd9f4e2bef92e74
BLAKE2b-256 2c253e45f26e9204e4ad89c91d89b1e946a12bc79b0e4f84e39916a28058463e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b5d29c1a86cc63e55f69253b8c817091884c4e1b79ee762a8643de834e70a64
MD5 62a26042dfd73b83d2d8107062dffb20
BLAKE2b-256 ce568965a790ad8007c6fa59d7a769e18a6b4451944c38e953f8acd620c98747

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8910f022242c0a15f6d77d781c6ba16bb88d9fed3bff8964de652ee2580029ac
MD5 63fe0bbccc07eb5f847190123f46d2e2
BLAKE2b-256 6517f40496a4bd7fb2047caaa4c2f3c573cf4ad1d1ab02549584a7930bd0ecea

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f0a6cd797394761692cc6f33b10f2ea46789ac0b7fba82b6df737f51e1297122
MD5 d595d2753e0e6e11b8920b855fa3ef31
BLAKE2b-256 395f605873225112f3bfd7b924fc00f9ac8f2d4a6b9e0a9abbca90ef566ffd92

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 178860382595f3b1fab2596b19570adc495c6211eee8b10a4112ce96342f6515
MD5 3287eef398e1149ba69155840e7be9c3
BLAKE2b-256 c598d31449d293c4a400c5eea2835d38f3b86ab1a7eae73750b5e011c4faf0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74b2e94d3e410ed49c7a4cb2c3a5089a6632f7ab68e49bb612b972577e26e771
MD5 c82477d6ad4bdd8af65dd75b9739c29d
BLAKE2b-256 41e58527ca2fee44a519f659cb1e71182da8f4739032f26acd3cf1567afed081

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45aa7711e1933bac1679f9534f112767f1fe64c97a8576294b760015d0fb65e7
MD5 8d09bdf18eb01fa57c5d4f23a218db10
BLAKE2b-256 ea330cac77694b844e0e00aa2a5be679e47b62213d3ea2e6fe84396cb04183a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 63157d66cf7682dec8b3117491cb87a5d8e1cd56df59156d5553ab9721895d19
MD5 7d3a2ae6236b25a349539eeae9d50653
BLAKE2b-256 56b92544b2a6184b5e02736870c5919243da45cd105efd6285f2c7750cc0ea68

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 61bf6233d04ccba7906f5261ff3628fa97a68fc526cda3d9dd092d2f49926933
MD5 ae2ca7cb239c1e032f7f97e3eb796d83
BLAKE2b-256 6589b5d64607085bef4ef5319c1604e5e1f64604d7a4ed4efdfa12448dac5f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7d5d8eeb1051fac562d80aad7b6b496e2901f41fc2b0988c61016a1426996f66
MD5 5fdeec125b25065e5f7006827517756d
BLAKE2b-256 38b71af70aec3f4f0b60d3e94918adc1c38319120768e1b106b5c049bfc40838

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a999c5c50af0e564cab5bbbbbee97d494eb0e09f99481385108ddfd90049b3fe
MD5 d2bcfbf39e7afb0ef1f34cf57d6c4c1c
BLAKE2b-256 ce0f441f882bda86de80cbd8c302b8f9bb1c449b0f4fc1ff7e9ea9e8161ed99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfcca979b72f240bac7c73564026eae4c97639151a415e6ced6392d120022d2d
MD5 404ab3e1cc9b98d4b173ccc93c677dc5
BLAKE2b-256 a272528606b2d707e8d59ef905cc19a08c1265da4a535a99dbe813ccb56bed45

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c115756cb1cad49862aa0c2687922ed10da6be7689cf35e3ab602c4a6da2d8fb
MD5 d74e861f7737fba3b04e0504e292a433
BLAKE2b-256 eef69c648fd2518821a0e8c80b9a96888e4d7ebe9e396d2aa4f5a804bd7e3903

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c2c4da0802f6897f7fb766c4f0e7f55c96b103981265fcf12b648d088bee3744
MD5 24b6e54f691a313d954a368c4ff05116
BLAKE2b-256 5affd9af15a1e4c294c7a9b2a5063dbe866b6cda7236de609609b164a335e327

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 86.9 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.21.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13c9b91e2e1224a8d33addc1bd58bb097396519c4c49524843947776b8dd45da
MD5 64c683c43773b3b4be9e94bf711d32e5
BLAKE2b-256 1c509e921fee3f29fe75be1c20d7344dd943bad642430adee4eabb230dfd7c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: yarl-1.21.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 81.5 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.21.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1743d35529a8b9b2b6a9e5f00076c2c146726453051621b739b081dda382ee70
MD5 b6e8e9837d6bff9175e9a7aa0b8176dd
BLAKE2b-256 588ba6fa48483fc60233e7a4225b80a0610ebed8dfd41404f1e5a4e6694654bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b846a17f810708f1beff6ad088121fd35334729df3e520412163c74ef49433f7
MD5 8d1fe6cad0f6317d6ad21d31bf4de31e
BLAKE2b-256 398ad1302e6e4454eabf1aa4034b2907439a43f7b5d5159b8f0237f54e5e0c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7d8917677a64304db00ec46629aff335c935c788a10a164b29464b7e2d707463
MD5 a1f762e7f000ecd75468a1ceb795e21e
BLAKE2b-256 513780baf3548b6e910ba278ba0255177d091f0af66afd738bbd88857b3ef552

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e0b01fa225ec12e54c73be383326ae2a4a59a4a465a0e6cac679f314ed85d1f
MD5 3e5756e22126dd20d9e789331e5389c6
BLAKE2b-256 4b6ffc3eee2f52f303f4b93b3d9b16842dd218bfb37b931f20c1e7b529f15395

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec1f6129c1175d15da7b7c13ae5d4226acf6b5fe362c5b01ac9787fa88c64781
MD5 fc19be5347deae2f949bae6305504076
BLAKE2b-256 14d7c20dc74713bccf5998babde260487d21b61497a9753200fdce887a715e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e485c4f9f5b5b9fc10b4bb0ba5baf145ed0a702756da126c9f62f8a89b391a8
MD5 40ff97bdcd3b8e6cae88d0af9deee225
BLAKE2b-256 4ac22bae5bd4e39c503738e8058659d68339f619d443129ea2d5375790a2b783

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1107b93c32cf7d7e2ece9bbb1b1820ecb923cfea24c8aa599a309434ed37d707
MD5 42d4db8d45f18d86c3c82aab5f97b82d
BLAKE2b-256 99b9deded0027a1bb174aeeec914899773a2db1ef83088cb25c435ab9b57e9ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c48477c6ff32032624aa122323adc343055bb7e347e01146a86e652b06281731
MD5 29d606da54b24f20730832678a21af4f
BLAKE2b-256 d22465726cc4a131442b4af140a94b12429ab5a39832e7abd58de189ef77764a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 692603a8f82e7baa86bb3921d5002b711788cec547b626030f1f6cf017290ab7
MD5 dc27c63bbe24f8231d497fe4bee07825
BLAKE2b-256 6298e2eafd1596fc48cdc1e3204a6d25d13d0b927339145c46e4d0a1e55d8e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 863d7401d3a109f75c7a5ca0e33e8fb7704a61007f4bda03e08e05f3bf1af40f
MD5 dcf09e2487ac8d68d42b0376117fb2dc
BLAKE2b-256 2982bc05acdd003e7676b0f668fd06c41091b3656a46747e3d5ef2db56b961fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 221aa7c16055e8b9f2eba718cbbf10f174e47f02e659156804d9679654c5cbb0
MD5 caf0090ab287ba2b8a923004e643e6a5
BLAKE2b-256 f008c9af7d6535959ade95fcb7692bedb8788b8f802bb52996476f7c93949c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37b5e7bba1f6df45058cff626c83a0e8a1259363095e768046a3da40b24e9c4f
MD5 4c4063b90641d228b7fc2e93d65e4ea6
BLAKE2b-256 ed0502f18b6b3ba344026d57796594a5630fc05816581c0d4aebfa00c26c6526

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01ef0d7f1dd60d241529dc79a3fa647451056394f9a5ed05fbceeb5009de6122
MD5 820f61b983322b70fffa60347a94d9cf
BLAKE2b-256 b91a684fcb0b57426b2f121d084a66cab6a3d8b60cf650d24bd0f18335111f11

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bc8a06f7bc45219b2c191d68e779e6b3f62e32d09d2f8cf7b381ba1dcb7a68f9
MD5 5723da0943009358aa4936c988122bbc
BLAKE2b-256 9db44fad5c66ad70f0e5d3b725c7ce72931d249891a4bec372c9181f9ba65f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7da21f0d9bebdc8ac1dde69b3c0951b339984883e2a751790f0f72cbfd1dd007
MD5 f21436f97cc6420f22a1857f4388255a
BLAKE2b-256 9fcbc3c5311cb48ef949f4d00802082d42dd43e113f32f98742113c75f147d75

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: yarl-1.21.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 81.5 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.21.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0d37bf6f601c714b536159715d9ec6e69bf8a94dc593abe54c1b43ac339eb5e7
MD5 0bbc0ab5048eb9bdcbf6513d8bc134da
BLAKE2b-256 225d68beb3107d2797e9e1be16de08f04454f846e6b8532adb28543a422375b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cc3eeea8f527119aac1b0c874bbb8092675da85fd6d9d91946cf7be7d59477b
MD5 b6565b9446d9e78837aa7f6831c4f0c0
BLAKE2b-256 c300c466a2e52d034f3e4f9b3f7090e345393ff76b34bda4559991e65d064775

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 66248832212957d8bad28e8d9d307be1d987b94ffaf7e7cca658a349d52d3572
MD5 71a765dd31953f6855f1aa1695e1840d
BLAKE2b-256 cee42cc150bccffa71f52b8e8354cc77ab8d653fdcf92ea729d428e005cf2f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 701cd0ee20fe9087c21229db579f2222a75c229b44840a7df7b2d795522068c3
MD5 91ef139a850a2e9bc28b33a4dfe0232c
BLAKE2b-256 3bce95e2b001c0672edfe68c7c8a59e95c3948c60ead779fb8cc384540cb4256

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 190356a39fed15109ab95600f8ff59c1a0665625f4cfe910388c82b965edaf87
MD5 f7e358a92ce78acde5b49d546856e1cb
BLAKE2b-256 5f38ed463a729e026a5608e443e7b7d9789c480d41fec967962ff9dcf9a77873

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ee80f79c928ce7c18cf3ad18a5da7f3f0f1b08923e08d87143d628a6d5d2dba
MD5 c1a3ed31c5ad13d64d7ee0e62a7435ff
BLAKE2b-256 48bbae6a99dbcf2f5db5484bcb61017bd8d59c8f9a6e81c3540a267f2e17355d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45f17adf1b8bc56becb1bc38f293b1714866786c9d79e245fb3d3731788622a6
MD5 73d3ea996a4fa6648e00e1df149710ec
BLAKE2b-256 50008377df3c132041bc580235ad465f20a73f026210b0f0582dddb41125a2d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bd6ca6e66b4fee5e879207854f125b94f6ad77e98ddae4d7778d2e96be94ede4
MD5 35ef996541a2d4f0c5bc6ccfc14ed70b
BLAKE2b-256 6e6d140b358b50d65342f634a1577cf867fd9ac80147b16f7d17b14d734fa956

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e7a8f70c7c283d0b4af90314ff8d969c9ab2c7ee522bfb612f42c542935f6e11
MD5 6af6bfcf8f3a7cce2d14ffb7fce8ba02
BLAKE2b-256 5ed346d217f9d743a5678eb52770875b521e87e9666fcc8a0ad1913e3b1e6cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1754b3380ffef931b8eae3bbe6fc0b249db56294ffeb6e6124c2d031a82a3a92
MD5 e94c7ced2226074cc0d06dc896472d6f
BLAKE2b-256 7e94b770cfe368b523a56b6bafbce705584f7fb42ee249a6d266b31f3d3a9560

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 430e162d961af58f3dcac58aed038ba974ec7a73803ac6545db2338fbd0f4ed3
MD5 457c42b99882daebed5c83fce88c361c
BLAKE2b-256 15c1ecd713a5d571fd27e42962b9e2d199d5db27bc786d8732717d3860104ef0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef7e9b60b371f4d3c3ea80c0ef2d841623dd64aad7718ab815a3205bd4bdf08
MD5 705fafcac24ff4387333352837e7c216
BLAKE2b-256 ddbbbc7e99183403b8db8ddf4b3c5fe256f0e4ae0306f7c66d1539d754f03f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 973d630c00bbaf07045870d331c8596bf4fa07aa8eb10d69a02c542af714f128
MD5 785d6b3f754f6d2f3d70b85a95764931
BLAKE2b-256 f203b9265e1b7a8305bbc45fb6ed23dc78b6a6dfa31b9a3c6e850f47ee91c98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5110ebfe3cbf892b41590fcf4aa70a17ac0a5e9a73b4a8945010bdb970ff1b93
MD5 c3e75dfec6528baa4778e2d3ce09a97d
BLAKE2b-256 10a4c87031092c8e4f488072d86d043b82b01f045866929eaf0b9c645cb9d756

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.8 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.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6df05c2234786b15632cd154d60122c302fd860d89c3ee47c166ad92eb6ae55
MD5 86ddfc25207ec0037cf03ba8a819c6d3
BLAKE2b-256 aa219cd2b53cc23f8d2e8c08d0f405fa4838ecfea56114b603b86b5afc023d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6378871775e0feb225693cbdad3d997327af0ab4c7e39d93849008c73b867134
MD5 ee40d5993ef9f8c5d918d666cd3191aa
BLAKE2b-256 02a0d9ce91b514f5a24dea05f1b7c0df29f0c15d5abee18b9107f0ab39f72ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee77d3c82576baae66a3281c9a6431fc84281443a7e36a8490a45b3dbbb60446
MD5 f0abacc1550f83cd4d52a17bd8b3a5e6
BLAKE2b-256 a2a5542a4529df6caea8c5e21daea7724b44e85cfa1e9e0e0df7835709fa9eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7331a7d2683e644b7830c924ac634fa3ec52257f5098f6415d8ad765d6bc29a8
MD5 7fc6f8b014f176830d284e87da833f81
BLAKE2b-256 ea501073a9969b40426520a2418b2701f164c53eeac69449b73aa9e6e4810d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6614325ef69d8a53c731ed5e4bd55449ffc5fe86ad652789c0afc853099662ad
MD5 99e4109725c4afbe7e575e4cf6902892
BLAKE2b-256 35e63d58937bf031b6c952568c4978c6b4dca47ccd5e891a1fb4961e973731ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ececd833be7fd8390371c082103916702170e81a1b22beb989452f934def78d6
MD5 132cae144b2f7b355bebe01e510933f0
BLAKE2b-256 bb32dd78e626abc1cb60103594f44a9e612c2c62c444164ccaaf78a8c4db7f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d5af10c9f580002c0ea6c8f345c8cadb2e0c53dce77d3f2639b9e31e5f24d3d
MD5 0137595aaa12ac5d3af3671e2834d5b5
BLAKE2b-256 5fc295c8dd8e5cc9064a3bab51387030a8884511e585d909e9f05e0af852d7c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d957259a15e45e5fa5d51ce59ab7519cff8d3de0109d404627276ec68412c718
MD5 3c69d81a55a01e3cd614e893d21684ea
BLAKE2b-256 a39c97ae635e6122edebab7e0c01be4df974b4e536d2bacfc5dada751eedb21c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c6dfa317e4b87052589253f50119211b801146ff7214b8684830e9084fa6eb0a
MD5 46937d551e476a1645cdbf3d059652b1
BLAKE2b-256 29cf08fb2d90646efc2b7194d1301c0bbeee17958d463d2c46e8261aa2c916b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 20b2dca6588f65b5def8e8eae4a087d504eacf34b5b435c021cc233ce82f6c15
MD5 c41f72e79dc1e58b1161119bb5e0098c
BLAKE2b-256 7b4d244c3f5343f7f7d76e74f524e42f7d635336a2122c8167acaf44090e9b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2227fcc88bebdc90ed87d924bdf8a76a730fc91796641e41ca747aabd13a5074
MD5 051098f780729e00c8d01d8b1dce7c95
BLAKE2b-256 95b65b62976cc105900fe2073208506ed994243d47f103b4fccd336f205c79d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60dcb45a3d762460ac5014755c190db36acf127f68d68643cde7d6d7ce0e5627
MD5 aa1f8d814098b32a4444a5c9d091a030
BLAKE2b-256 c09e75bce89dae5bb42710252bab56d2b037e6bd208452b5f953cfc14739f60a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a05a5e018de23c4d2d75c8fbd8b58aba5199f752326f60a22aa37ef28d987bd
MD5 7ff1459f85d54e53ee72c3335cf61618
BLAKE2b-256 c0608d69774dbce36d29f14b73780ce8a452793f8e72c46a23148324a31eb1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 140402fef1f482840fcd4d2ee9bfd07f08bfb2c80dd215220bd47f6f3566b882
MD5 a9f01a503ba81fba1921ad3ba24816f1
BLAKE2b-256 c02227ffacf5480948b013118d4f3c4f1f37b97badec1849330f14f1913c30e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 56ead8d62b346c1ec67a6e8b2f66885180ea5bec05821d309ac1cb99ff4aacf5
MD5 bdeda8301d05466898b3339c67c5557e
BLAKE2b-256 7ed6bff826fcd96e888fe9b80b5290edacd90f341a251edf23b1f93e57f13e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 86.8 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.21.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 52a8b7541c5d8240ae32d12014f8448e29e1ae794f9443ea020b926cff8691e1
MD5 58a6e576a05780306ebc579089bb58e0
BLAKE2b-256 bf8ff08048a1548170fab70a004dc1a4485541dbfd7d244d96a6270aaef17fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ac487adb2e838d03aed0c1a9df4ba348ca2c215bf2afa2f6e1d9449c7029971f
MD5 eef2af523b94079aa413c2261d1420b1
BLAKE2b-256 b8a3c435560bf9152c32bfc3b9f42de2051d6ef6058343415a48d0f0ecb2acc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0416fde6dc89866f4ff494a0ffcc4b2da984cf61aaa279c14a53495e8520c809
MD5 e01606bb39912a8203c2d6d37717dfc7
BLAKE2b-256 3dc613f7060718079576093069a5ccd3c0d5c67d8bea91b02cdafb8fe6254339

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0b16c889a7168ecf7242946dec013c9fb82ade70ab8e6b5d3290383390083a2b
MD5 3492c0b4909941cdccdfc3f3a462f4ff
BLAKE2b-256 8949e252940167fdcfd398f358c7a37228f845bf7038c460ba94a31aeed0b53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c7fab0120e4ea5a2c170382bd27345b2b56e22b6270b40e4231a68f090ce17ed
MD5 7084f7b7022f420eed9e6a088a56e2ad
BLAKE2b-256 87732f70879e53fc3f297e50819bf87d128daea2edcdcfaabc7efeb89756a6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad6775f8bd57e2c4068246e03c00e212e01b27ea0e96a4b4f17f9d45d80cd5d8
MD5 a02d39a6a62fe94f454139dcb30ecada
BLAKE2b-256 cb3dd9e9124b5d220d25848c5f326ff656279dbe8cb6fc8a78ec0d976fd755e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bfdb95a85404a943197264461b904a2e9e228fd28cb86e4e57321f5b4d5be07
MD5 2ff926d681289da0210762cfbd95fb81
BLAKE2b-256 882cc4e462f66e30e38464272a72590b18932b34863d4437d77da216714f5d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5c35188fac7e448b52eb3916365fe5f59eb27fecec21ba757eea4f650584ca5
MD5 96d2a1140b332f58ff2a500b04d1bfec
BLAKE2b-256 b654c85e753606df4c6c34ac5260d4d36e46c25c4634d70a6afb293b51d0d070

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 019c2798df9d74fe8fb9cc916702966dad7e2e3eef66b4c19f8084ba5e0b6ecd
MD5 5521cd9659fd7e42585c37fd0dd89ca0
BLAKE2b-256 53dae80beded6fbe10010c20575e85ad07fa3f396b91a9f8cdbf05bb6374be65

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 92a719bb1118f302f6fc3c7638e78e152de8bf279c0200325af831afa1b60f1a
MD5 06da27ac7585570d877dae34b12568b2
BLAKE2b-256 ba44d827b88a12ef4ef882a8042c27b7eaff690128ab0338194ed42996cf5eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0a9454d4c513a3aa2fd87471126e0d32b01f1bf58d49309a84431521488b30c4
MD5 5582314d27c709c52a4cde03b9871d8d
BLAKE2b-256 96bb0a8496894b1e18709e1c81430cab9ca020f32b439434ac2800a64a755062

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8da09e318a2916da7110d1147355056ee89d61b4ded49ba3ada717517f2fc71
MD5 6a1df24198baed57e08658a8828a381c
BLAKE2b-256 0c1034ebdd10fa6a6ff66b03746d0b8807b868d3121843886ae3a813718a0575

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ff0c0bea02ce78af8a91b173fb43aad5f1945221182f77ba7816fd01bcbc4c
MD5 522f5079529c17bd7724cbf4eb36f352
BLAKE2b-256 d6e940f9f5c75a946a96d929b9ae4605cf265112d158e983dcece484106a800a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bff86850033508af0a7f9973ced23a16de7ba4ce30521080e2330475b8711b5
MD5 0fb5127950b8d87852cd29269cdabe14
BLAKE2b-256 d3e3cea415910fae9bcafb1030537d30051bae7f5e9f0bd14aefdb8509bde8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7d271fed8a4b46723db5001619c36192d94a3bd49d76ef186f13abb6897ff8e5
MD5 87c58866cfc6eec08a05ff11f9f6f870
BLAKE2b-256 a8785abe0da65addf428f26487f4f21496b04404637e6b1f24d019124bd4d066

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 069cfc781f5d68389c8a4228f720cab453e1b6fa606bcd710a9cc01e38ffe2c1
MD5 fb052616f5ad7e0998a058d0c402603d
BLAKE2b-256 502fd96c1dd7c6589d8f5a12142c517891852b8ed64ba6ba0972c3dc3eeb2d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 06c71f698ac5b5bfdde1ce3d58d262235b3c1109f083286c96c01cee64ebf705
MD5 510be261666416fc3328c32ff405956e
BLAKE2b-256 6ce835376da708f7a84088e3f436ed71a5503d8880f893d528fe4786b1dfc6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c763e42a29ac98e7240004e36b7ce231046054393182f1f630c897ce049579ed
MD5 5261f2083310a76158b011c0bc723d29
BLAKE2b-256 fbc1866fd61b4fc5b1442f54d75aec56a5d3d2b176e6aed1382f024dda5237c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6074904025bc462b0b3f7230b36d8942d9a611b783ce1431ade5ad6a8867b73d
MD5 2675c99c7335358050d3c924630dfd15
BLAKE2b-256 2484cf91f0ee37a893ffb0b71f25da2f433af36fd279c4cab8c5a4e4cf585758

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8d39e71705dccdcdf077752d4dc0fcc9554bf797f8af0c1db59f0025a72d4ed2
MD5 8dbedf261e80416418c8459e356a90f1
BLAKE2b-256 ed88b1f24e746fa944b1452e1d2696a920eec886aab37efd3e865b5ce23dd50f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac210d628b9a50699189ec09f0f73630c78e60027d81d75c461deebf7aed752c
MD5 97afd130f7588de100496a7a4beda5e3
BLAKE2b-256 3de377ac3e7bbfab8d82e44c9e9426a8815ceedab88f5984967231e01984a53a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b7d46a6ca781a336c7317d9c1d381bebb3b0da5309c2293dd1c4fe3d62942bf
MD5 db30ce62e8d73ee13c0c06f4d2651550
BLAKE2b-256 af6d8cce6631d6fe15d26aca9b957841239946f9107619fbf74a55bf2a47e829

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.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.21.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30b6a56388963ebe5428d835112439563bcaa9c8349742aeac68a8ad5a231221
MD5 81b24180aed53d08e9e0146ec4469b78
BLAKE2b-256 df524fc87749573efc9e20d47f580e31af359b012fa71eaa3e05f59127c358fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cb56dcaf10bac9713fff133074d2460b0b217f27760a2b642efb2bc4179bfde6
MD5 0a8d06bea2b9fff8be2b79ddfb9e0183
BLAKE2b-256 7bb109810e40e921b4e08bcebd6a37e50966b9e7fd1095e6e8d6b0abd44d9212

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 18e8272a4166d2bb68d51f86445f061aac21fcfc9c1d5b1187f9703f362d85dd
MD5 09f4b7cb6939fc8acfa1f47ba870bb0a
BLAKE2b-256 294fefbfa3ca0f6b0b125b21a1ae3a4a96314cfec7b9a9d2a66ee5762add7791

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 028c59136b65fccfe5578520a3fb2a94e06601c545ca0125b7e07b3a39f238a5
MD5 971301f022c13e198474d521773d1448
BLAKE2b-256 fdb820add3b394e17b59afd0373251476a0394531dc79bade6643d978b7efbc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16957642c0594feba56a4bb430eea5f9132bb589ebb8b4740c0d47f022a5d976
MD5 df7c29db7bbffe0a41fecf001f850187
BLAKE2b-256 db64fca9d563044b30bcc0f7c79c71b4aba46bdf8ea73985c29d8260b206f240

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14872677213d96552268f927982d4c83f5d0674b0d54b623d8e909710460ab14
MD5 04d054457de109d9a25a03816fd7d60e
BLAKE2b-256 0fdef5017a1c5cb8c5c469179880f7f3d69d8f8f5ae539e9d200ba79a2ba4ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.21.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b841c5529f9ca28cf23ed34c8040547ca6530b968a482c14de96a6ade470ee5
MD5 2ceba1ad36d9c70664aca608c5d3b5eb
BLAKE2b-256 9a553cea0214ceffd1e5f6684776bda5c7f0a26dadb6378ddf6749903e6ed256

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.21.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: yarl-1.21.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.21.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0ab4e81b455dd8beb2537648be972eb63351bbe34fb55457054392fee759ac9c
MD5 bbc7321251c8c57e8d8db178ed63c127
BLAKE2b-256 6422625c87e12389a837d05245b7f816dc89018aea248ffa5c4da31bfdc0cf0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.21.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.

Release history Release notifications | RSS feed

1.24.5

104 files

1.24.2

104 files

1.24.1

15 files

1.24.0

15 files

1.23.0

128 files

1.22.0

130 files

This release

1.21.0 This release

122 files

1.20.1

104 files

1.20.0

104 files

1.19.0

87 files

1.18.3

82 files

1.18.2

49 files

1.18.1

44 files

1.18.0

82 files

1.17.2

82 files

1.17.1

82 files

1.17.0

82 files

1.16.0

82 files

1.15.5

82 files

1.15.4

82 files

1.15.3

82 files

1.15.2

98 files

1.15.1

98 files

1.15.0

98 files

1.14.0

92 files

1.13.1

92 files

1.13.0

92 files

1.12.1

92 files

1.12.0

92 files

1.11.1

92 files

1.11.0

92 files

1.10.0

92 files

1.9.11

92 files

1.9.10

92 files

1.9.9

92 files

1.9.8

92 files

1.9.7

92 files

1.9.6

92 files

1.9.5

92 files

1.9.4

90 files

1.9.3

90 files

1.9.2

74 files

1.9.1

74 files

1.8.2

74 files

1.8.1

59 files

1.8.0

59 files

1.7.2

72 files

1.7.0

72 files

1.6.3

37 files

1.6.2

33 files

1.6.1

33 files

1.6.0

17 files

1.5.1

17 files

1.5.0

17 files

1.4.2

17 files

1.4.1

17 files

1.4.0

17 files

1.3.0

11 files

1.2.6

9 files

1.2.5

9 files

1.2.4

9 files

1.2.3

9 files

1.2.2

9 files

1.2.1

9 files

1.2.0

13 files

1.1.1

13 files

1.1.0

13 files

1.0.0

13 files

0.18.0

13 files

0.17.0

13 files

0.16.0

13 files

0.15.0

13 files

0.14.2

13 files

0.14.1

13 files

0.14.0

13 files

0.13.0

13 files

0.12.0

11 files

0.11.1

6 files

0.11.0

13 files

0.10.3

13 files

0.10.2

13 files

0.10.1

13 files

0.10.0

9 files

0.9.8

9 files

0.9.7

9 files

0.9.6

9 files

0.9.5

9 files

0.9.4

9 files

0.9.3

9 files

0.9.2

9 files

0.9.1

9 files

0.9.0

9 files

0.8.1

9 files

0.8.0

9 files

0.7.1

9 files

0.7.0

9 files

0.6.0

9 files

0.5.3

9 files

0.5.2

9 files

0.5.1

9 files

0.5.0

9 files

0.5.0b1

0.5.0b0

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page