Skip to main content

Yet another URL library

Project description

yarl

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

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

Introduction

Url is constructed from str:

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

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

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

All url manipulations produce a new url object:

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

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

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

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

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

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

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

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

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

Installation

$ pip install yarl

The library is Python 3 only!

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

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

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

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

Dependencies

YARL requires multidict and propcache libraries.

API documentation

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

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

There is no standard for boolean representation of boolean values.

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

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

Comparison with other URL libraries

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

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

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

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

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

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

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

Source code

The project is hosted on GitHub

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

Discussion list

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

Feel free to post your questions and ideas here.

Authors and License

The yarl package is written by Andrew Svetlov.

It’s Apache 2 licensed and freely available.

Changelog

1.20.1

(2025-06-09)

Bug fixes

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

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

    – by @MaelPic.

    Related issues and pull requests on GitHub: #1512.

Packaging updates and notes for downstreams

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

    Related issues and pull requests on GitHub: #1514.

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

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

    Related issues and pull requests on GitHub: #1521.


1.20.0

(2025-04-16)

Features

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

    Related issues and pull requests on GitHub: #1456.

Packaging updates and notes for downstreams

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

    Related issues and pull requests on GitHub: #1456.


1.19.0

(2025-04-05)

Bug fixes

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

    Related issues and pull requests on GitHub: #1468.

Features

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

    Related issues and pull requests on GitHub: #1495.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1471.

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

    Related issues and pull requests on GitHub: #1479.

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

    Related issues and pull requests on GitHub: #1480.

Miscellaneous internal changes

  • Improved accuracy of type annotations – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1484.

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

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

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

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


1.18.3

(2024-12-01)

Bug fixes

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

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1443.


1.18.2

(2024-11-29)

No significant changes.


1.18.1

(2024-11-29)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1432.

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

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


1.18.0

(2024-11-21)

Features

  • Added keep_query and keep_fragment flags in the yarl.URL.with_path(), yarl.URL.with_name() and yarl.URL.with_suffix() methods, allowing users to optionally retain the query string and fragment in the resulting URL when replacing the path – by @paul-nameless.

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

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1415.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1422.


1.17.2

(2024-11-17)

Bug fixes

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

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

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

    Related issues and pull requests on GitHub: #1413.

Features

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

    Related issues and pull requests on GitHub: #1414.

Packaging updates and notes for downstreams

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

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1418.


1.17.1

(2024-10-30)

Miscellaneous internal changes

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

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

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

    Related issues and pull requests on GitHub: #1401.


1.17.0

(2024-10-28)

Features

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

    Related issues and pull requests on GitHub: #1375.


1.16.0

(2024-10-21)

Bug fixes

  • Fixed blocking I/O to load Python code when creating a new ~yarl.URL with non-ascii characters in the network location part – by @bdraco.

    Related issues and pull requests on GitHub: #1342.

Removals and backward incompatible breaking changes

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

    Passing ip_address_size and host_validate_size to yarl.cache_configure() is deprecated in favor of the new encode_host_size parameter and will be removed in a future release. For backwards compatibility, the old parameters affect the encode_host cache size.

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1336.

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

    Related issues and pull requests on GitHub: #1345.

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

    Related issues and pull requests on GitHub: #1369.


1.15.5

(2024-10-18)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1304.

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

    Related issues and pull requests on GitHub: #1305.

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

    Related issues and pull requests on GitHub: #1306.

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

    Related issues and pull requests on GitHub: #1307.

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

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

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

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

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

    Related issues and pull requests on GitHub: #1313.

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

    Related issues and pull requests on GitHub: #1315.

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

    Related issues and pull requests on GitHub: #1316.

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

    Related issues and pull requests on GitHub: #1317.

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

    Related issues and pull requests on GitHub: #1318.

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

    Related issues and pull requests on GitHub: #1319.

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

    Related issues and pull requests on GitHub: #1320.

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

    Related issues and pull requests on GitHub: #1321.

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

    Related issues and pull requests on GitHub: #1322.


1.15.4

(2024-10-16)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1288.

  • Improved performance of unquoting strings – by @bdraco.

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

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

    Related issues and pull requests on GitHub: #1297.


1.15.3

(2024-10-15)

Bug fixes

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

    The validation only worked correctly when passing host.

    Related issues and pull requests on GitHub: #1265.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1203.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1271.


1.15.2

(2024-10-13)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1234.

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

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

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

    Related issues and pull requests on GitHub: #1256.

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

    Related issues and pull requests on GitHub: #1259.


1.15.1

(2024-10-12)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1222.

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

    Related issues and pull requests on GitHub: #1226.

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

    Related issues and pull requests on GitHub: #1229.


1.15.0

(2024-10-11)

Bug fixes

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

    Related issues and pull requests on GitHub: #1189.

Features

  • Started building armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #1204.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1188.

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

    Related issues and pull requests on GitHub: #1190.

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

    Related issues and pull requests on GitHub: #1193.

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

    Related issues and pull requests on GitHub: #1198.


1.14.0

(2024-10-08)

Packaging updates and notes for downstreams

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

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

    Related issues and pull requests on GitHub: #1169.

Contributor-facing changes

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

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

    Related issues and pull requests on GitHub: #860.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1168.

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

    Related issues and pull requests on GitHub: #1170.

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

    Related issues and pull requests on GitHub: #1175.

  • Improved performance of encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1176.


1.13.1

(2024-09-27)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1163.


1.13.0

(2024-09-26)

Bug fixes

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

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

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

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

Features

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

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

    Related issues and pull requests on GitHub: #1159.


1.12.1

(2024-09-23)

No significant changes.


1.12.0

(2024-09-23)

Features

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

    Related issues and pull requests on GitHub: #1150.

Removals and backward incompatible breaking changes

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

    This change restored the behavior before #1057.

    Related issues and pull requests on GitHub: #1151.

Miscellaneous internal changes

  • Improved performance of processing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1143.


1.11.1

(2024-09-09)

Bug fixes

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

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

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

    Related issues and pull requests on GitHub: #1136.

Features

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

    Related issues and pull requests on GitHub: #1139.

Miscellaneous internal changes

  • Improved performance of normalizing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1137.


