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.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.0.tar.gz (185.3 kB view details)

Uploaded Source

Built Distributions

yarl-1.20.0-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

yarl-1.20.0-cp313-cp313t-win_amd64.whl (101.1 kB view details)

Uploaded CPython 3.13t Windows x86-64

yarl-1.20.0-cp313-cp313t-win32.whl (93.8 kB view details)

Uploaded CPython 3.13t Windows x86

yarl-1.20.0-cp313-cp313t-musllinux_1_2_x86_64.whl (422.2 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp313-cp313t-musllinux_1_2_s390x.whl (423.8 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ s390x

yarl-1.20.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (423.1 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp313-cp313t-musllinux_1_2_i686.whl (407.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

yarl-1.20.0-cp313-cp313t-musllinux_1_2_armv7l.whl (402.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp313-cp313t-musllinux_1_2_aarch64.whl (416.2 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.3 kB view details)

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

yarl-1.20.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (411.7 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (390.2 kB view details)

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

yarl-1.20.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (408.2 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (384.0 kB view details)

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

yarl-1.20.0-cp313-cp313t-macosx_11_0_arm64.whl (103.8 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

yarl-1.20.0-cp313-cp313t-macosx_10_13_x86_64.whl (106.1 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

yarl-1.20.0-cp313-cp313t-macosx_10_13_universal2.whl (163.6 kB view details)

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

yarl-1.20.0-cp313-cp313-win_amd64.whl (92.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.20.0-cp313-cp313-win32.whl (86.1 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (378.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp313-cp313-musllinux_1_2_s390x.whl (382.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.20.0-cp313-cp313-musllinux_1_2_ppc64le.whl (374.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp313-cp313-musllinux_1_2_i686.whl (365.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (362.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (353.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (351.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (337.7 kB view details)

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

yarl-1.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (334.1 kB view details)

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

yarl-1.20.0-cp313-cp313-macosx_11_0_arm64.whl (94.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.20.0-cp313-cp313-macosx_10_13_x86_64.whl (96.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.20.0-cp313-cp313-macosx_10_13_universal2.whl (145.0 kB view details)

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

yarl-1.20.0-cp312-cp312-win_amd64.whl (92.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.20.0-cp312-cp312-win32.whl (86.4 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (375.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp312-cp312-musllinux_1_2_s390x.whl (378.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.20.0-cp312-cp312-musllinux_1_2_ppc64le.whl (373.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp312-cp312-musllinux_1_2_i686.whl (365.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.20.0-cp312-cp312-musllinux_1_2_armv7l.whl (360.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (360.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (354.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (353.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (339.6 kB view details)

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

yarl-1.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (337.3 kB view details)

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

yarl-1.20.0-cp312-cp312-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.20.0-cp312-cp312-macosx_10_13_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

yarl-1.20.0-cp312-cp312-macosx_10_13_universal2.whl (147.1 kB view details)

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

yarl-1.20.0-cp311-cp311-win_amd64.whl (93.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.20.0-cp311-cp311-win32.whl (86.6 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (381.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp311-cp311-musllinux_1_2_s390x.whl (383.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.20.0-cp311-cp311-musllinux_1_2_ppc64le.whl (378.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp311-cp311-musllinux_1_2_i686.whl (364.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.20.0-cp311-cp311-musllinux_1_2_armv7l.whl (356.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (365.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (369.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (344.6 kB view details)

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

yarl-1.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (346.6 kB view details)

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

yarl-1.20.0-cp311-cp311-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.20.0-cp311-cp311-macosx_10_9_x86_64.whl (96.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.20.0-cp311-cp311-macosx_10_9_universal2.whl (145.2 kB view details)

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

yarl-1.20.0-cp310-cp310-win_amd64.whl (92.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.20.0-cp310-cp310-win32.whl (86.7 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (351.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp310-cp310-musllinux_1_2_s390x.whl (359.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.20.0-cp310-cp310-musllinux_1_2_ppc64le.whl (351.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp310-cp310-musllinux_1_2_i686.whl (339.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.20.0-cp310-cp310-musllinux_1_2_armv7l.whl (335.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp310-cp310-musllinux_1_2_aarch64.whl (336.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (343.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (323.6 kB view details)

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

yarl-1.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (322.3 kB view details)

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

yarl-1.20.0-cp310-cp310-macosx_11_0_arm64.whl (94.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.20.0-cp310-cp310-macosx_10_9_x86_64.whl (96.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.20.0-cp310-cp310-macosx_10_9_universal2.whl (145.1 kB view details)

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

yarl-1.20.0-cp39-cp39-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.20.0-cp39-cp39-win32.whl (87.2 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.20.0-cp39-cp39-musllinux_1_2_s390x.whl (359.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.20.0-cp39-cp39-musllinux_1_2_i686.whl (343.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.20.0-cp39-cp39-musllinux_1_2_armv7l.whl (338.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

yarl-1.20.0-cp39-cp39-musllinux_1_2_aarch64.whl (341.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (348.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (325.4 kB view details)

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

yarl-1.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (328.2 kB view details)

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

yarl-1.20.0-cp39-cp39-macosx_11_0_arm64.whl (95.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.20.0-cp39-cp39-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.20.0-cp39-cp39-macosx_10_9_universal2.whl (146.7 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.20.0.tar.gz
  • Upload date:
  • Size: 185.3 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.0.tar.gz
Algorithm Hash digest
SHA256 686d51e51ee5dfe62dec86e4866ee0e9ed66df700d55c828a615640adc885307
MD5 ac630df1bf8ddc07d4ca6e98616373ba
BLAKE2b-256 6251c0edba5219027f6eab262e139f73e2417b0f4efffa23bf562f6e18f76ca5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: yarl-1.20.0-py3-none-any.whl
  • Upload date:
  • Size: 46.1 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5d0fe6af927a47a230f31e6004621fd0959eaa915fc62acfafa67ff7229a3124
MD5 1a68aad20486d187ef2c5b6158fd0a82
BLAKE2b-256 ea1f70c57b3d7278e94ed22d85e09685d3f0a38ebdd8c5c73b65ba4c0d0fe002

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: yarl-1.20.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 101.1 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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 53b2da3a6ca0a541c1ae799c349788d480e5144cac47dba0266c7cb6c76151fe
MD5 a73e1e1b4b741b3320c71b181efa1d74
BLAKE2b-256 3f93f73b61353b2a699d489e782c3f5998b59f974ec3156a2050a52dfd7e8946

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: yarl-1.20.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 93.8 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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 65a4053580fe88a63e8e4056b427224cd01edfb5f951498bfefca4052f0ce0ac
MD5 93f013d071f0a00e65cd00e6a393cca4
BLAKE2b-256 edf7f0f2500cf0c469beb2050b522c7815c575811627e6d3eb9ec7550ddd0bfe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e429857e341d5e8e15806118e0294f8073ba9c4580637e59ab7b238afca836f
MD5 07fc2cb47d8dba86a37caf88072f2452
BLAKE2b-256 9e3543fbbd082708fa42e923f314c24f8277a28483d219e049552e5007a9aaca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3b60a86551669c23dc5445010534d2c5d8a4e012163218fc9114e857c0586fdd
MD5 5f4cd17d67f14321d7501b79ba5e4a24
BLAKE2b-256 4cf60873a05563e5df29ccf35345a6ae0ac9e66588b41fdb7043a65848f03139

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f106e75c454288472dbe615accef8248c686958c2e7dd3b8d8ee2669770d020f
MD5 583b26929fd02222812b82352bad22ce
BLAKE2b-256 fda4022d2555c1e8fcff08ad7f0f43e4df3aba34f135bff04dd35d5526ce54ab

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 798a5074e656f06b9fad1a162be5a32da45237ce19d07884d0b67a0aa9d5fdda
MD5 5f455a08903dd859b543203d62a01d3d
BLAKE2b-256 1097c7bf5fba488f7e049f9ad69c1b8fdfe3daa2e8916b3d321aa049e361a55a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2cbca6760a541189cf87ee54ff891e1d9ea6406079c66341008f7ef6ab61145
MD5 7148b29e274c3c90877964a08bd1dc30
BLAKE2b-256 cb3a54c828dd35f6831dfdd5a79e6c6b4302ae2c5feca24232a83cb75132b205

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c2aa4387de4bc3a5fe158080757748d16567119bef215bec643716b4fbf53f9
MD5 02013c33da5b9ce83e129c3e34932b85
BLAKE2b-256 6a36b0fa25226b03d3f769c68d46170b3e92b00ab3853d73127273ba22474697

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c366b254082d21cc4f08f522ac201d0d83a8b8447ab562732931d31d80eb2a5
MD5 72fcf41089410550555c0ab5d6016145
BLAKE2b-256 8370be418329eae64b9f1b20ecdaac75d53aef098797d4c2299d82ae6f8e4663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d9949eaf05b4d30e93e4034a7790634bbb41b8be2d07edd26754f2e38e491de
MD5 d2c93bc28b3a458908dd99990a68e72d
BLAKE2b-256 5caff0823d7e092bfb97d24fce6c7269d67fcd1aefade97d0a8189c4452e4d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a8f64df8ed5d04c51260dbae3cc82e5649834eebea9eadfd829837b8093eb00
MD5 ec81febd3740eecfb94ef95cb1e8233c
BLAKE2b-256 4115cc248f0504610283271615e85bf38bc014224122498c2016d13a3a1b8426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5d3d6d14754aefc7a458261027a562f024d4f6b8a798adb472277f675857b1eb
MD5 2c76e56312f82860bf2368d9005a6034
BLAKE2b-256 0fa166f7ffc0915877d726b70cc7a896ac30b6ac5d1d2760613603b022173635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f166eafa78810ddb383e930d62e623d288fb04ec566d1b4790099ae0f31485f1
MD5 79c2b7b95d09c5e79edf22d24e23e711
BLAKE2b-256 28f4a2a4c967c8323c03689383dff73396281ced3b35d0ed140580825c826af7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91bc450c80a2e9685b10e34e41aef3d44ddf99b3a498717938926d05ca493f6a
MD5 5f64b9050c6b63db4f983d6c06a0960b
BLAKE2b-256 19f552e02f0075f65b4914eb890eea1ba97e6fd91dd821cc33a623aa707b2f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84aeb556cb06c00652dbf87c17838eb6d92cfd317799a8092cee0e570ee11229
MD5 1040cbdf3ea79ed5ad0edcac5f9cc438
BLAKE2b-256 6d0029366b9eba7b6f6baed7d749f12add209b987c4cfbfa418404dbadc0f97c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8681700f4e4df891eafa4f69a439a6e7d480d64e52bf460918f58e443bd3da7d
MD5 3f510abd3d4101e3fe8796b185bcbf38
BLAKE2b-256 90fc67c64ddab6c0b4a169d03c637fb2d2a212b536e1989dec8e7e2c92211b7f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b6c4c3d0d6a0ae9b281e492b1465c72de433b782e6b5001c8e7249e085b69051
MD5 51203c36ffbead71f36ccd3d1609e7de
BLAKE2b-256 d42f422546794196519152fc2e2f475f0e1d4d094a11995c81a465faf5673ffd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: yarl-1.20.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 92.7 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4c43030e4b0af775a85be1fa0433119b1565673266a70bf87ef68a9d5ba3174c
MD5 709fc45db32f0ba17f1f325208dfb1e1
BLAKE2b-256 525605fa52c32c301da77ec0b5f63d2d9605946fe29defacb2a7ebd473c23b81

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: yarl-1.20.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 86.1 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 70e0c580a0292c7414a1cead1e076c9786f685c1fc4757573d2967689b370e62
MD5 c54134a64fb20fb2a8c4373b7a62f696
BLAKE2b-256 fdbe29f5156b7a319e4d2e5b51ce622b4dfb3aa8d8204cd2a8a339340fbfad40

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb769ae5760cd1c6a712135ee7915f9d43f11d9ef769cb3f75a23e398a92d384
MD5 bb2792ee097ac51b27391c7472d3e645
BLAKE2b-256 74a94fdb1a7899f1fb47fd1371e7ba9e94bff73439ce87099d5dd26d285fffe0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 95fc9876f917cac7f757df80a5dda9de59d423568460fe75d128c813b9af558e
MD5 5265a26562dd19307a795b012b59eec5
BLAKE2b-256 620b078bcc2d539f1faffdc7d32cb29a2d7caa65f1a6f7e40795d8485db21851

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f9d02b591a64e4e6ca18c5e3d925f11b559c763b950184a64cf47d74d7e41877
MD5 bb45fc83df9c4832d624071c4bcb2710
BLAKE2b-256 b4deaf47d3a47e4a833693b9ec8e87debb20f09d9fdc9139b207b09a3e6cbd5a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7dc63ad0d541c38b6ae2255aaa794434293964677d5c1ec5d0116b0e308031f5
MD5 568db43ee58ce092c6bc758f80f294cb
BLAKE2b-256 8183450938cccf732466953406570bdb42c62b5ffb0ac7ac75a1f267773ab5c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04d8cfb12714158abf2618f792c77bc5c3d8c5f37353e79509608be4f18705c9
MD5 3a292e64832035bf13fac8c6440ec885
BLAKE2b-256 147c63f5922437b873795d9422cbe7eb2509d4b540c37ae5548a4bb68fd2c546

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a34c52ed158f89876cba9c600b2c964dfc1ca52ba7b3ab6deb722d1d8be6df2
MD5 439eed8413ae32f3ee65697814abbd85
BLAKE2b-256 efb2986bd82aa222c3e6b211a69c9081ba46484cffa9fab2a5235e8d18ca7a27

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 123393db7420e71d6ce40d24885a9e65eb1edefc7a5228db2d62bcab3386a5c0
MD5 96b2aa5031951959a0e3fe4ac4a0feee
BLAKE2b-256 989dd9cb39ec68a91ba6e66fa86d97003f58570327d6713833edf7ad6ce9dde5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af4baa8a445977831cbaa91a9a84cc09debb10bc8391f128da2f7bd070fc351d
MD5 9d219c8e17738b4da05c5cfb705f30f2
BLAKE2b-256 45cbaaaa75d30087b5183c7b8a07b4fb16ae0682dd149a1719b3a28f54061754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d9b980d7234614bc4674468ab173ed77d678349c860c3af83b1fffb6a837ddc
MD5 5ae85044748d559424fcc10f3e45ae66
BLAKE2b-256 7d6b0eade8e49af9fc2585552f63c76fa59ef469c724cc05b29519b19aa3a6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4345f58719825bba29895011e8e3b545e6e00257abb984f9f27fe923afca2501
MD5 93c4f56495af82aeae658f36a4076923
BLAKE2b-256 4a12b5eccd1109e2097bcc494ba7dc5de156e41cf8309fab437ebb7c2b296ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18e321617de4ab170226cd15006a565d0fa0d908f11f724a2c9142d6b2812ab0
MD5 e4603ded6a7165ba863856f5d7b8cd62
BLAKE2b-256 e9ee7ee43bd4cf82dddd5da97fcaddb6fa541ab81f3ed564c42f146c83ae17ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab47acc9332f3de1b39e9b702d9c916af7f02656b2a86a474d9db4e53ef8fd7a
MD5 124b7632c807c2e8d5cfc2246c2620ab
BLAKE2b-256 726b103940aae893d0cc770b4c36ce80e2ed86fcb863d48ea80a752b8bda9303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42fbe577272c203528d402eec8bf4b2d14fd49ecfec92272334270b850e9cd7d
MD5 65dc4966eed8560610d5d7b478496550
BLAKE2b-256 cd5792e83538580a6968b2451d6c89c5579938a7309d4785748e8ad42ddafdce

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 447c5eadd750db8389804030d15f43d30435ed47af1313303ed82a62388176d3
MD5 f9dc0e2071c03edbc4b5a9062eab69f9
BLAKE2b-256 4e9df88da3fa319b8c9c813389bfb3463e8d777c62654c7168e580a13fadff05

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2137810a20b933b1b1b7e5cf06a64c3ed3b4747b0e5d79c9447c00db0e2f752f
MD5 a2f12c74ab7aee8e09301d3786cb20fc
BLAKE2b-256 0f6f514c9bff2900c22a4f10e06297714dbaf98707143b37ff0bcba65a956221

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yarl-1.20.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 92.9 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d7dbbe44b443b0c4aa0971cb07dcb2c2060e4a9bf8d1301140a33a93c98e18c
MD5 614f74dea0372fe92be1ba9ae51c3807
BLAKE2b-256 cac6333fe0338305c0ac1c16d5aa7cc4841208d3252bbe62172e0051006b5445

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-win_amd64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: yarl-1.20.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 86.4 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 839de4c574169b6598d47ad61534e6981979ca2c820ccb77bf70f4311dd2cc64
MD5 5e9f582f97ffc3ed4cb1c95c0ab6fe98
BLAKE2b-256 3b2add7ed1aa23fea996834278d7ff178f215b24324ee527df53d45e34d21d28

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-win32.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 737e9f171e5a07031cbee5e9180f6ce21a6c599b9d4b2c24d35df20a52fabf4b
MD5 bad77b96d94b1ffefa5e1952d49035cf
BLAKE2b-256 3a586c460bbb884abd2917c3eef6f663a4a873f8dc6f498561fc0ad92231c113

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 33bb660b390a0554d41f8ebec5cd4475502d84104b27e9b42f5321c5192bfcd1
MD5 63e9ce02c251f55eb941e9f571d636ec
BLAKE2b-256 3d897519e79e264a5f08653d2446b26d4724b01198a93a74d2e259291d538ab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 866349da9d8c5290cfefb7fcc47721e94de3f315433613e01b435473be63daa6
MD5 0ffc11805c15c623dd8799441bcca876
BLAKE2b-256 c99933f3b97b065e62ff2d52817155a89cfa030a1a9b43fee7843ef560ad9603

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2586e36dc070fc8fad6270f93242124df68b379c3a251af534030a4a33ef594
MD5 154ba3da16cfcec5eeb340b87abd7f11
BLAKE2b-256 bde8c3f18660cea1bc73d9f8a2b3ef423def8dadbbae6c4afabdb920b73e0ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25b3bc0763a7aca16a0f1b5e8ef0f23829df11fb539a1b70476dcab28bd83da7
MD5 e17a39250375cee3723ae1a359355e6f
BLAKE2b-256 7767c8ab718cb98dfa2ae9ba0f97bf3cbb7d45d37f13fe1fbad25ac92940954e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54ac15a8b60382b2bcefd9a289ee26dc0920cf59b05368c9b2b72450751c6eb8
MD5 d3144811702c493d2e25b0c1fbc7b2ef
BLAKE2b-256 33a66efa1d85a675d25a46a167f9f3e80104cde317dfdf7f53f112ae6b16a60a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf099e2432131093cc611623e0b0bcc399b8cddd9a91eded8bfb50402ec35018
MD5 785995243a9971dca13f2cc95eb7b2e0
BLAKE2b-256 1545212604d3142d84b4065d5f8cab6582ed3d78e4cc250568ef2a36fe1cf0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c903e0b42aab48abfbac668b5a9d7b6938e721a6341751331bcd7553de2dcae
MD5 2ffde696304922ae2b1ef497ef560c8a
BLAKE2b-256 261707dfcf034d6ae8837b33988be66045dd52f878dfb1c4e8f80a7343f677be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b2992fe29002fd0d4cbaea9428b09af9b8686a9024c840b8a2b8f4ea4abc16f
MD5 a6605dfea9389116c063d74a7f3a3fad
BLAKE2b-256 482f11566f1176a78f4bafb0937c0072410b1b0d3640b297944a6a7a556e1d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 69df35468b66c1a6e6556248e6443ef0ec5f11a7a4428cf1f6281f1879220f58
MD5 b426a8c442b4a768bfbb4ab9cda2cd1b
BLAKE2b-256 49fd047535d326c913f1a90407a3baf7ff535b10098611eaef2c527e32e81ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 087e9731884621b162a3e06dc0d2d626e1542a617f65ba7cc7aeab279d55ad33
MD5 40cace2d1c75773bfc569e7b85bb9b67
BLAKE2b-256 2d4e929633b249611eeed04e2f861a14ed001acca3ef9ec2a984a757b1515889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a7f62f5dc70a6c763bec9ebf922be52aa22863d9496a9a30124d65b489ea672
MD5 08e696f3262109f2c6a60cd95e7c8e56
BLAKE2b-256 e6e0a10b30f294111c5f1c682461e9459935c17d467a760c21e1f7db400ff499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d12b8945250d80c67688602c891237994d203d42427cb14e36d1a732eda480e
MD5 a3d1220e566ab7b8d9ccba8079b647bd
BLAKE2b-256 0c5b45cdfb64a3b855ce074ae607b9fc40bc82e7613b94e7612b030255c93a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-macosx_11_0_arm64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9ae2fbe54d859b3ade40290f60fe40e7f969d83d482e84d2c31b9bff03e359e
MD5 d857167d6fd85e27447575e0f0cfd32b
BLAKE2b-256 60c39e776e98ea350f76f94dd80b408eaa54e5092643dbf65fd9babcffb60509

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e06b9f6cdd772f9b665e5ba8161968e11e403774114420737f7884b5bd7bdf6f
MD5 a578553f3d0831f6aed0f874086fe0c6
BLAKE2b-256 c3e83efdcb83073df978bb5b1a9cc0360ce596680e6c3fac01f2a994ccbb8939

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp312-cp312-macosx_10_13_universal2.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yarl-1.20.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 93.4 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8c12cd754d9dbd14204c328915e23b0c361b88f3cffd124129955e60a4fbfcfb
MD5 e32e2f08f6f8fe430e86e59d67f8df47
BLAKE2b-256 3346ca335c2e1f90446a77640a45eeb1cd8f6934f2c6e4df7db0f0f36ef9f025

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-win_amd64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: yarl-1.20.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 86.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 db243357c6c2bf3cd7e17080034ade668d54ce304d820c2a58514a4e51d0cfd6
MD5 4190b89b640104b275aa303461a78e5a
BLAKE2b-256 85b026f87df2b3044b0ef1a7cf66d321102bdca091db64c5ae853fcb2171c031

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-win32.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40ed574b4df723583a26c04b298b283ff171bcc387bc34c2683235e2487a65a5
MD5 47c3192cf7280cb15356720fddc26d3a
BLAKE2b-256 891ea59253a87b35bfec1a25bb5801fb69943330b67cfd266278eb07e0609012

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c9471ca18e6aeb0e03276b5e9b27b14a54c052d370a9c0c04a68cefbd1455eb4
MD5 9221ab76607266d18d0a5b11f985b322
BLAKE2b-256 c7ce1f50c1cc594cf5d3f5bf4a9b616fca68680deaec8ad349d928445ac52eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a0bc5e05f457b7c1994cc29e83b58f540b76234ba6b9648a4971ddc7f6aa52da
MD5 8754882efc27fb3c509b6e2db80eff8a
BLAKE2b-256 1bb09d9198d83a622f1c40fdbf7bd13b224a6979f2e1fc2cf50bfb1d8773c495

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd59c9dd58ae16eaa0f48c3d0cbe6be8ab4dc7247c3ff7db678edecbaf59327f
MD5 fb9261541c27284759c91eb72dba4b91
BLAKE2b-256 0476898ae362353bf8f64636495d222c8014c8e5267df39b1a9fe1e1572fb7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86de313371ec04dd2531f30bc41a5a1a96f25a02823558ee0f2af0beaa7ca791
MD5 eb48ecdbad7e0d28e0daea5e7a600561
BLAKE2b-256 0284e25ddff4cbc001dbc4af76f8d41a3e23818212dd1f0a52044cbc60568872

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6a1e6ae21cdd84011c24c78d7a126425148b24d437b5702328e4ba640a8902
MD5 b69b85e9a093620c5e9c944d6d3c6858
BLAKE2b-256 a01ad6087d58bdd0d8a2a37bbcdffac9d9721af6ebe50d85304d9f9b57dfd862

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0acfaf1da020253f3533526e8b7dd212838fdc4109959a2c53cafc6db611bff2
MD5 d7e78742fe5625c4358e83b06ddf9b80
BLAKE2b-256 9c85d793a703cf4bd0d4cd04e4b13cc3d44149470f790230430331a0c1f52df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 077989b09ffd2f48fb2d8f6a86c5fef02f63ffe6b1dd4824c76de7bb01e4f2e2
MD5 158023f60be811964f93d1500952f93c
BLAKE2b-256 5f9b5bd09d2f1ad6e6f7c2beae9e50db78edd2cca4d194d227b958955573e240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8703517b924463994c344dcdf99a2d5ce9eca2b6882bb640aa555fb5efc706a
MD5 03cc08166aa464f8c3cccc40ffd86574
BLAKE2b-256 d70e517aa28d3f848589bae9593717b063a544b86ba0a807d943c70f48fcf3bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ea52f7328a36960ba3231c6677380fa67811b414798a6e071c7085c57b6d20a9
MD5 63a498d87de4cc47a2c8e298959d9eaa
BLAKE2b-256 266db4892c80b805c42c228c6d11e03cafabf81662d371b0853e7f0f513837d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d409e321e4addf7d97ee84162538c7258e53792eb7c6defd0c33647d754172e
MD5 03cd5d89487a5ded22664c146e05bf22
BLAKE2b-256 2c298f291e7922a58a21349683f6120a85701aeefaa02e9f7c8a2dc24fe3f431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4230ac0b97ec5eeb91d96b324d66060a43fd0d2a9b603e3327ed65f084e41f8
MD5 1341798763554a9212e4a04e8b623158
BLAKE2b-256 6f54b6c71e13549c1f6048fbc14ce8d930ac5fb8bafe4f1a252e621a24f3f1f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 634b7ba6b4a85cf67e9df7c13a7fb2e44fa37b5d34501038d174a63eaac25ee2
MD5 c2ce15bf569d0238ed39d4d4365acefb
BLAKE2b-256 ad179b64e575583158551b72272a1023cdbd65af54fe13421d856b2850a6ddb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-macosx_11_0_arm64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eaddd7804d8e77d67c28d154ae5fab203163bd0998769569861258e525039d2a
MD5 f48895d94d1876f05b16442f209bfc76
BLAKE2b-256 ba81315a3f6f95947cfbf37c92d6fbce42a1a6207b6c38e8c2b452499ec7d449

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fdb5204d17cb32b2de2d1e21c7461cabfacf17f3645e4b9039f210c5d3378bf3
MD5 47caaaec23545b4a01ee7b6075efe7fa
BLAKE2b-256 6082a59d8e21b20ffc836775fa7daedac51d16bb8f3010c4fcb495c4496aa922

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp311-cp311-macosx_10_9_universal2.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.20.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 92.9 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bc906b636239631d42eb8a07df8359905da02704a868983265603887ed68c076
MD5 6a44f552e534cf2e9d81cccd2b169572
BLAKE2b-256 db1f5c1952f3d983ac3f5fb079b5b13b62728f8a73fd27d03e1cef7e476addff

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-win_amd64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: yarl-1.20.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 86.7 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f4d3fa9b9f013f7050326e165c3279e22850d02ae544ace285674cb6174b5d6d
MD5 4e970be0c97e3a21b500afa2259baea9
BLAKE2b-256 2504c6754f5ae2cdf057ac094ac01137c17875b629b1c29ed75354626a755375

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-win32.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c27d98f4e5c4060582f44e58309c1e55134880558f1add7a87c1bc36ecfade19
MD5 7136a9240401502a0a587d0b999c240e
BLAKE2b-256 8a15de7906c506f85fb476f0edac4bd74569f49e5ffdcf98e246a0313bf593b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 06d06c9d5b5bc3eb56542ceeba6658d31f54cf401e8468512447834856fb0e61
MD5 db2b91eca0075bd67d0fbe95861456de
BLAKE2b-256 833c08d58c51bbd3899be3e7e83cd7a691fdcf3b9f78b8699d663ecc2c090ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ce360ae48a5e9961d0c730cf891d40698a82804e85f6e74658fb175207a77cb2
MD5 17e56e88c909e4f45e471c09684c1335
BLAKE2b-256 be12ab6c4df95f00d7bc9502bf07a92d5354f11d9d3cb855222a6a8d2bd6e8da

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e52d6ed9ea8fd3abf4031325dc714aed5afcbfa19ee4a89898d663c9976eb487
MD5 92e67d1a262bae7b6efcf27d77cdf960
BLAKE2b-256 37aac2339683f8f05f4be16831b6ad58d04406cf1c7730e48a12f755da9f5ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d88cc43e923f324203f6ec14434fa33b85c06d18d59c167a0637164863b8e995
MD5 bf4547d203d314fe3f792b5aaae9257f
BLAKE2b-256 dd42417fd7b8da5846def29712370ea8916a4be2553de42a2c969815153717be

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb0caeac4a164aadce342f1597297ec0ce261ec4532bbc5a9ca8da5622f53867
MD5 d40a1c0737a68f681c9d9bf0cbcfc6c9
BLAKE2b-256 e2c6c3ac3597dfde746c63c637c5422cf3954ebf622a8de7f09892d20a68900d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 083ce0393ea173cd37834eb84df15b6853b555d20c52703e21fbababa8c129d2
MD5 e52e4f191c3edd8be2fc27156f56fec2
BLAKE2b-256 8bfd10fcf7d86f49b1a11096d6846257485ef32e3d3d322e8a7fdea5b127880c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b594113a301ad537766b4e16a5a6750fcbb1497dcc1bc8a4daae889e6402a634
MD5 96743b4297bc8830ea116f3f2bba447c
BLAKE2b-256 ba4ad1c901d0e2158ad06bb0b9a92473e32d992f98673b93c8a06293e091bab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95b50910e496567434cb77a577493c26bce0f31c8a305135f3bda6a2483b8e10
MD5 f5314d53b81eb4e2047fd45c7f049471
BLAKE2b-256 07df2506b1382cc0c4bb0d22a535dc3e7ccd53da9a59b411079013a7904ac35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 af5607159085dcdb055d5678fc2d34949bd75ae6ea6b4381e784bbab1c3aa195
MD5 ae8afa59704f1fd324b4acbd1fddebdf
BLAKE2b-256 1aa458f10870f5c17595c5a37da4c6a0b321589b7d7976e10570088d445d0f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7595498d085becc8fb9203aa314b136ab0516c7abd97e7d74f7bb4eb95042abe
MD5 91e176b32a6b6e2afb7c60b7af5ca5b2
BLAKE2b-256 c821e0aa650bcee881fb804331faa2c0f9a5d6be7609970b2b6e3cdd414e174b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f1a350a652bbbe12f666109fbddfdf049b3ff43696d18c9ab1531fbba1c977a
MD5 67c17dc1c8d7a5728599df0511dc8329
BLAKE2b-256 e2cdbae926a25154ba31c5fd15f2aa6e50a545c840e08d85e2e2e0807197946b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a06701b647c9939d7019acdfa7ebbfbb78ba6aa05985bb195ad716ea759a569
MD5 f7d705bd7c0f5e97f6b6d968e285c057
BLAKE2b-256 c74591e31dccdcf5b7232dcace78bd51a1bb2d7b4b96c65eece0078b620587d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-macosx_11_0_arm64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85a231fa250dfa3308f3c7896cc007a47bc76e9e8e8595c20b7426cac4884c62
MD5 970f66f40a19951824b2d81006385af9
BLAKE2b-256 3dc24e78185c453c3ca02bd11c7907394d0410d26215f9e4b7378648b3522a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f1f6670b9ae3daedb325fa55fbe31c22c8228f6e0b513772c2e1c623caa6ab22
MD5 99329bbe95881d2d4d22e480bc12fb5a
BLAKE2b-256 00ab66082639f99d7ef647a86b2ff4ca20f8ae13bd68a6237e6e166b8eb92edf

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp310-cp310-macosx_10_9_universal2.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yarl-1.20.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 93.5 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d4fad6e5189c847820288286732075f213eabf81be4d08d6cc309912e62be5b7
MD5 b945fc4c10fbf0f87905554351b1e940
BLAKE2b-256 1cbc80f16fc58cb3b61b15450eaf6c874d9c984c96453d9024b9d0aa4655dac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-win_amd64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: yarl-1.20.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 87.2 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b7fa0cb9fd27ffb1211cde944b41f5c67ab1c13a13ebafe470b1e206b8459da8
MD5 c01a62b17670017c4d28698eab8dd385
BLAKE2b-256 1b59c7f929d7cd7c1f0c918c38aca06d07cac2e4f3577a95fe3a836b3079a3ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-win32.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44869ee8538208fe5d9342ed62c11cc6a7a1af1b3d0bb79bb795101b6e77f6e0
MD5 720420736fb67dae9e96acef9edee07f
BLAKE2b-256 e0d5369f994369a7233fcd81f642553062d4f6c657a93069b58258b9046bb87d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 faa709b66ae0e24c8e5134033187a972d849d87ed0a12a0366bedcc6b5dc14a5
MD5 2442bfd3ecab5600d7d0cd96dd5ac888
BLAKE2b-256 c0ab754b60a5c8be8abaa746543555612b2205ba60c194fc3a0547a34e0b6a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 04d9c7a1dc0a26efb33e1acb56c8849bd57a693b85f44774356c92d610369efa
MD5 c06b78115eac281099ddd7f3ae3a973b
BLAKE2b-256 71d37102efd34ed22e6839361f30a27bdad341c0a01f66fcbf09822a1d90b853

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27359776bc359ee6eaefe40cb19060238f31228799e43ebd3884e9c589e63b20
MD5 6a421cf7f3c63fa4e4e9265ba4b929d3
BLAKE2b-256 01b25fd461fe8ab3bb788e19ef6c35a3453f44a5c0d6973f847a08060c4d6183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0bf955b96ea44ad914bc792c26a0edcd71b4668b93cbcd60f5b0aeaaed06c64
MD5 1b0cdfd1630de8fd9cad84e727ee4a7b
BLAKE2b-256 3759f607a63c24b31c66cf288cb819d8dbcac2bd9ec90f39bd03986f33a866b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ba5e59f14bfe8d261a654278a0f6364feef64a794bd456a8c9e823071e5061c
MD5 30353c948b0811443194a832556b2ec6
BLAKE2b-256 6bc83fc10db34e731a426baaff348aa1b2c0eb9cb93ff723af4e930e767c058e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b4e88d6c3c8672f45a30867817e4537df1bbc6f882a91581faf1f6d9f0f1b5a
MD5 56129f86cd57a796df9fe085e387e778
BLAKE2b-256 e87c2fc733090c6fce82ea5c50f431e70f5dff196d7b54da93b9d6e801031dd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8d8aa8dd89ffb9a831fedbcb27d00ffd9f4842107d52dc9d57e64cb34073d5c
MD5 8a41139796b7fcc25d0e43f9c9fadbeb
BLAKE2b-256 56d900d5525a2c5e5c66967eaa03866bef6317da4b129ae016582c6641826974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a884b8974729e3899d9287df46f015ce53f7282d8d3340fa0ed57536b440621c
MD5 afdb21f7cd6cda43974701bd9672100a
BLAKE2b-256 0b4c07aef11f7f23a41049eb0b3b357ceb32bd9798f62042858e0168be9f6f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f0cf05ae2d3d87a8c9022f3885ac6dea2b751aefd66a4f200e408a61ae9b7f0d
MD5 de26e656229ec9bb501c80e8b9220691
BLAKE2b-256 e0c1112c516bead873c83abe30e08143714d702d1fffdfed43dc103312b81666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d8a3d54a090e0fff5837cd3cc305dd8a07d3435a088ddb1f65e33b322f66a94
MD5 59ee1c56bbaf763d8277121d80ad104d
BLAKE2b-256 bf8d48edf4d49ca38e5229faf793276bdd6f01704740dcf519cf1d282acac6c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdb77efde644d6f1ad27be8a5d67c10b7f769804fff7a966ccb1da5a4de4b656
MD5 95b206213820a172d9cfb8f4c394c0c1
BLAKE2b-256 4bce6b22de535b7bc7b19f3cf23c4e744cd2368fa11a0c8f218dfd2ef46b6c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 484e7a08f72683c0f160270566b4395ea5412b4359772b98659921411d32ad26
MD5 589c53ce4e122fa693ad0a43c67f87e1
BLAKE2b-256 8c3e665501121ba7c712a0f1b58d8ee01d7633096671fbeec4cf3dc4e4357a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-macosx_11_0_arm64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35d20fb919546995f1d8c9e41f485febd266f60e55383090010f272aca93edcc
MD5 ff097b6e3c4a134522a42fa4c8c30f7d
BLAKE2b-256 124337f2d17e0b82d4f01b2da1fe53a19ff95be6d7d9902cad11d3ebbef5bc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.20.0-cp39-cp39-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file yarl-1.20.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.20.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 119bca25e63a7725b0c9d20ac67ca6d98fa40e5a894bd5d4686010ff73397914
MD5 dc98f500d1d8c471f431e3c6a60f30a5
BLAKE2b-256 bc953d22e1d2fa6dce3670d820a859f4fc5526400c58019650d2da4e19b9924d

See more details on using hashes here.

Provenance

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

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

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

Supported by

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