1.11.0

(2024-09-08)

Features

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

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

    Related issues and pull requests on GitHub: #1128.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1122.

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

    Related issues and pull requests on GitHub: #1123.

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

    Related issues and pull requests on GitHub: #1125.

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

    Related issues and pull requests on GitHub: #1126.

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

    Related issues and pull requests on GitHub: #1130.

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

    Related issues and pull requests on GitHub: #1131.


1.10.0

(2024-09-06)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1118.

Features

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

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

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

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

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1095.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1112.

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

    Related issues and pull requests on GitHub: #1117.


1.9.11

(2024-09-04)

Bug fixes

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

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

Miscellaneous internal changes

  • Improved performance of encoding hosts – by @bdraco.

    Previously, the library would unconditionally try to parse a host as an IP Address. The library now avoids trying to parse a host as an IP Address if the string is not in one of the formats described in 3986#section-3.2.2.

    Related issues and pull requests on GitHub: #1104.


1.9.10

(2024-09-04)

Bug fixes

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

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

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

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

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

    – by @commonism

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

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

Features

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

    Related issues and pull requests on GitHub: #1100.


1.9.9

(2024-09-04)

Bug fixes

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

    Related issues and pull requests on GitHub: #1097.


1.9.8

(2024-09-03)

Features

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

    Related issues and pull requests on GitHub: #1084.

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

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

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

    Support for port normalization was recently added in #1033 and contained code that would do blocking I/O if the scheme was not one of the four listed above. The code has been removed because this library is intended to be safe for usage with asyncio.

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

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

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

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

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

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

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

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

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

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

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

    Related issues and pull requests on GitHub: #1033.

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

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

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

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

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

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

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

    Related issues and pull requests on GitHub: #981.

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

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

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

    – by @hroncok and @webknjaz

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

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

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1015.

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

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

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

    aiohttp accesses these properties quite often, which cause urllib to build the _hostinfo property every time. port, scheme, and raw_host are now cached properties, which will improve performance.

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


1.9.4 (2023-12-06)

Bug fixes

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

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

Packaging updates and notes for downstreams

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

    The usage now looks as follows:

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

    (#963)

Contributor-facing changes

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

    This is primarily targeting maintainers. (#960)

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

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

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

    $ python -Im pip install -e .

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

    #961

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

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

    Here’s a usage example:

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

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

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

    $ python -Im pip install -e .

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

    #962

1.9.3 (2023-11-20)

Bug fixes

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

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

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

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

Packaging updates and notes for downstreams

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

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

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

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

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

    Here is how this can be done with pip:

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

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

    The same can be achieved via pypa/build:

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

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

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

Contributor-facing changes

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

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

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

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

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

1.9.2 (2023-04-25)

Bugfixes

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

1.9.1 (2023-04-21)

Bugfixes

  • Marked tests that fail on older Python patch releases (< 3.7.10, < 3.8.8 and < 3.9.2) as expected to fail due to missing a security fix for CVE-2021-23336. (#850)

1.9.0 (2023-04-19)

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

Features

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

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

Bugfixes

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

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

  • Added some input restrictions on with_port() function to prevent invalid boolean inputs or out of valid port inputs; handled incorrect 0 port representation. (#793)

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

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

Misc

1.8.2 (2022-12-03)

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

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

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

Improved Documentation

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

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

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

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

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

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

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

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

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

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

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

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

1.6.1 (2020-10-12)

Features

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

  • Provide wheels for Python 3.9. #526

Bugfixes

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

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

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

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

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

Removal

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


1.6.0 (2020-09-23)

Features

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

Bugfixes

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

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

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

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

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

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

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

    #443

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

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

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

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

Bugfixes

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

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

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

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


1.4.2 (2019-12-05)

Features

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


1.4.1 (2019-11-29)

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

1.4.0 (2019-11-29)

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

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

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

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

  • Drop Python 3.5 support

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

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

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

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

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

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

  • Add URL.explicit_port property (#218)

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

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

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

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

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

1.1.1 (2018-02-17)

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

1.1.0 (2018-01-21)

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

1.0.0 (2018-01-15)

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

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

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

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

  • Don’t recode IP zone (#144)

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

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

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

0.17.0 (2017-12-30)

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

0.16.0 (2017-12-07)

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

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

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

0.14.1 (2017-11-13)

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

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

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

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

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

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

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

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

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

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

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

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

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

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

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

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

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

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

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

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

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

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

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

0.7.1 (2016-11-18)

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

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

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

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

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

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

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

0.4.1 (2016-09-28)

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

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

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

0.1.4 (2016-09-09)

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

0.1.3 (2016-09-07)

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

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

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

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

Download files

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

Source Distribution

yarl-1.20.1.tar.gz (186.4 kB view details)

Uploaded Source

Built Distributions

yarl-1.20.1-py3-none-any.whl (46.5 kB view details)

Uploaded Python 3

yarl-1.20.1-cp313-cp313t-win_amd64.whl (93.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

yarl-1.20.1-cp313-cp313t-win32.whl (86.6 kB view details)

Uploaded CPython 3.13tWindows x86

yarl-1.20.1-cp313-cp313t-musllinux_1_2_x86_64.whl (341.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yarl-1.20.1-cp313-cp313t-musllinux_1_2_s390x.whl (355.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

yarl-1.20.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (350.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp313-cp313t-musllinux_1_2_i686.whl (342.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

yarl-1.20.1-cp313-cp313t-musllinux_1_2_armv7l.whl (334.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp313-cp313t-musllinux_1_2_aarch64.whl (346.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yarl-1.20.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

yarl-1.20.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

yarl-1.20.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (323.5 kB view details)

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

yarl-1.20.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp313-cp313t-macosx_11_0_arm64.whl (92.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yarl-1.20.1-cp313-cp313t-macosx_10_13_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

yarl-1.20.1-cp313-cp313t-macosx_10_13_universal2.whl (138.8 kB view details)

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

yarl-1.20.1-cp313-cp313-win_amd64.whl (86.3 kB view details)

Uploaded CPython 3.13Windows x86-64

yarl-1.20.1-cp313-cp313-win32.whl (81.2 kB view details)

Uploaded CPython 3.13Windows x86

yarl-1.20.1-cp313-cp313-musllinux_1_2_x86_64.whl (374.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yarl-1.20.1-cp313-cp313-musllinux_1_2_s390x.whl (384.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

yarl-1.20.1-cp313-cp313-musllinux_1_2_ppc64le.whl (382.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp313-cp313-musllinux_1_2_i686.whl (369.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

yarl-1.20.1-cp313-cp313-musllinux_1_2_armv7l.whl (361.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp313-cp313-musllinux_1_2_aarch64.whl (364.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yarl-1.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

yarl-1.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (361.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

yarl-1.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (342.6 kB view details)

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

yarl-1.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (336.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp313-cp313-macosx_11_0_arm64.whl (88.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yarl-1.20.1-cp313-cp313-macosx_10_13_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yarl-1.20.1-cp313-cp313-macosx_10_13_universal2.whl (131.8 kB view details)

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

yarl-1.20.1-cp312-cp312-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.12Windows x86-64

yarl-1.20.1-cp312-cp312-win32.whl (81.2 kB view details)

Uploaded CPython 3.12Windows x86

yarl-1.20.1-cp312-cp312-musllinux_1_2_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yarl-1.20.1-cp312-cp312-musllinux_1_2_s390x.whl (383.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

yarl-1.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl (381.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp312-cp312-musllinux_1_2_i686.whl (364.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

yarl-1.20.1-cp312-cp312-musllinux_1_2_armv7l.whl (365.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp312-cp312-musllinux_1_2_aarch64.whl (365.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yarl-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (363.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

yarl-1.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

yarl-1.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (345.4 kB view details)

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

yarl-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (352.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (340.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yarl-1.20.1-cp312-cp312-macosx_10_13_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yarl-1.20.1-cp312-cp312-macosx_10_13_universal2.whl (133.7 kB view details)

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

yarl-1.20.1-cp311-cp311-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.11Windows x86-64

yarl-1.20.1-cp311-cp311-win32.whl (81.5 kB view details)

Uploaded CPython 3.11Windows x86

yarl-1.20.1-cp311-cp311-musllinux_1_2_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yarl-1.20.1-cp311-cp311-musllinux_1_2_s390x.whl (380.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

yarl-1.20.1-cp311-cp311-musllinux_1_2_ppc64le.whl (381.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp311-cp311-musllinux_1_2_i686.whl (362.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

yarl-1.20.1-cp311-cp311-musllinux_1_2_armv7l.whl (358.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp311-cp311-musllinux_1_2_aarch64.whl (363.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yarl-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (357.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

yarl-1.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

yarl-1.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (336.5 kB view details)

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

yarl-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (337.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp311-cp311-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yarl-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl (91.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.20.1-cp311-cp311-macosx_10_9_universal2.whl (133.8 kB view details)

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

yarl-1.20.1-cp310-cp310-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.10Windows x86-64

yarl-1.20.1-cp310-cp310-win32.whl (81.8 kB view details)

Uploaded CPython 3.10Windows x86

yarl-1.20.1-cp310-cp310-musllinux_1_2_x86_64.whl (350.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yarl-1.20.1-cp310-cp310-musllinux_1_2_s390x.whl (357.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

yarl-1.20.1-cp310-cp310-musllinux_1_2_ppc64le.whl (358.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp310-cp310-musllinux_1_2_i686.whl (338.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

yarl-1.20.1-cp310-cp310-musllinux_1_2_armv7l.whl (335.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp310-cp310-musllinux_1_2_aarch64.whl (339.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

yarl-1.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (339.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

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

yarl-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (315.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp310-cp310-macosx_11_0_arm64.whl (89.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yarl-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.20.1-cp310-cp310-macosx_10_9_universal2.whl (132.9 kB view details)

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

yarl-1.20.1-cp39-cp39-win_amd64.whl (87.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

yarl-1.20.1-cp39-cp39-musllinux_1_2_x86_64.whl (351.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

yarl-1.20.1-cp39-cp39-musllinux_1_2_s390x.whl (359.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

yarl-1.20.1-cp39-cp39-musllinux_1_2_ppc64le.whl (360.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

yarl-1.20.1-cp39-cp39-musllinux_1_2_i686.whl (339.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

yarl-1.20.1-cp39-cp39-musllinux_1_2_armv7l.whl (336.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

yarl-1.20.1-cp39-cp39-musllinux_1_2_aarch64.whl (340.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yarl-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

yarl-1.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

yarl-1.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (340.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

yarl-1.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (320.9 kB view details)

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

yarl-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

yarl-1.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.20.1-cp39-cp39-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yarl-1.20.1-cp39-cp39-macosx_10_9_x86_64.whl (91.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

yarl-1.20.1-cp39-cp39-macosx_10_9_universal2.whl (134.3 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.20.1.tar.gz
Algorithm Hash digest
SHA256 d017a4997ee50c91fd5466cef416231bb82177b93b029906cefc542ce14c35ac
MD5 23352fbc2b165825d4a33682c91788bc
BLAKE2b-256 3cfbefaa23fa4e45537b827620f04cf8f3cd658b76642205162e072703a5b963

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.20.1-py3-none-any.whl
Algorithm Hash digest
SHA256 83b8eb083fe4683c6115795d9fc1cfaf2cbbefb19b3a1cb68f6527460f483a77
MD5 6398755dd9232de962cbf7a0dfb530cb
BLAKE2b-256 b42d2345fce04cfd4bee161bf1e7d9cdc702e3e16109021035dbb24db654a622

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 541d050a355bbbc27e55d906bc91cb6fe42f96c01413dd0f4ed5a5240513874f
MD5 0adf905ee27e4c53ae3d095cd37f80df
BLAKE2b-256 94c3b2e9f38bc3e11191981d57ea08cab2166e74ea770024a646617c9cddd9f6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 b121ff6a7cbd4abc28985b6028235491941b9fe8fe226e6fdc539c977ea1739d
MD5 64bea564e8f6f22c06db8e7853e23e3d
BLAKE2b-256 24fd725b8e73ac2a50e78a4534ac43c6addf5c1c2d65380dd48a9169cc6739a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88cab98aa4e13e1ade8c141daeedd300a4603b7132819c484841bb7af3edce9e
MD5 06d16be85513bfab8137d9e27f8297ab
BLAKE2b-256 9eedc5fb04869b99b717985e244fd93029c7a8e8febdfcffa06093e32d7d44e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 344d1103e9c1523f32a5ed704d576172d2cabed3122ea90b1d4e11fe17c66458
MD5 e21919a77f5e18ca72e44f4bc1d72dfa
BLAKE2b-256 a600d393e82dd955ad20617abc546a8f1aee40534d599ff555ea053d0ec9bf03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c03bfebc4ae8d862f853a9757199677ab74ec25424d0ebd68a0027e9c639a390
MD5 caf96f779b604628dba5bf7f2508a84b
BLAKE2b-256 9195459ca62eb958381b342d94ab9a4b6aec1ddec1f7057c487e926f03c06d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bdd2f80f4a7df852ab9ab49484a4dee8030023aa536df41f2d922fd57bf023f
MD5 4fbdc67879e060aedf5740894687a944
BLAKE2b-256 846504c62e82704e7dd0a9b3f61dbaa8447f8507655fd16c51da0637b39b2910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 595c07bc79af2494365cc96ddeb772f76272364ef7c80fb892ef9d0649586513
MD5 6674aecd43736fab44cca0aa9773494b
BLAKE2b-256 70fdaf94f04f275f95da2c3b8b5e1d49e3e79f1ed8b6ceb0f1664cbd902773ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67e708dfb8e78d8a19169818eeb5c7a80717562de9051bf2413aca8e3696bf16
MD5 48e3a480943d333d70c8fb9ff4c7c1cb
BLAKE2b-256 938fb811b9d1f617c83c907e7082a76e2b92b655400e61730cd61a1f67178393

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56dac5f452ed25eef0f6e3c6a066c6ab68971d96a9fb441791cad0efba6140d3
MD5 8092510f3f13b043e1c14b4d85b1064c
BLAKE2b-256 4b230ed0922b47a4f5c6eb9065d5ff1e459747226ddce5c6a4c111e728c9f701

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6342d643bf9a1de97e512e45e4b9560a043347e779a173250824f8b254bd5ce
MD5 ae7bdb462dc7f64b9969f6ddd967496d
BLAKE2b-256 66ad775da9c8a94ce925d1537f939a4f17d782efef1f973039d821cbe4bcc211

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_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.20.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f64fbf81878ba914562c672024089e3401974a39767747691c65080a67b18c1
MD5 b8a19d3bbf582961c0f35d18ce7b2035
BLAKE2b-256 eb2b490d3b2dc66f52987d4ee0d3090a147ea67732ce6b4d61e362c1846d0d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8e0fe9364ad0fddab2688ce72cb7a8e61ea42eff3c7caeeb83874a5d479c896c
MD5 c500c1e0dafcfbe6505b67b5f2251f3f
BLAKE2b-256 894778b7f40d13c8f62b499cc702fdf69e090455518ae544c00a3bf4afc9fc77

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cf34efa60eb81dd2645a2e13e00bb98b76c35ab5061a3989c7a70f78c85006d
MD5 3c915cd36c76b8df76891b5d1a2c96e5
BLAKE2b-256 2fd4062b2f48e7c93481e88eff97a6312dca15ea200e959f23e96d8ab898c5b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7d7f497126d65e2cad8dc5f97d34c27b19199b6414a40cb36b52f41b79014be
MD5 39f358d4ba1e57762fbdb580ab0e8b59
BLAKE2b-256 3e49bc728a7fe7d0e9336e2b78f0958a2d6b288ba89f25a1762407a222bf53c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69ff8439d8ba832d6bed88af2c2b3445977eba9a4588b787b32945871c2444e3
MD5 63d129529a06e8841ac8577b4ffb20c8
BLAKE2b-256 4f7ffa59c4c27e2a076bba0d959386e26eba77eb52ea4a0aac48e3515c186b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f3eff4cc3f03d650d8755c6eefc844edde99d641d0dcf4da3ab27141a5f8ddf
MD5 b0a9ad74106eee10dcfad42e97b3b996
BLAKE2b-256 6a42fc0053719b44f6ad04a75d7f05e0e9674d45ef62f2d9ad2c1163e5c05827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f60233b98423aab21d249a30eb27c389c14929f47be8430efa7dbd91493a729d
MD5 48ec7afac7d2e7d0c466e1fb17c15cd2
BLAKE2b-256 43c7669c52519dca4c95153c8ad96dd123c79f354a376346b198f438e56ffeb4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.20.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 495b4ef2fea40596bfc0affe3837411d6aa3371abcf31aac0ccc4bdd64d4ef5c
MD5 dc3692d9e1a93133fc0ad88fd48f2ab9
BLAKE2b-256 baba39b1ecbf51620b40ab402b0fc817f0ff750f6d92712b44689c2c215be89d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.20.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 468f6e40285de5a5b3c44981ca3a319a4b208ccc07d526b20b12aeedcfa654b7
MD5 d41e681eff7e1c9fa1e519d6f687b3db
BLAKE2b-256 837511ee332f2f516b3d094e89448da73d557687f7d137d5a0f48c40ff211487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 793fd0580cb9664548c6b83c63b43c477212c0260891ddf86809e1c06c8b08f1
MD5 9eb2d87f86619dca5a9effea6d1575dd
BLAKE2b-256 9c20200ae86dabfca89060ec6447649f219b4cbd94531e425e50d57e5f5ac330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 909313577e9619dcff8c31a0ea2aa0a2a828341d92673015456b3ae492e7317b
MD5 74f97f1187666f5d94c64ee56618c6d6
BLAKE2b-256 193ae54e2c4752160115183a66dc9ee75a153f81f3ab2ba4bf79c3c53b33de34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d25ddcf954df1754ab0f86bb696af765c5bfaba39b74095f27eececa049ef9a4
MD5 15f568f08f1ad55292fe632f42719e10
BLAKE2b-256 7caf4cc3c36dfc7c077f8dedb561eb21f69e1e9f2456b91b593882b0b18c19dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c92f4390e407513f619d49319023664643d3339bd5e5a56a3bebe01bc67ec04
MD5 af8ee232c708d5e0a67fbcbf243d7a10
BLAKE2b-256 dfa36a72fb83f8d478cb201d14927bc8040af901811a88e0ff2da7842dd0ed19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 377fae2fef158e8fd9d60b4c8751387b8d1fb121d3d0b8e9b0be07d1b41e83dc
MD5 a11c68dc9bfc937f49c6df533d8e8f19
BLAKE2b-256 e35b61a3b054238d33d70ea06ebba7e58597891b71c699e247df35cc984ab393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041eaa14f73ff5a8986b4388ac6bb43a77f2ea09bf1913df7a35d4646db69e53
MD5 867f326bffac5a4b040c63f7a28ca016
BLAKE2b-256 b48ec41a5bc482121f51c083c4c2bcd16b9e01e1cf8729e380273a952513a21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1a4fbb50e14396ba3d375f68bfe02215d8e7bc3ec49da8341fe3157f59d2ff5
MD5 80c4de04e0a2e34fc9791bdaddca0d35
BLAKE2b-256 af4446407d7f7a56e9a85a4c207724c9f2c545c060380718eea9088f222ba697

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3968ec7d92a0c0f9ac34d5ecfd03869ec0cab0697c91a45db3fbbd95fe1b653
MD5 8c6435df7cd3dcd2d5e123df32800fb6
BLAKE2b-256 bca0688cc99463f12f7669eec7c8acc71ef56a1521b99eab7cd3abb75af887b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_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.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59174e7332f5d153d8f7452a102b103e2e74035ad085f404df2e40e663a22b28
MD5 dfadce34579536a4b99d59bc6f5cf9a4
BLAKE2b-256 0be91312633d16b31acf0098d30440ca855e3492d66623dafb8e25b03d00c3da

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 66252d780b45189975abfed839616e8fd2dbacbdc262105ad7742c6ae58f3e31
MD5 67e68664a9558237d46d394303d4db21
BLAKE2b-256 282d8aca6cb2cabc8f12efcb82749b9cefecbccfc7b0384e56cd71058ccee433

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49bdd1b8e00ce57e68ba51916e4bb04461746e794e7c4d4bbc42ba2f18297691
MD5 ee257a8e276850e88c6bcd78e2753d13
BLAKE2b-256 a32535afe384e31115a1a801fbcf84012d7a066d89035befae7c5d4284df1e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11a62c839c3a8eac2410e951301309426f368388ff2f33799052787035793b02
MD5 99b1d13742221ed20fed6d98f2f6d0b0
BLAKE2b-256 b19131163295e82b8d5485d31d9cf7754d973d41915cadce070491778d9c9825

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f60e4ad5db23f0b96e49c018596707c3ae89f5d0bd97f0ad3684bcbad899f1e7
MD5 a38d334dd828d6e648e452bd2c2dd7de
BLAKE2b-256 bf9a3246ae92d4049099f52d9b0fe3486e3b500e29b7ea872d0f152966fc209d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14f326acd845c2b2e2eb38fb1346c94f7f3b01a4f5c788f8144f9b630bfff9a3
MD5 b566b4718388e8de91aa5b6bf308883f
BLAKE2b-256 b227584394e1cb76fb771371770eccad35de400e7b434ce3142c2dd27392c968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0b5ff0fbb7c9f1b1b5ab53330acbfc5247893069e7716840c8e7d5bb7355038a
MD5 74e457bf74a67f9fe6e11a946721d9d8
BLAKE2b-256 8ae12411b6d7f769a07687acee88a062af5833cf1966b7266f3d8dfb3d3dc7d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 48ea7d7f9be0487339828a4de0360d7ce0efc06524a48e1810f945c45b813698
MD5 af5572e4091c30ed4dd0be2ad537c778
BLAKE2b-256 eb835d9092950565481b413b31a23e75dd3418ff0a277d6e0abf3729d4d1ce25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 daea0d313868da1cf2fac6b2d3a25c6e3a9e879483244be38c8e6a41f1d876a5
MD5 3f4cd992a2babd1af021fd725e878016
BLAKE2b-256 35999918c8739ba271dcd935400cff8b32e3cd319eaf02fcd023d5dcd487a7c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 564ab3d517e3d01c408c67f2e5247aad4019dcf1969982aba3974b4093279004
MD5 fbfd03ea7bf9378afb0fed6a9a660a26
BLAKE2b-256 af859363f77bdfa1e4d690957cd39d192c4cacd1c58965df0470a4905253b54f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2c26b0c49220d5799f7b22c6838409ee9bc58ee5c95361a4d7831f03cc225b5a
MD5 4e651987a120388843e2ec804cee4b4f
BLAKE2b-256 92f89a3fbf0968eac704f681726eff595dce9b49c8a25cd92bf83df209668285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c5e9642f27036283550f5f57dc6156c51084b458570b9d0d96100c8bebb186a8
MD5 590256ee19c326654c3e2d96389aa0ac
BLAKE2b-256 34f208ed34a4a506d82a1a3e5bab99ccd930a040f9b6449e9fd050320e45845c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c3ae28f3ae1563c50f3d37f064ddb1511ecc1d5584e88c6b7c63cf7702a6d5f
MD5 3cf49ad40876a0a85f89268faacf6f37
BLAKE2b-256 ac99b8a142e79eb86c926f9f06452eb13ecb1bb5713bd01dc0038faf5452e544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c48912653e63aef91ff988c5432832692ac5a1d8f0fb8a33091520b5bbe19ef
MD5 1f67220b61f933ca3d3eaed282e0f21b
BLAKE2b-256 2ee3e4b0ad8403e97e6c9972dd587388940a032f030ebec196ab81a3b8e94d31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97c75596019baae7c71ccf1d8cc4738bc08134060d0adfcbe5642f778d1dca38
MD5 627c09d48ae98f4cc636dd2d57478431
BLAKE2b-256 f1815f466427e09773c04219d3450d7a1256138a010b6c9f0af2d48565e9ad13

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a97d67108e79cfe22e2b430d80d7571ae57d19f17cda8bb967057ca8a7bf5bfd
MD5 0e8c6797f0bb8becc819b1b1f124af2d
BLAKE2b-256 98283ab7acc5b51f4434b181b0cee8f1f4b77a65919700a355fb3617f9488874

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 255b468adf57b4a7b65d8aad5b5138dce6a0752c139965711bdcb81bc370e1b6
MD5 b8100247705a256a085b9c48aaf4e755
BLAKE2b-256 91b233a8750f6a4bc224242a635f5f2cff6d6ad5ba651f6edcccf721992c21a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_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.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a979218c1fdb4246a05efc2cc23859d47c89af463a90b99b7c56094daf25a16
MD5 9a324624b9c6a63f2e497d6a9e1877c1
BLAKE2b-256 d6959dcf2386cb875b234353b93ec43e40219e14900e046bf6ac118f94b1e353

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 680e19c7ce3710ac4cd964e90dad99bf9b5029372ba0c7cbfcd55e54d90ea819
MD5 ae25f6dcfc559761e9d905b77f804f7d
BLAKE2b-256 1a2654a15c6a567aac1c61b18aa0f4b8aa2e285a52d547d1be8bf48abe2b3991

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90bbd29c4fe234233f7fa2b9b121fb63c321830e5d05b45153a2ca68f7d310ee
MD5 d2e49c74bf4538be0c3da25ce987e814
BLAKE2b-256 99da4d798025490e89426e9f976702e5f9482005c548c579bdae792a4c37769e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8570d998db4ddbfb9a590b185a0a33dbf8aafb831d07a5257b4ec9948df9cb0a
MD5 8837c93dfe06e275d03883aafabc56d0
BLAKE2b-256 36a3f666894aa947a371724ec7cd2e5daa78ee8a777b21509b4252dd7bd15e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1112ae8154186dfe2de4732197f59c05a83dc814849a5ced892b708033f40dc2
MD5 5b421f0e76d5e672fa8ca36290f9c411
BLAKE2b-256 50ec72991ae51febeb11a42813fc259f0d4c8e0507f2b74b5514618d8b640365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b29a2c385a5f5b9c7d9347e5812b6f7ab267193c62d282a540b4fc528c8a9d2a
MD5 40c341a59294e843fa175f8a9f0c810f
BLAKE2b-256 6738688577a1cb1e656e3971fb66a3492501c5a5df56d99722e57c98249e5b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bdcc4cd244e58593a4379fe60fdee5ac0331f8eb70320a24d591a3be197b94a9
MD5 a6c0b208a0cd0e0f4e35bb37f4c26dd8
BLAKE2b-256 5f9acb7fad7d73c69f296eda6815e4a2c7ed53fc70c2f136479a91c8e5fbdb6d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26ef53a9e726e61e9cd1cda6b478f17e350fb5800b4bd1cd9fe81c4d91cfeb2e
MD5 31bf1d343d4d190edfd758dfc6a8ac83
BLAKE2b-256 f009d9c7942f8f05c32ec72cd5c8e041c8b29b5807328b68b4801ff2511d4d5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 597f40615b8d25812f14562699e287f0dcc035d25eb74da72cae043bb884d773
MD5 bf134619689b9b37cbbe216409f87fb1
BLAKE2b-256 504f62faab3b479dfdcb741fe9e3f0323e2a7d5cd1ab2edc73221d57ad4834b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86971e2795584fe8c002356d3b97ef6c61862720eeff03db2a7c86b678d85b3e
MD5 cf18b5545b6fb0fad7b45dac027abe0a
BLAKE2b-256 73be75ef5fd0fcd8f083a5d13f78fd3f009528132a1f2a1d7c925c39fa20aa79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 642980ef5e0fa1de5fa96d905c7e00cb2c47cb468bfcac5a18c58e27dbf8d8d1
MD5 3540f482da635c3a82961fd01ec31986
BLAKE2b-256 6b9b5b886d7671f4580209e855974fe1cecec409aa4a89ea58b8f0560dc529b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 03aa1e041727cb438ca762628109ef1333498b122e4c76dd858d186a37cec845
MD5 62b911a4811b3b50a4570a92f2f05a3d
BLAKE2b-256 f10db172628fce039dae8977fd22caeff3eeebffd52e86060413f5673767c427

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 daadbdc1f2a9033a2399c42646fbd46da7992e868a5fe9513860122d7fe7a73f
MD5 1639ca6d0cf4137986c4b6430a722a79
BLAKE2b-256 c3b0fce922d46dc1eb43c811f1889f7daa6001b27a4005587e94878570300881

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8601bc010d1d7780592f3fc1bdc6c72e2b6466ea34569778422943e1a1f3c389
MD5 44abd8f1a9cd3e765d440c7b2b733c1e
BLAKE2b-256 eb9073448401d36fa4e210ece5579895731f190d5119c4b66b43b52182e88cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe41919b9d899661c5c28a8b4b0acf704510b88f27f0934ac7a7bebdd8938d5e
MD5 ef63ff68a351d0246e1244674e43f60c
BLAKE2b-256 05be665634aa196954156741ea591d2f946f1b78ceee8bb8f28488bf28c0dd62

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c4a7d166635147924aa0bf9bfe8d8abad6fffa6102de9c99ea04a1376f91e8
MD5 f2331b7705d1a17422ed928f87c0c49e
BLAKE2b-256 00708f78a95d6935a70263d46caa3dd18e1f223cf2f2ff2037baa01a22bc5b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 812303eb4aa98e302886ccda58d6b099e3576b1b9276161469c25803a8db277d
MD5 8bcacaed65078eb26346a8a47b50099d
BLAKE2b-256 ea6da313ac8d8391381ff9006ac05f1d4331cee3b1efaa833a53d12253733255

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_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.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f969afbb0a9b63c18d0feecf0db09d164b7a44a053e78a7d05f5df163e43833
MD5 0c691ba1a8c892b19d2475a14a0ce5db
BLAKE2b-256 f0f3fc514f4b2cf02cb59d10cbfe228691d25929ce8f72a38db07d3febc3f706

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 df018d92fe22aaebb679a7f89fe0c0f368ec497e3dda6cb81a567610f04501f1
MD5 48e36f70493dd4bd78f4fc3b74f8ddb8
BLAKE2b-256 8dd20c7e4def093dcef0bd9fa22d4d24b023788b0a33b8d0088b51aa51e21e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bad6d131fda8ef508b36be3ece16d0902e80b88ea7200f030a0f6c11d9e508d4
MD5 2411a12433a5ea902a85a1012cba59f5
BLAKE2b-256 f87764d8431a4d77c856eb2d82aa3de2ad6741365245a29b3a9543cd598ed8c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12e768f966538e81e6e7550f9086a6236b16e26cd964cf4df35349970f3551cf
MD5 63252d6869e82a9ec9ed7e63d77960f5
BLAKE2b-256 cb0542773027968968f4f15143553970ee36ead27038d627f457cc44bbbeecf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a8900a42fcdaad568de58887c7b2f602962356908eedb7628eaf6021a6e435b
MD5 9dcc9eb63aaa1a65e779050197f0759a
BLAKE2b-256 e3e3409bd17b1e42619bf69f60e4f031ce1ccb29bd7380117a55529e76933464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0f6500f69e8402d513e5eedb77a4e1818691e8f45e6b687147963514d84b44b
MD5 ec95872f65b457cfc638f873cfaf590a
BLAKE2b-256 89edb8773448030e6fc47fa797f099ab9eab151a43a25717f9ac043844ad5ea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47ee6188fea634bdfaeb2cc420f5b3b17332e6225ce88149a17c413c77ff269e
MD5 4765b6eb9012060f9eb903cbed51a3c7
BLAKE2b-256 b118893b50efc2350e47a874c5c2d67e55a0ea5df91186b2a6f5ac52eff887cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-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.12.9

File hashes

Hashes for yarl-1.20.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aef6c4d69554d44b7f9d923245f8ad9a707d971e6209d51279196d8e8fe1ae16
MD5 39476f49e0e35864cb68fee104628e61
BLAKE2b-256 8f34e4abde70a9256465fe31c88ed02c3f8502b7b5dead693a4f350a06413f28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6c4fbf6b02d70e512d7ade4b1f998f237137f1417ab07ec06358ea04f69134f8
MD5 13404988fe19d3e536a629d6d98152a2
BLAKE2b-256 cea3eaa0ab9712f1f3d01faf43cf6f1f7210ce4ea4a7e9b28b489a2261ca8db9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76d12524d05841276b0e22573f28d5fbcb67589836772ae9244d90dd7d66aa13
MD5 4fae7c0cee66a0380c58183b799fa04e
BLAKE2b-256 03c8cea6b232cb4617514232e0f8a718153a95b5d82b5290711b201545825532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 df47c55f7d74127d1b11251fe6397d84afdde0d53b90bedb46a23c0e534f9d24
MD5 4988ca37fcb0146c173ab41850cb77c9
BLAKE2b-256 d190c42eefd79d0d8222cb3227bdd51b640c0c1d0aa33fe4cc86c36eccba77d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 46b5e0ccf1943a9a6e766b2c2b8c732c55b34e28be57d8daa2b3c1d1d4009309
MD5 6eb3ce06306146fa1c1241aeb6296ab2
BLAKE2b-256 7bf56cd4ff38dcde57a70f23719a838665ee17079640c77087404c3d34da6727

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 835ab2cfc74d5eb4a6a528c57f05688099da41cf4957cf08cad38647e4a83b30
MD5 62aa26de8edc99b08da7a915062e984a
BLAKE2b-256 f26560452df742952c630e82f394cd409de10610481d9043aa14c61bf846b7b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33f29ecfe0330c570d997bcf1afd304377f2e48f61447f37e846a6058a4d33b2
MD5 71232866f9560af3cd42e867f5db5195
BLAKE2b-256 20521e9d0e6916f45a8fb50e6844f01cb34692455f1acd548606cbda8134cd1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b982fa7f74c80d5c0c7b5b38f908971e513380a10fecea528091405f519b9ebb
MD5 11f6d38a02fae4e5723716882cf4b043
BLAKE2b-256 48aa0ace06280861ef055855333707db5e49c6e3a08840a7ce62682259d0a6c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f8a891e4a22a89f5dde7862994485e19db246b70bb288d3ce73a34422e55b23
MD5 afce857a38f4917e4ff5806f1e621089
BLAKE2b-256 6594e21269718349582eee81efc5c1c08ee71c816bfc1585b77d0ec3f58089eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bea21cdae6c7eb02ba02a475f37463abfe0a01f5d7200121b03e605d6a0439f8
MD5 998e6a61a60ba95b7e65d74cc537d1e8
BLAKE2b-256 3c95d7fc301cc4661785967acc04f54a4a42d5124905e27db27bb578aac49b5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_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.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21242b4288a6d56f04ea193adde174b7e347ac46ce6bc84989ff7c1b1ecea84e
MD5 4879ddc51534dd93eb8729460df69409
BLAKE2b-256 a5768fcfbf5fa2369157b9898962a4a7d96764b287b085b5b3d9ffae69cdefd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 41ebd28167bc6af8abb97fec1a399f412eec5fd61a3ccbe2305a18b84fb4ca73
MD5 a3d373584c59e411f71aa787d18c9d82
BLAKE2b-256 153f718d26f189db96d993d14b984ce91de52e76309d0fd1d4296f34039856aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62915e6688eb4d180d93840cda4110995ad50c459bf931b8b3775b37c264af1e
MD5 9d0373b801ebb83ccb2e1edd36103fbd
BLAKE2b-256 e07af2f314f5ebfe9200724b0b748de2186b927acb334cf964fd312eb86fc286

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd803820d44c8853a109a34e3660e5a61beae12970da479cf44aa2954019bf70
MD5 62d1d0967b67ebb21d0a354e8e98155b
BLAKE2b-256 32ae8616d1f07853704523519f6131d21f092e567c5af93de7e3e94b38d7f065

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c869f2651cc77465f6cd01d938d91a11d9ea5d798738c1dc077f3de0b5e5fed
MD5 3ae2b5adcda223ea7850e923fd0b59f8
BLAKE2b-256 f7de30d98f03e95d30c7e3cc093759982d038c8833ec2451001d45ef4854edc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c7b34d804b8cf9b214f05015c4fee2ebe7ed05cf581e7192c06555c71f4446a
MD5 b972555108fb08986cbff22e56c43a25
BLAKE2b-256 8a7b988f55a52da99df9e56dc733b8e4e5a6ae2090081dc2754fc8fd34e60aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6032e6da6abd41e4acda34d75a816012717000fa6839f37124a47fcefc49bec4
MD5 af5218f2a7765436e78e4dfdf3687d99
BLAKE2b-256 cb657fed0d774abf47487c64be14e9223749468922817b5e8792b8a64792a1bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eae7bfe2069f9c1c5b05fc7fe5d612e5bbc089a39309904ee8b829e322dcad00
MD5 77d6541784b887ada39dbf3664d38f34
BLAKE2b-256 d7cdce185848a7dba68ea69e932674b5c1a42a1852123584bccc5443120f857c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-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.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b5f307337819cdfdbb40193cad84978a029f847b0a357fbe49f712063cfc4f06
MD5 ad622b7139b53e559e7cdbaa995337fc
BLAKE2b-256 8d43bbb4ed4c34d5bb62b48bf957f68cd43f736f79059d4f85225ab1ef80f4b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 351.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69e9b141de5511021942a6866990aea6d111c9042235de90e08f94cf972ca03d
MD5 6d5d206bb06b6f0e2b052846be996072
BLAKE2b-256 7f09ae4a649fb3964324c70a3e2b61f45e566d9ffc0affd2b974cbf628957673

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-musllinux_1_2_s390x.whl
  • Upload date:
  • Size: 359.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2c89b5c792685dd9cd3fa9761c1b9f46fc240c2a3265483acc1565769996a3f8
MD5 e979e366af89b93d03a745e4d00c2bb6
BLAKE2b-256 e2318c389f6c6ca0379b57b2da87f1f126c834777b4931c5ee8427dd65d0ff6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 14a85f3bd2d7bb255be7183e5d7d6e70add151a98edf56a770d6140f5d5f4010
MD5 744253e3f07de67a2582b6ce69790c35
BLAKE2b-256 0d1c911867b8e8c7463b84dfdc275e0d99b04b66ad5132b503f184fe76be8ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 339.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dab096ce479d5894d62c26ff4f699ec9072269d514b4edd630a393223f45a0ee
MD5 b8bae2454d58ae9c19b4c7528c4372e2
BLAKE2b-256 d142040bdd5d3b3bb02b4a6ace4ed4075e02f85df964d6e6cb321795d2a6496a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 336.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57edc88517d7fc62b174fcfb2e939fbc486a68315d648d7e74d07fac42cec240
MD5 b88772ab7c68563d81292d1d53272889
BLAKE2b-256 c5c33f327bd3905a4916029bf5feb7f86dcf864c7704f099715f62155fb386b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7ddf7a09f38667aea38801da8b8d6bfe81df767d9dfc8c88eb45827b195cd1c
MD5 a60ae23cb112f15145af5e2ba36d932a
BLAKE2b-256 64abbe0b10b8e029553c10905b6b00c64ecad3ebc8ace44b02293a62579343f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-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.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9427925776096e664c39e131447aa20ec738bdd77c049c48ea5200db2237e000
MD5 6d9091205329c21ad9d434dd375f23d2
BLAKE2b-256 8558cb0257cbd4002828ff735f44d3c5b6966c4fd1fc8cc1cd3cd8a143fbc513

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 749d73611db8d26a6281086f859ea7ec08f9c4c56cec864e52028c8b328db723
MD5 6bf5a1c79e18395a92ce49016e923ab8
BLAKE2b-256 6d5528409330b8ef5f2f681f5b478150496ec9cf3309b149dab7ec8ab5cfa3f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_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.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2b6fb3622b7e5bf7a6e5b679a69326b4279e805ed1699d749739a61d242449e
MD5 b62b2813c5bef31290b4571eff6084ef
BLAKE2b-256 e71777c7a89b3c05856489777e922f41db79ab4faf58621886df40d812c7facd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_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.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 59febc3969b0781682b469d4aca1a5cab7505a4f7b85acf6db01fa500fa3f6ba
MD5 8ef3bedac71d3acadcf5292f8915c0b5
BLAKE2b-256 0fa25264dbebf90763139aeb0b0b3154763239398400f754ae19a0518b654117

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_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.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30c41ad5d717b3961b2dd785593b67d386b73feca30522048d37298fee981805
MD5 6ea69ea0bc53c993d8b6dc900b558540
BLAKE2b-256 fb30693e71003ec4bc1daf2e4cf7c478c417d0985e0a8e8f00b2230d517876fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff70f32aa316393eaf8222d518ce9118148eddb8a53073c2403863b41033eed5
MD5 0b3a77d9bdfd465c1a9d708e22ca06fa
BLAKE2b-256 53f6c77960370cfa46f6fb3d6a5a79a49d3abfdb9ef92556badc2dcd2748bc2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.20.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 90.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5a5928ff5eb13408c62a968ac90d43f8322fd56d87008b8f9dabf3c0f6ee983
MD5 512de24d718417e5e16ff06415a9e5d0
BLAKE2b-256 f39ceae746b24c4ea29a5accba9a06c197a70fa38a49c7df244e0d3951108861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41493b9b7c312ac448b7f0a42a089dffe1d6e6e981a2d76205801a023ed26a2b
MD5 0e84e0ef0b9c12615044ba7c7d6db682
BLAKE2b-256 73841fb6c85ae0cf9901046f07d0ac9eb162f7ce6d95db541130aa542ed377e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.20.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 134.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.12.9

File hashes

Hashes for yarl-1.20.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e42ba79e2efb6845ebab49c7bf20306c4edf74a0b20fc6b2ccdd1a219d12fad3
MD5 08b3aaf7045767de3ae1f1eabff8ee81
BLAKE2b-256 01750d37402d208d025afa6b5b8eb80e466d267d3fd1927db8e317d29a94a4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.1-cp39-cp39-macosx_10_9_universal2.whl:

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page