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

(2025-12-16)

Features

  • Added support for pydantic, the ~yarl.URL could be used as a field type in pydantic models seamlessly.

    Related issues and pull requests on GitHub: #1607.

Packaging updates and notes for downstreams

  • The CI has been set up to notify Codecov about upload completion – by @webknjaz.

    With this, Codecov no longer needs to guess whether it received all the intended coverage reports or not.

    Related issues and pull requests on GitHub: #1577.

  • The in-tree build backend allows the end-users appending CFLAGS and LDFLAGS by setting respective environment variables externally.

    It additionally sets up default compiler flags to perform building with maximum optimization in release mode. This makes the resulting artifacts shipped to PyPI smaller.

    When line tracing is requested, the compiler and linker flags are configured to include as much information as possible for debugging and coverage tracking. The development builds are therefore smaller.

    – by @webknjaz

    Related issues and pull requests on GitHub: #1586.

  • The PEP 517 build backend now supports a new config setting for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds — they will keep being built in-tree regardless.

    – by @webknjaz

    Here’s an example of using this setting:

    $ python -m build \
        --config-setting=build-inplace=true

    Related issues and pull requests on GitHub: #1590.

  • Starting this version, when building the wheels is happening in an automatically created temporary directory, the build backend makes an effort to normalize the respective file system path to a deterministic source checkout directory.

    – by @webknjaz

    It does so by injecting the -ffile-prefix-map compiler option into the CFLAGS environment variable as suggested by known reproducible build practices.

    The effect is that downstreams will get more reproducible build results.

    Related issues and pull requests on GitHub: #1591.

  • Dropped Python 3.9 support; Python 3.10 is the minimal supported Python version – by @bdraco.

    Related issues and pull requests on GitHub: #1609.

Contributor-facing changes

  • The deprecated license classifier was removed from setup.cfg – by @yegorich.

    Related issues and pull requests on GitHub: #1550.

  • The in-tree build backend allows the end-users appending CFLAGS and LDFLAGS by setting respective environment variables externally.

    It additionally sets up default compiler flags to perform building with maximum optimization in release mode. This makes the resulting artifacts shipped to PyPI smaller.

    When line tracing is requested, the compiler and linker flags are configured to include as much information as possible for debugging and coverage tracking. The development builds are therefore smaller.

    – by @webknjaz

    Related issues and pull requests on GitHub: #1586.

  • The CI has been updated to consistently benchmark optimized release builds – by @webknjaz.

    When the release workflow is triggered, the pre-built wheels ready to hit PyPI are being tested. Otherwise, the job builds the project from source, while the rest of the workflow uses debug builds for line tracing and coverage collection.

    Related issues and pull requests on GitHub: #1587.


1.22.0

(2025-10-05)

Features

  • Added arm64 Windows wheel builds – by @finnagin.

    Related issues and pull requests on GitHub: #1516.


1.21.0

(2025-10-05)

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1535.

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

    Related issues and pull requests on GitHub: #1536.

  • Added CI for Python 3.14 – by @kumaraditya303.

    Related issues and pull requests on GitHub: #1560.


1.20.1

(2025-06-09)

Bug fixes

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

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

    – by @MaelPic.

    Related issues and pull requests on GitHub: #1512.

Packaging updates and notes for downstreams

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

    Related issues and pull requests on GitHub: #1514.

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

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

    Related issues and pull requests on GitHub: #1521.


1.20.0

(2025-04-16)

Features

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

    Related issues and pull requests on GitHub: #1456.

Packaging updates and notes for downstreams

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

    Related issues and pull requests on GitHub: #1456.


1.19.0

(2025-04-05)

Bug fixes

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

    Related issues and pull requests on GitHub: #1468.

Features

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

    Related issues and pull requests on GitHub: #1495.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1471.

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

    Related issues and pull requests on GitHub: #1479.

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

    Related issues and pull requests on GitHub: #1480.

Miscellaneous internal changes

  • Improved accuracy of type annotations – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1484.

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

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

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

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


1.18.3

(2024-12-01)

Bug fixes

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

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1443.


1.18.2

(2024-11-29)

No significant changes.


1.18.1

(2024-11-29)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1432.

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

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


1.18.0

(2024-11-21)

Features

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

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

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1415.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1422.


1.17.2

(2024-11-17)

Bug fixes

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

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

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

    Related issues and pull requests on GitHub: #1413.

Features

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

    Related issues and pull requests on GitHub: #1414.

Packaging updates and notes for downstreams

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

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1418.


1.17.1

(2024-10-30)

Miscellaneous internal changes

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

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

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

    Related issues and pull requests on GitHub: #1401.


1.17.0

(2024-10-28)

Features

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

    Related issues and pull requests on GitHub: #1375.


1.16.0

(2024-10-21)

Bug fixes

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

    Related issues and pull requests on GitHub: #1342.

Removals and backward incompatible breaking changes

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

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

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

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1336.

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

    Related issues and pull requests on GitHub: #1345.

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

    Related issues and pull requests on GitHub: #1369.


1.15.5

(2024-10-18)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1304.

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

    Related issues and pull requests on GitHub: #1305.

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

    Related issues and pull requests on GitHub: #1306.

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

    Related issues and pull requests on GitHub: #1307.

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

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

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

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

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

    Related issues and pull requests on GitHub: #1313.

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

    Related issues and pull requests on GitHub: #1315.

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

    Related issues and pull requests on GitHub: #1316.

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

    Related issues and pull requests on GitHub: #1317.

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

    Related issues and pull requests on GitHub: #1318.

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

    Related issues and pull requests on GitHub: #1319.

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

    Related issues and pull requests on GitHub: #1320.

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

    Related issues and pull requests on GitHub: #1321.

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

    Related issues and pull requests on GitHub: #1322.


1.15.4

(2024-10-16)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1288.

  • Improved performance of unquoting strings – by @bdraco.

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

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

    Related issues and pull requests on GitHub: #1297.


1.15.3

(2024-10-15)

Bug fixes

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

    The validation only worked correctly when passing host.

    Related issues and pull requests on GitHub: #1265.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1203.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1271.


1.15.2

(2024-10-13)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1234.

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

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

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

    Related issues and pull requests on GitHub: #1256.

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

    Related issues and pull requests on GitHub: #1259.


1.15.1

(2024-10-12)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1222.

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

    Related issues and pull requests on GitHub: #1226.

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

    Related issues and pull requests on GitHub: #1229.


1.15.0

(2024-10-11)

Bug fixes

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

    Related issues and pull requests on GitHub: #1189.

Features

  • Started building armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #1204.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1188.

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

    Related issues and pull requests on GitHub: #1190.

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

    Related issues and pull requests on GitHub: #1193.

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

    Related issues and pull requests on GitHub: #1198.


1.14.0

(2024-10-08)

Packaging updates and notes for downstreams

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

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

    Related issues and pull requests on GitHub: #1169.

Contributor-facing changes

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

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

    Related issues and pull requests on GitHub: #860.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1168.

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

    Related issues and pull requests on GitHub: #1170.

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

    Related issues and pull requests on GitHub: #1175.

  • Improved performance of encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1176.


1.13.1

(2024-09-27)

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1163.


1.13.0

(2024-09-26)

Bug fixes

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

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

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

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

Features

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

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

    Related issues and pull requests on GitHub: #1159.


1.12.1

(2024-09-23)

No significant changes.


1.12.0

(2024-09-23)

Features

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

    Related issues and pull requests on GitHub: #1150.

Removals and backward incompatible breaking changes

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

    This change restored the behavior before #1057.

    Related issues and pull requests on GitHub: #1151.

Miscellaneous internal changes

  • Improved performance of processing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1143.


1.11.1

(2024-09-09)

Bug fixes

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

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

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

    Related issues and pull requests on GitHub: #1136.

Features

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

    Related issues and pull requests on GitHub: #1139.

Miscellaneous internal changes

  • Improved performance of normalizing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1137.


1.11.0

(2024-09-08)

Features

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

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

    Related issues and pull requests on GitHub: #1128.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1122.

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

    Related issues and pull requests on GitHub: #1123.

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

    Related issues and pull requests on GitHub: #1125.

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

    Related issues and pull requests on GitHub: #1126.

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

    Related issues and pull requests on GitHub: #1130.

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

    Related issues and pull requests on GitHub: #1131.


1.10.0

(2024-09-06)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1118.

Features

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

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

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

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

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1095.

Miscellaneous internal changes

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

    Related issues and pull requests on GitHub: #1112.

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

    Related issues and pull requests on GitHub: #1117.


1.9.11

(2024-09-04)

Bug fixes

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

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

Miscellaneous internal changes

  • Improved performance of encoding hosts – by @bdraco.

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

    Related issues and pull requests on GitHub: #1104.


1.9.10

(2024-09-04)

Bug fixes

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

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

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

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

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

    – by @commonism

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

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

Features

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

    Related issues and pull requests on GitHub: #1100.


1.9.9

(2024-09-04)

Bug fixes

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

    Related issues and pull requests on GitHub: #1097.


1.9.8

(2024-09-03)

Features

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

    Related issues and pull requests on GitHub: #1084.

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

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

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

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

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

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

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

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

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

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

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

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

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

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

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

    Related issues and pull requests on GitHub: #1033.

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

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

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

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

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

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

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

    Related issues and pull requests on GitHub: #981.

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

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

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

    – by @hroncok and @webknjaz

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

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

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1015.

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

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

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

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

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


1.9.4 (2023-12-06)

Bug fixes

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

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

Packaging updates and notes for downstreams

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

    The usage now looks as follows:

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

    (#963)

Contributor-facing changes

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

    This is primarily targeting maintainers. (#960)

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

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

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

    $ python -Im pip install -e .

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

    #961

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

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

    Here’s a usage example:

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

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

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

    $ python -Im pip install -e .

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

    #962

1.9.3 (2023-11-20)

Bug fixes

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

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

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

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

Packaging updates and notes for downstreams

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

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

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

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

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

    Here is how this can be done with pip:

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

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

    The same can be achieved via pypa/build:

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

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

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

Contributor-facing changes

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

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

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

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

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

1.9.2 (2023-04-25)

Bugfixes

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

1.9.1 (2023-04-21)

Bugfixes

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

1.9.0 (2023-04-19)

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

Features

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

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

Bugfixes

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

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

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

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

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

Misc

1.8.2 (2022-12-03)

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

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

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

Improved Documentation

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

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

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

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

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

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

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

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

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

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

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

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

1.6.1 (2020-10-12)

Features

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

  • Provide wheels for Python 3.9. #526

Bugfixes

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

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

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

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

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

Removal

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


1.6.0 (2020-09-23)

Features

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

Bugfixes

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

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

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

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

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

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

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

    #443

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

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

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

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

Bugfixes

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

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

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

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


1.4.2 (2019-12-05)

Features

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


1.4.1 (2019-11-29)

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

1.4.0 (2019-11-29)

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

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

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

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

  • Drop Python 3.5 support

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

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

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

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

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

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

  • Add URL.explicit_port property (#218)

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

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

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

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

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

1.1.1 (2018-02-17)

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

1.1.0 (2018-01-21)

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

1.0.0 (2018-01-15)

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

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

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

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

  • Don’t recode IP zone (#144)

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

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

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

0.17.0 (2017-12-30)

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

0.16.0 (2017-12-07)

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

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

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

0.14.1 (2017-11-13)

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

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

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

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

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

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

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

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

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

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

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

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

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

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

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

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

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

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

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

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

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

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

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

0.7.1 (2016-11-18)

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

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

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

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

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

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

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

0.4.1 (2016-09-28)

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

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

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

0.1.4 (2016-09-09)

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

0.1.3 (2016-09-07)

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

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

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

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

Download files

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

Source Distribution

yarl-1.23.0.tar.gz (194.7 kB view details)

Uploaded Source

Built Distributions

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

yarl-1.23.0-py3-none-any.whl (48.3 kB view details)

Uploaded Python 3

yarl-1.23.0-cp314-cp314t-win_arm64.whl (86.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

yarl-1.23.0-cp314-cp314t-win_amd64.whl (97.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

yarl-1.23.0-cp314-cp314t-win32.whl (90.6 kB view details)

Uploaded CPython 3.14tWindows x86

yarl-1.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl (98.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yarl-1.23.0-cp314-cp314t-musllinux_1_2_s390x.whl (100.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

yarl-1.23.0-cp314-cp314t-musllinux_1_2_riscv64.whl (96.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

yarl-1.23.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (101.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl (90.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl (95.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yarl-1.23.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (96.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (97.7 kB view details)

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

yarl-1.23.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (100.9 kB view details)

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

yarl-1.23.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (101.3 kB view details)

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

yarl-1.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (88.8 kB view details)

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

yarl-1.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

yarl-1.23.0-cp314-cp314t-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yarl-1.23.0-cp314-cp314t-macosx_10_15_x86_64.whl (89.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

yarl-1.23.0-cp314-cp314t-macosx_10_15_universal2.whl (131.0 kB view details)

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

yarl-1.23.0-cp314-cp314-win_arm64.whl (83.4 kB view details)

Uploaded CPython 3.14Windows ARM64

yarl-1.23.0-cp314-cp314-win_amd64.whl (89.1 kB view details)

Uploaded CPython 3.14Windows x86-64

yarl-1.23.0-cp314-cp314-win32.whl (83.9 kB view details)

Uploaded CPython 3.14Windows x86

yarl-1.23.0-cp314-cp314-musllinux_1_2_x86_64.whl (102.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yarl-1.23.0-cp314-cp314-musllinux_1_2_s390x.whl (106.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

yarl-1.23.0-cp314-cp314-musllinux_1_2_riscv64.whl (100.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

yarl-1.23.0-cp314-cp314-musllinux_1_2_ppc64le.whl (106.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp314-cp314-musllinux_1_2_armv7l.whl (94.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp314-cp314-musllinux_1_2_aarch64.whl (98.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yarl-1.23.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (100.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.9 kB view details)

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

yarl-1.23.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (106.4 kB view details)

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

yarl-1.23.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (106.4 kB view details)

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

yarl-1.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (92.4 kB view details)

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

yarl-1.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.0 kB view details)

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

yarl-1.23.0-cp314-cp314-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yarl-1.23.0-cp314-cp314-macosx_10_15_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

yarl-1.23.0-cp314-cp314-macosx_10_15_universal2.whl (124.5 kB view details)

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

yarl-1.23.0-cp313-cp313t-win_arm64.whl (84.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

yarl-1.23.0-cp313-cp313t-win_amd64.whl (94.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

yarl-1.23.0-cp313-cp313t-win32.whl (88.3 kB view details)

Uploaded CPython 3.13tWindows x86

yarl-1.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

yarl-1.23.0-cp313-cp313t-musllinux_1_2_s390x.whl (100.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

yarl-1.23.0-cp313-cp313t-musllinux_1_2_riscv64.whl (96.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

yarl-1.23.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (100.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp313-cp313t-musllinux_1_2_armv7l.whl (90.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl (95.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

yarl-1.23.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (95.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (97.5 kB view details)

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

yarl-1.23.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (100.8 kB view details)

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

yarl-1.23.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (101.0 kB view details)

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

yarl-1.23.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (88.7 kB view details)

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

yarl-1.23.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

yarl-1.23.0-cp313-cp313t-macosx_11_0_arm64.whl (89.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

yarl-1.23.0-cp313-cp313t-macosx_10_13_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

yarl-1.23.0-cp313-cp313t-macosx_10_13_universal2.whl (130.7 kB view details)

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

yarl-1.23.0-cp313-cp313-win_arm64.whl (81.8 kB view details)

Uploaded CPython 3.13Windows ARM64

yarl-1.23.0-cp313-cp313-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.13Windows x86-64

yarl-1.23.0-cp313-cp313-win32.whl (82.4 kB view details)

Uploaded CPython 3.13Windows x86

yarl-1.23.0-cp313-cp313-musllinux_1_2_x86_64.whl (101.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yarl-1.23.0-cp313-cp313-musllinux_1_2_s390x.whl (105.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

yarl-1.23.0-cp313-cp313-musllinux_1_2_riscv64.whl (99.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

yarl-1.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl (105.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp313-cp313-musllinux_1_2_armv7l.whl (95.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp313-cp313-musllinux_1_2_aarch64.whl (98.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yarl-1.23.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (100.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (101.6 kB view details)

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

yarl-1.23.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (105.6 kB view details)

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

yarl-1.23.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (106.0 kB view details)

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

yarl-1.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (92.7 kB view details)

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

yarl-1.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (98.4 kB view details)

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

yarl-1.23.0-cp313-cp313-macosx_11_0_arm64.whl (85.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yarl-1.23.0-cp313-cp313-macosx_10_13_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yarl-1.23.0-cp313-cp313-macosx_10_13_universal2.whl (123.8 kB view details)

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

yarl-1.23.0-cp312-cp312-win_arm64.whl (81.9 kB view details)

Uploaded CPython 3.12Windows ARM64

yarl-1.23.0-cp312-cp312-win_amd64.whl (87.7 kB view details)

Uploaded CPython 3.12Windows x86-64

yarl-1.23.0-cp312-cp312-win32.whl (82.4 kB view details)

Uploaded CPython 3.12Windows x86

yarl-1.23.0-cp312-cp312-musllinux_1_2_x86_64.whl (100.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yarl-1.23.0-cp312-cp312-musllinux_1_2_s390x.whl (105.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

yarl-1.23.0-cp312-cp312-musllinux_1_2_riscv64.whl (98.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

yarl-1.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl (104.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp312-cp312-musllinux_1_2_armv7l.whl (94.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp312-cp312-musllinux_1_2_aarch64.whl (97.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yarl-1.23.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (99.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (100.1 kB view details)

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

yarl-1.23.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (105.1 kB view details)

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

yarl-1.23.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (105.3 kB view details)

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

yarl-1.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (92.5 kB view details)

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

yarl-1.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (97.6 kB view details)

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

yarl-1.23.0-cp312-cp312-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yarl-1.23.0-cp312-cp312-macosx_10_13_x86_64.whl (87.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yarl-1.23.0-cp312-cp312-macosx_10_13_universal2.whl (124.7 kB view details)

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

yarl-1.23.0-cp311-cp311-win_arm64.whl (82.3 kB view details)

Uploaded CPython 3.11Windows ARM64

yarl-1.23.0-cp311-cp311-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.11Windows x86-64

yarl-1.23.0-cp311-cp311-win32.whl (82.6 kB view details)

Uploaded CPython 3.11Windows x86

yarl-1.23.0-cp311-cp311-musllinux_1_2_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yarl-1.23.0-cp311-cp311-musllinux_1_2_s390x.whl (107.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

yarl-1.23.0-cp311-cp311-musllinux_1_2_riscv64.whl (99.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

yarl-1.23.0-cp311-cp311-musllinux_1_2_ppc64le.whl (108.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp311-cp311-musllinux_1_2_armv7l.whl (93.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp311-cp311-musllinux_1_2_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yarl-1.23.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (100.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (102.7 kB view details)

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

yarl-1.23.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (108.1 kB view details)

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

yarl-1.23.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (108.7 kB view details)

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

yarl-1.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (92.1 kB view details)

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

yarl-1.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (100.6 kB view details)

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

yarl-1.23.0-cp311-cp311-macosx_11_0_arm64.whl (86.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yarl-1.23.0-cp311-cp311-macosx_10_9_x86_64.whl (86.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.23.0-cp311-cp311-macosx_10_9_universal2.whl (123.6 kB view details)

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

yarl-1.23.0-cp310-cp310-win_arm64.whl (82.5 kB view details)

Uploaded CPython 3.10Windows ARM64

yarl-1.23.0-cp310-cp310-win_amd64.whl (87.3 kB view details)

Uploaded CPython 3.10Windows x86-64

yarl-1.23.0-cp310-cp310-win32.whl (83.1 kB view details)

Uploaded CPython 3.10Windows x86

yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl (103.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl (108.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl (100.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl (107.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl (94.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl (98.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (101.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (102.8 kB view details)

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

yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (108.7 kB view details)

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

yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (107.6 kB view details)

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

yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (92.1 kB view details)

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

yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (99.4 kB view details)

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

yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl (86.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl (86.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl (123.8 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0.tar.gz
Algorithm Hash digest
SHA256 53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5
MD5 323301056acefbfe0d57e8ab8ba33eb3
BLAKE2b-256 236ebeb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f
MD5 8f8b8d47fa3ab62e91667c06bba985bc
BLAKE2b-256 6968c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 44bb7bef4ea409384e3f8bc36c063d77ea1b8d4a5b2706956c0d6695f07dcc25
MD5 26faa49229bf4ba4503b226aa6b47051
BLAKE2b-256 51473fa2286c3cb162c71cdb34c4224d5745a1ceceb391b2bd9b19b668a8d724

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4503053d296bc6e4cbd1fad61cf3b6e33b939886c4f249ba7c78b602214fabe2
MD5 50dbca9a45db090f9a53ca5706936d8b
BLAKE2b-256 e1193774d162f6732d1cfb0b47b4140a942a35ca82bb19b6db1f80e9e7bdc8f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 73309162a6a571d4cbd3b6a1dcc703c7311843ae0d1578df6f09be4e98df38d4
MD5 09f71cf4d1e51d57974a0cbe3a74d8ac
BLAKE2b-256 fec3cd737e2d45e70717907f83e146f6949f20cc23cd4bf7b2688727763aa458

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e09fd068c2e169a7070d83d3bde728a4d48de0549f975290be3c108c02e499b4
MD5 8d47842f7074532d84c31d6c9e271f0a
BLAKE2b-256 28ec5498c4e3a6d5f1003beb23405671c2eb9cdbf3067d1c80f15eeafe301010

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 76855800ac56f878847a09ce6dba727c93ca2d89c9e9d63002d26b916810b0a2
MD5 ab42b3663593fa41b115f6d13e2818bb
BLAKE2b-256 c29b2c893e16bfc50e6b2edf76c1a9eb6cb0c744346197e74c65e99ad8d634d0

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2e27c8841126e017dd2a054a95771569e6070b9ee1b133366d8b31beb5018a41
MD5 7fd7b8bb7018276654888ef868bc48e7
BLAKE2b-256 ace2cab11b126fb7d440281b7df8e9ddbe4851e70a4dde47a202b6642586b8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d53834e23c015ee83a99377db6e5e37d8484f333edb03bd15b4bc312cc7254fb
MD5 2cf4f977c688949250228c1e89e570e8
BLAKE2b-256 72008b8f76909259f56647adb1011d7ed8b321bcf97e464515c65016a47ecdf0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d38c1e8231722c4ce40d7593f28d92b5fc72f3e9774fe73d7e800ec32299f63a
MD5 0840c1fc2bafb1f738783fbbb2017866
BLAKE2b-256 1990d56967f61a29d8498efb7afb651e0b2b422a1e9b47b0ab5f4e40a19b699b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041b1a4cefacf65840b4e295c6985f334ba83c30607441ae3cf206a0eed1a2e4
MD5 2a72a46e2aaaa1a1ec34138f1d334bc7
BLAKE2b-256 2d86ed7a73ab85ef00e8bb70b0cb5421d8a2a625b81a333941a469a6f4022828

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 575aa4405a656e61a540f4a80eaa5260f2a38fff7bfdc4b5f611840d76e9e277
MD5 d4f05f4425191a4bb73c9e8addd5c864
BLAKE2b-256 b7357b30f4810fba112f60f5a43237545867504e15b1c7647a785fbaf588fac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50f9d8d531dfb767c565f348f33dd5139a6c43f5cbdf3f67da40d54241df93f6
MD5 433ce0eae32a89258bdf010544e581cd
BLAKE2b-256 72320abe4a76d59adf2081dcb0397168553ece4616ada1c54d1c49d8936c74f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fb1e8b8d66c278b21d13b0a7ca22c41dd757a7c209c6b12c313e445c31dd3b28
MD5 da3b9119ce6a9e4757b504121589c0de
BLAKE2b-256 8f0d476c38e85ddb4c6ec6b20b815bdd779aa386a013f3d8b85516feee55c8dc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a31de1613658308efdb21ada98cbc86a97c181aa050ba22a808120bb5be3ab94
MD5 f810c693d182601c2a9686480df25d13
BLAKE2b-256 7640cc22d1d7714b717fde2006fad2ced5efe5580606cb059ae42117542122f3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 62694e275c93d54f7ccedcfef57d42761b2aad5234b6be1f3e3026cae4001cd4
MD5 c74560c69aff793d2de876bbeed45249
BLAKE2b-256 c0cc6409f9018864a6aa186c61175b977131f373f1988e198e031236916e87e4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71d006bee8397a4a89f469b8deb22469fe7508132d3c17fa6ed871e79832691c
MD5 d13c95445f4f9ee09127447ca2b773b6
BLAKE2b-256 aab108e95f3caee1fad6e65017b9f26c1d79877b502622d60e517de01e72f95d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 394906945aa8b19fc14a61cf69743a868bb8c465efe85eee687109cc540b98f4
MD5 94bfa7ce4db26398c5210bfa7f580e8a
BLAKE2b-256 0cf1dab7ac5e7306fb79c0190766a3c00b4cb8d09a1f390ded68c85a5934faf5

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2803ed8b21ca47a43da80a6fd1ed3019d30061f7061daa35ac54f63933409412
MD5 3911645a9b1927425ed7d9f630bfc868
BLAKE2b-256 19ff33009a39d3ccf4b94d7d7880dfe17fb5816c5a4fe0096d9b56abceea9ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314t-macosx_10_15_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.23.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9a18d6f9359e45722c064c97464ec883eb0e0366d33eda61cb19a244bf222679
MD5 a096f83545865bb1285ab924ef728c0f
BLAKE2b-256 dd8dd2fad34b1c08aa161b74394183daa7d800141aaaee207317e82c790b418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314t-macosx_10_15_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.23.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 70efd20be968c76ece7baa8dafe04c5be06abc57f754d6f36f3741f7aa7a208e
MD5 6c0ba6c2c9d21f6e55095bbfe3498131
BLAKE2b-256 e07d8a84dc9381fd4412d5e7ff04926f9865f6372b4c2fd91e10092e65d29eb8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 63e92247f383c85ab00dd0091e8c3fa331a96e865459f5ee80353c70a4a42d70
MD5 6a31a4724354e45721a08eac2cb12327
BLAKE2b-256 a95b9b92f54c784c26e2a422e55a8d2607ab15b7ea3349e28359282f84f01d43

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8aa34a5c864db1087d911a0b902d60d203ea3607d91f615acd3f3108ac32169
MD5 5a90367f8d7d8db7a447f3a423ffe97a
BLAKE2b-256 aa65b39290f1d892a9dd671d1c722014ca062a9c35d60885d57e5375db0404b5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f8575fbdf81749008d980c17796097e645574a3b8c28ee313931068dad14fe
MD5 9b39e21b61a5d2cbc474a2c9b5c03dd1
BLAKE2b-256 7242f0505f949a90b3f8b7a363d6cbdf398f6e6c58946d85c6d3a3bc70595b26

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f40e782d49630ad384db66d4d8b73ff4f1b8955dc12e26b09a3e3af064b3b9d6
MD5 cf4ad777dd3dff85a289f4eaca87d6ee
BLAKE2b-256 0c23e3bfc188d0b400f025bc49d99793d02c9abe15752138dcc27e4eaf0c4a9e

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3650dc2480f94f7116c364096bc84b1d602f44224ef7d5c7208425915c0475dd
MD5 33aec5e126497e1ddf9da980d0a6028a
BLAKE2b-256 0ae65c744a9b54f4e8007ad35bce96fbc9218338e84812d36f3390cea616881a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0793e2bd0cf14234983bbb371591e6bea9e876ddf6896cdcc93450996b0b5c85
MD5 44720448f98ea595d4b2798596674979
BLAKE2b-256 e2b714341481fe568e2b0408bcf1484c652accafe06a0ade9387b5d3fd9df446

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17235362f580149742739cc3828b80e24029d08cbb9c4bda0242c7b5bc610a8e
MD5 760c2fe4056ba966d93f29047c5bc4b5
BLAKE2b-256 d9cfea424a004969f5d81a362110a6ac1496d79efdc6d50c2c4b2e3ea0fc2519

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ee586fb17ff8f90c91cf73c6108a434b02d69925f44f5f8e0d7f2f260607eae
MD5 c3d10b461edc462157581c51f20607e0
BLAKE2b-256 880893749219179a45e27b036e03260fda05190b911de8e18225c294ac95bbc9

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c7f8dc16c498ff06497c015642333219871effba93e4a2e8604a06264aca5c5c
MD5 7f97e16187a2da724697c549c6641c48
BLAKE2b-256 186a530e16aebce27c5937920f3431c628a29a4b6b430fab3fd1c117b26ff3f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c57676bdedc94cd3bc37724cf6f8cd2779f02f6aba48de45feca073e714fe52
MD5 31f7045012be670547bbbe39b065a596
BLAKE2b-256 422bfef67d616931055bf3d6764885990a3ac647d68734a2d6a9e1d13de437a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a82836cab5f197a0514235aaf7ffccdc886ccdaa2324bc0aafdd4ae898103039
MD5 9e2d4eb464edd90352c3da959a228e93
BLAKE2b-256 518a882c0e7bc8277eb895b31bce0138f51a1ba551fc2e1ec6753ffc1e7c1377

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 682bae25f0a0dd23a056739f23a134db9f52a63e2afd6bfb37ddc76292bbd723
MD5 dffe5e3130a9bbf66ee7e61af8ab2cf6
BLAKE2b-256 c15625d58c3eddde825890a5fe6aa1866228377354a3c39262235234ab5f616b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bd654fad46d8d9e823afbb4f87c79160b5a374ed1ff5bde24e542e6ba8f41434
MD5 58e7a9f5f0260939211087f979b3f3bb
BLAKE2b-256 0aff7196790538f31debe3341283b5b0707e7feb947620fc5e8236ef28d44f72

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4a80f77dc1acaaa61f0934176fccca7096d9b1ff08c8ba9cddf5ae034a24319
MD5 e0e5a9d4cbf21f6d8c0d378906017887
BLAKE2b-256 ead8d1cb2378c81dd729e98c716582b1ccb08357e8488e4c24714658cc6630e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23f371bd662cf44a7630d4d113101eafc0cfa7518a2760d20760b26021454719
MD5 fbfdc21fe5eeaadc185efc51c5d1b7a9
BLAKE2b-256 24f9e8242b68362bffe6fb536c8db5076861466fc780f0f1b479fc4ffbebb128

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 85610b4f27f69984932a7abbe52703688de3724d9f72bceb1cca667deff27474
MD5 2382d3b4e0e6a06c6e7e4187c7a127fa
BLAKE2b-256 3954bc2b45559f86543d163b6e294417a107bb87557609007c007ad889afec18

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314-macosx_10_15_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.23.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 21d1b7305a71a15b4794b5ff22e8eef96ff4a6d7f9657155e5aa419444b28912
MD5 1179ea4fcac7de266e61ebf4590824b6
BLAKE2b-256 9098b85a038d65d1b92c3903ab89444f48d3cee490a883477b716d7a24b1a78c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp314-cp314-macosx_10_15_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.23.0-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 ac09d42f48f80c9ee1635b2fcaa819496a44502737660d3c0f2ade7526d29144
MD5 3c9bab1fb91a4d8ef636f60f76da7f4d
BLAKE2b-256 c6ccd79ba8292f51f81f4dc533a8ccfb9fc6992cabf0998ed3245de7589dc07c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 dd00607bffbf30250fe108065f07453ec124dbf223420f57f5e749b04295e090
MD5 9be26827d01faa16a41c41ad48215625
BLAKE2b-256 43688c5b36aa5178900b37387937bc2c2fe0e9505537f713495472dcf6f6fccc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 93a784271881035ab4406a172edb0faecb6e7d00f4b53dc2f55919d6c9688595
MD5 6409b3aec7fab70b29c14868b327563f
BLAKE2b-256 8025a3892b46182c586c202629fc2159aa13975d3741d52ebd7347fd501d48d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f0fd84de0c957b2d280143522c4f91a73aada1923caee763e24a2b3fda9f8a5
MD5 2ec9c78fdccf784ddfbb6e3dab734052
BLAKE2b-256 e5e8638bae5bbf1113a659b2435d8895474598afe38b4a837103764f603aba56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a0e317df055958a0c1e79e5d2aa5a5eaa4a6d05a20d4b0c9c3f48918139c9fc6
MD5 7b2c10fc89fb3c87731fce3013084f8f
BLAKE2b-256 90b2f52381aac396d6778ce516b7bc149c79e65bfc068b5de2857ab69eeea3b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fe8f8f5e70e6dbdfca9882cd9deaac058729bcf323cf7a58660901e55c9c94f6
MD5 ee16faf0bb5eccb137761b69cb50d460
BLAKE2b-256 74051bcd60a8a0a914d462c305137246b6f9d167628d73568505fce3f1cb2e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp313-cp313t-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ead11956716a940c1abc816b7df3fa2b84d06eaed8832ca32f5c5e058c65506b
MD5 ff1ebd1f8474eec8f1925036cd122546
BLAKE2b-256 239c42c2e2dd91c1a570402f51bdf066bfdb1241c2240ba001967bad778e77b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 115136c4a426f9da976187d238e84139ff6b51a20839aa6e3720cd1026d768de
MD5 6c18fe8f80d5fbc5a5a515011c1b433f
BLAKE2b-256 b9284c75ebb108f322aa8f917ae10a8ffa4f07cae10a8a627b64e578617df6a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7b0460976dc75cb87ad9cc1f9899a4b97751e7d4e77ab840fc9b6d377b8fd24
MD5 bffb09ba8426ce1d2ed86235cb46a593
BLAKE2b-256 6803093f4055ed4cae649ac53bca3d180bd37102e9e11d048588e9ab0c0108d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 88f9fb0116fbfcefcab70f85cf4b74a2b6ce5d199c41345296f49d974ddb4123
MD5 b0569ee251def3673d1bef561fa19715
BLAKE2b-256 e51e304a00cf5f6100414c4b5a01fc7ff9ee724b62158a08df2f8170dfc72a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 531ef597132086b6cf96faa7c6c1dcd0361dd5f1694e5cc30375907b9b7d3ea9
MD5 e02b0c0a611d17dabeaacd386cd50983
BLAKE2b-256 62e2a4980481071791bc83bce2b7a1a1f7adcabfa366007518b4b845e92eeee3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 95451e6ce06c3e104556d73b559f5da6c34a069b6b62946d3ad66afcd51642ea
MD5 6d17931807652dc7445cfabb18603d1a
BLAKE2b-256 cd9b30ea5239a61786f18fd25797151a17fbb3be176977187a48d541b5447dd4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a8d00f29b42f534cc8aa3931cfe773b13b23e561e10d2b26f27a8d309b0e82a1
MD5 eafea7e91b5067e2ffc7cdee2165c01f
BLAKE2b-256 eb780231bfcc5d4c8eec220bc2f9ef82cb4566192ea867a7c5b4148f44f6cbcd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d1009abedb49ae95b136a8904a3f71b342f849ffeced2d3747bf29caeda218c4
MD5 ab9f70b1a9707f9c5e68f2e3c1a21204
BLAKE2b-256 9ee9f9ff8ceefba599eac6abddcfb0b3bee9b9e636e96dbf54342a8577252379

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5023346c4ee7992febc0068e7593de5fa2bf611848c08404b35ebbb76b1b0512
MD5 ec4544269f6132c73da3245110644d2a
BLAKE2b-256 1c0761c9dd8ba8f86473263b4036f70fb594c09e99c0d9737a799dfd8bc85651

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde9a2ecd91668bcb7f077c4966d8ceddb60af01b52e6e3e2680e4cf00ad1a59
MD5 dcac75fb082b4764875110fe050f5736
BLAKE2b-256 5093e88f3c80971b42cfc83f50a51b9d165a1dbf154b97005f2994a79f212a07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a41bcf68efd19073376eb8cf948b8d9be0af26256403e512bb18f3966f1f9120
MD5 70af49cdfa243650f572bdfd5a854b2a
BLAKE2b-256 e60d9f2348502fbb3af409e8f47730282cd6bc80dec6630c1e06374d882d6eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 aecfed0b41aa72b7881712c65cf764e39ce2ec352324f5e0837c7048d9e6daaa
MD5 e2bd448c4f666ca2f3a6709d54159031
BLAKE2b-256 9cfc119dd07004f17ea43bb91e3ece6587759edd7519d6b086d16bfbd3319982

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fb4948814a2a98e3912505f09c9e7493b1506226afb1f881825368d6fb776ee3
MD5 1f9593f1783d0a5c29be41e49d3848d8
BLAKE2b-256 00fd7e1c66efad35e1649114fa13f17485f62881ad58edeeb7f49f8c5e748bf9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 baaf55442359053c7d62f6f8413a62adba3205119bcb6f49594894d8be47e5e3
MD5 c87237fb1737460d0d3771cc61fd2626
BLAKE2b-256 7a84266e8da36879c6edcd37b02b547e2d9ecdfea776be49598e75696e3316e1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1b6b572edd95b4fa8df75de10b04bc81acc87c1c7d16bcdd2035b09d30acc957
MD5 d6969facf5117b3c8cf1a51ae0601cd5
BLAKE2b-256 8f54f5b870b5505663911dba950a8e4776a0dbd51c9c54c0ae88e823e4b874a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5723c01a56c5028c807c701aa66722916d2747ad737a046853f6c46f4875543
MD5 fa61f0ae5974773334b1f5b5917c306b
BLAKE2b-256 a3c418b178a69935f9e7a338127d5b77d868fdc0f0e49becd286d51b3a18c61d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 39004f0ad156da43e86aa71f44e033de68a44e5a31fc53507b36dd253970054a
MD5 19707c5040e747656e1c583fc918d70f
BLAKE2b-256 081f6f65f59e72d54aa467119b63fc0b0b1762eff0232db1f4720cd89e2f4a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e0fd068364a6759bc794459f0a735ab151d11304346332489c7972bacbe9e72b
MD5 33230ebe82c5578f4b40f3f03568e850
BLAKE2b-256 5ec631e28f3a6ba2869c43d124f37ea5260cac9c9281df803c354b31f4dd1f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp313-cp313-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4966242ec68afc74c122f8459abd597afd7d8a60dc93d695c1334c5fd25f762f
MD5 1325df4c53b5595ec0a9e557636e2d1b
BLAKE2b-256 9d40acfcdb3b5f9d68ef499e39e04d25e141fe90661f9d54114556cf83be8353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 609d3614d78d74ebe35f54953c5bbd2ac647a7ddb9c30a5d877580f5e86b22f2
MD5 6c8ed491229b62474e75e22c6601f454
BLAKE2b-256 636e904c4f476471afdbad6b7e5b70362fb5810e35cd7466529a97322b6f5556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 578110dd426f0d209d1509244e6d4a3f1a3e9077655d98c5f22583d63252a08a
MD5 e49a1039866087c7d8fcd71dcc5dea66
BLAKE2b-256 774f96976cb54cbfc5c9fd73ed4c51804f92f209481d1fb190981c0f8a07a1d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d7504f2b476d21653e4d143f44a175f7f751cd41233525312696c76aa3dbb23f
MD5 470f1843d549cf1403c58ed6c4aac55a
BLAKE2b-256 7259c5b8d94b14e3d3c2a9c20cb100119fd534ab5a14b93673ab4cc4a4141ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34b6cf500e61c90f305094911f9acc9c86da1a05a7a3f5be9f68817043f486e4
MD5 f4a27d1f97092c8126b871ff7d309153
BLAKE2b-256 66feb1e10b08d287f518994f1e2ff9b6d26f0adeecd8dd7d533b01bab29a3eda

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fda207c815b253e34f7e1909840fd14299567b1c0eb4908f8c2ce01a41265401
MD5 6590c57cad4fdfec89932287517b3758
BLAKE2b-256 cec974e44e056a23fbc33aca71779ef450ca648a5bc472bdad7a82339918f818

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f514f6474e04179d3d33175ed3f3e31434d3130d42ec153540d5b157deefd735
MD5 e0889e695e62d4ff8ee6bd6d349c99dc
BLAKE2b-256 56111ed91d42bd9e73c13dc9e7eb0dd92298d75e7ac4dd7f046ad0c472e231cd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e9d9a4d06d3481eab79803beb4d9bd6f6a8e781ec078ac70d7ef2dcc29d1bea5
MD5 04eac806aabdac098ee4b47b52b7db31
BLAKE2b-256 86fc4118c5671ea948208bdb1492d8b76bdf1453d3e73df051f939f563e7dcc5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2569b67d616eab450d262ca7cb9f9e19d2f718c70a8b88712859359d0ab17035
MD5 3cff9f31b1cbf1e7e1c825c4dc05a41f
BLAKE2b-256 c4f44e30b250927ffdab4db70da08b9b8d2194d7c7b400167b8fbeca1e4701ca

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file yarl-1.23.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c6b9461a2a8b47c65eef63bb1c76a4f1c119618ffa99ea79bc5bb1e46c5821b
MD5 013511ddd68684a27af4a1911e9acfc2
BLAKE2b-256 ae5006d511cc4b8e0360d3c94af051a768e84b755c5eb031b12adaaab6dec6e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a42e651629dafb64fd5b0286a3580613702b5809ad3f24934ea87595804f2c5
MD5 af7c48918ea41c3f7bdde7cd7e48c399
BLAKE2b-256 67b68925d68af039b835ae876db5838e82e76ec87b9782ecc97e192b809c4831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 16c6994ac35c3e74fb0ae93323bf8b9c2a9088d55946109489667c510a7d010e
MD5 c6eac8342b733c9b8714ab3fdfdb9c7b
BLAKE2b-256 9a4ba0a6e5d0ee8a2f3a373ddef8a4097d74ac901ac363eea1440464ccbe0898

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: yarl-1.23.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.23.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6e87a6e8735b44816e7db0b2fbc9686932df473c826b0d9743148432e10bb9b9
MD5 819955e9512784b7c3b7c7a23bb4beaf
BLAKE2b-256 d235aeab955d6c425b227d5b7247eafb24f2653fedc32f95373a001af5dfeb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-win_arm64.whl:

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f69f57305656a4852f2a7203efc661d8c042e6cc67f7acd97d8667fb448a426e
MD5 47b9a56ce03b00b62e1115861e313f48
BLAKE2b-256 f5be25216a49daeeb7af2bec0db22d5e7df08ed1d7c9f65d78b14f3b74fd72fc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fffc45637bcd6538de8b85f51e3df3223e4ad89bccbfca0481c08c7fc8b7ed7d
MD5 84c6259bccb2c4d242b7f0d56048d918
BLAKE2b-256 697fcd5ef733f2550de6241bd8bd8c3febc78158b9d75f197d9c7baa113436af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ceb13c5c858d01321b5d9bb65e4cf37a92169ea470b70fec6f236b2c9dd7e34
MD5 b0abc6b8daa3339476aa65ea9228fd4d
BLAKE2b-256 156174bb1182cf79c9bbe4eb6b1f14a57a22d7a0be5e9cedf8e2d5c2086474c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be61f6fff406ca40e3b1d84716fde398fc08bc63dd96d15f3a14230a0973ed86
MD5 e029b6aec13d39ff8d623af365ea93bd
BLAKE2b-256 9de012900edd28bdab91a69bd2554b85ad7b151f64e8b521fe16f9ad2f56477a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8419ebd326430d1cbb7efb5292330a2cf39114e82df5cc3d83c9a0d5ebeaf2f2
MD5 361b0b46ebbeac7c8f6a91266b152de8
BLAKE2b-256 2f0cb3ceacf82c3fe21183ce35fa2acf5320af003d52bc1fcf5915077681142e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c3a3598a832590c5a3ce56ab5576361b5688c12cb1d39429cf5dba30b510760
MD5 363e9924f177092ff3f6dcfa4d10728c
BLAKE2b-256 bcd28ae2e6cd77d0805f4526e30ec43b6f9a3dfc542d401ac4990d178e4bf0cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5405bb8f0e783a988172993cfc627e4d9d00432d6bbac65a923041edacf997d
MD5 b2e7871c86d1cff04daf32df4708c7b8
BLAKE2b-256 f64010fa93811fd439341fad7e0718a86aca0de9548023bbb403668d6555acab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 877b0738624280e34c55680d6054a307aa94f7d52fa0e3034a9cc6e790871da7
MD5 c14f5d97ab5a4bb225e135b6d871c4bc
BLAKE2b-256 6f545b0db00d2cb056922356104468019c0a132e89c8d3ab67d8ede9f4483d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c75eb09e8d55bceb4367e83496ff8ef2bc7ea6960efb38e978e8073ea59ecb67
MD5 2dd4ab438087ab6c2357a70987e146e5
BLAKE2b-256 cf269c89acf82f08a52cb52d6d39454f8d18af15f9d386a23795389d1d423823

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3d2bff8f37f8d0f96c7ec554d16945050d54462d6e95414babaa18bfafc7f51
MD5 124378a625b4838772d55dd9286bdf50
BLAKE2b-256 663e868e5c3364b6cee19ff3e1a122194fa4ce51def02c61023970442162859e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 803a3c3ce4acc62eaf01eaca1208dcf0783025ef27572c3336502b9c232005e7
MD5 f72b8a83176784255386a294b8fe764d
BLAKE2b-256 d38a36d82869ab5ec829ca8574dfcb92b51286fcfb1e9c7a73659616362dc880

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4a59ba56f340334766f3a4442e0efd0af895fae9e2b204741ef885c446b3a1a8
MD5 0f036651ea673e53a34d03d77553ce7a
BLAKE2b-256 52070b7179101fe5f8385ec6c6bb5d0cb9f76bd9fb4a769591ab6fb5cdbfc69a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 53ad387048f6f09a8969631e4de3f1bf70c50e93545d64af4f751b2498755072
MD5 dec663a6387fc7108ec91893176888be
BLAKE2b-256 760a8b08aac08b50682e65759f7f8dde98ae8168f72487e7357a5d684c581ef9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cbf44c5cb4a7633d078788e1b56387e3d3cf2b8139a3be38040b22d6c3221c8
MD5 824d828baccf7525411144374f3d0f81
BLAKE2b-256 993058260ed98e6ff7f90ba84442c1ddd758c9170d70327394a6227b310cd60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a563739ae600a631c36ce096615fe307f131344588b0bc0daec108cdb47b25
MD5 941a6f9fedd06e4d16e943530c1e69d7
BLAKE2b-256 192a725ecc166d53438bc88f76822ed4b1e3b10756e790bafd7b523fe97c322d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 411225bae281f114067578891bc75534cfb3d92a3b4dfef7a6ca78ba354e6069
MD5 8edeee0cf5c8e1dd08c959519b99a9eb
BLAKE2b-256 e36fc6554045d59d64052698add01226bc867b52fe4a12373415d7991fdca95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1932b6b8bba8d0160a9d1078aae5838a66039e8832d41d2992daa9a3a08f7860
MD5 eab5f8799539c33c7ec7c40d236c57ac
BLAKE2b-256 888a94615bc31022f711add374097ad4144d569e95ff3c38d39215d07ac153a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: yarl-1.23.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 82.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.23.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b39cb32a6582750b6cc77bfb3c49c0f8760dc18dc96ec9fb55fbb0f04e08b928
MD5 df3eb4a095ed3d314681517cedd797fe
BLAKE2b-256 939507e3553fe6f113e6864a20bdc53a78113cda3b9ced8784ee52a52c9f80d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-win_arm64.whl:

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

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf49a3ae946a87083ef3a34c8f677ae4243f5b824bfc4c69672e72b3d6719d46
MD5 27f6216420864cf7a9baaecedd113e0d
BLAKE2b-256 9322b85eca6fa2ad9491af48c973e4c8cf6b103a73dbb271fe3346949449fca0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 51430653db848d258336cfa0244427b17d12db63d42603a55f0d4546f50f25b5
MD5 54d509307933c3f912d4a52716051ed3
BLAKE2b-256 e51c9a1979aec4a81896d597bcb2177827f2dbee3f5b7cc48b2d0dadb644b41d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 170e26584b060879e29fac213e4228ef063f39128723807a312e5c7fec28eff2
MD5 8cdb100e2b3b86bd2674c143bb8256fb
BLAKE2b-256 a4b835c0750fcd5a3f781058bfd954515dd4b1eab45e218cbb85cf11132215f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 03214408cfa590df47728b84c679ae4ef00be2428e11630277be0727eba2d7cc
MD5 bca9e85ec91d9d452d79c2277e2bf06e
BLAKE2b-256 d31c1a3387ee6d73589f6f2a220ae06f2984f6c20b40c734989b0a44f5987308

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4764a6a7588561a9aef92f65bda2c4fb58fe7c675c0883862e6df97559de0bfb
MD5 2edcd17f447a134d709a23e988fe114b
BLAKE2b-256 599735ca6767524687ad64e5f5c31ad54bc76d585585a9fcb40f649e7e82ffed

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e40111274f340d32ebcc0a5668d54d2b552a6cca84c9475859d364b380e3222
MD5 1cb22cacd7cbe19359beafeb9a002778
BLAKE2b-256 3869912e6c5e146793e5d4b5fe39ff5b00f4d22463dfd5a162bec565ac757673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dc702e42d0684f42d6519c8d581e49c96cefaaab16691f03566d30658ee8788
MD5 868d4c79ffcf6db25c0dcc091f9c36f2
BLAKE2b-256 e7646980f99ab00e1f0ff67cb84766c93d595b067eed07439cfccfc8fb28c1a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b41389c19b07c760c7e427a3462e8ab83c4bb087d127f0e854c706ce1b9215c
MD5 8084a0dd818eedace1ee5ba562d48ff6
BLAKE2b-256 9ec0b39770b56d4a9f0bb5f77e2f1763cd2d75cc2f6c0131e3b4c360348fcd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f2af5c81a1f124609d5f33507082fc3f739959d4719b56877ab1ee7e7b3d602b
MD5 2ce61b07eb13a1679ac9939d597e34e0
BLAKE2b-256 8559cd98e556fbb2bf8fab29c1a722f67ad45c5f3447cac798ab85620d1e70af

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99c8a9ed30f4164bc4c14b37a90208836cbf50d4ce2a57c71d0f52c7fb4f7598
MD5 ea1c6bc5435d82e5e13aa54d8bcc5cd9
BLAKE2b-256 9a64c53487d9f4968045b8afa51aed7ca44f58b2589e772f32745f3744476c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4c41e021bc6d7affb3364dc1e1e5fa9582b470f283748784bd6ea0558f87f42c
MD5 165c45f26d410b9e3512e9c8cf682624
BLAKE2b-256 85fb115b16f22c37ea4437d323e472945bea97301c8ec6089868fa560abab590

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9ee33b875f0b390564c1fb7bc528abf18c8ee6073b201c6ae8524aca778e2d83
MD5 5ccd5b008cb57452ec6606834696a3bc
BLAKE2b-256 d913d269aa1aed3e4f50a5a103f96327210cc5fa5dd2d50882778f13c7a14606

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aafe5dcfda86c8af00386d7781d4c2181b5011b7be3f2add5e99899ea925df05
MD5 0547bcef6ba3be66769f000377b5167b
BLAKE2b-256 49fbc438fb5108047e629f6282a371e6e91cf3f97ee087c4fb748a1f32ceef55

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2c6b50c7b0464165472b56b42d4c76a7b864597007d9c085e8b63e185cf4a7a
MD5 79eddad1a6a45a5e73cbd8cf2c6a3efe
BLAKE2b-256 8c6c4a90d59c572e46b270ca132aca66954f1175abd691f74c1ef4c6711828e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc52310451fc7c629e13c4e061cbe2dd01684d91f2f8ee2821b083c58bd72432
MD5 207ef0834ed397a574f42cc8a9e20a48
BLAKE2b-256 b20d71ceabc14c146ba8ee3804ca7b3d42b1664c8440439de5214d366fec7d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbb0fef01f0c6b38cb0f39b1f78fc90b807e0e3c86a7ff3ce74ad77ce5c7880c
MD5 2d95494b9fd3caea7ef4e17e38aab5eb
BLAKE2b-256 2484e237607faf4e099dbb8a4f511cfd5efcb5f75918baad200ff7380635631b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b35d13d549077713e4414f927cdc388d62e543987c572baee613bf82f11a4b99
MD5 a4cfd13d6695175a0dd0833eac6048ce
BLAKE2b-256 a2aa60da938b8f0997ba3a911263c40d82b6f645a67902a490b46f3355e10fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: yarl-1.23.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 82.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.23.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 263cd4f47159c09b8b685890af949195b51d1aa82ba451c5847ca9bc6413c220
MD5 169b66ebab49eebba634f2f2c711fdbd
BLAKE2b-256 e214dfa369523c79bccf9c9c746b0a63eb31f65db9418ac01275f7950962e504

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-win_arm64.whl:

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

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

File details

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

File metadata

  • Download URL: yarl-1.23.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 87.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yarl-1.23.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ab5f043cb8a2d71c981c09c510da013bc79fd661f5c60139f00dd3c3cc4f2ffb
MD5 34092ea7fb73bf4748df9ebde8c5af59
BLAKE2b-256 a071ad95c33da18897e4c636528bbc24a1dd23fe16797de8bc4ec667b8db0ba4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for yarl-1.23.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 debe9c4f41c32990771be5c22b56f810659f9ddf3d63f67abfdcaa2c6c9c5c1d
MD5 d2b9ba8354a0e06f8c7a590c447c3be6
BLAKE2b-256 380f0b4e3edcec794a86b853b0c6396c0a888d72dfce19b2d88c02ac289fb6c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ec2f42d41ccbd5df0270d7df31618a8ee267bfa50997f5d720ddba86c4a83a6
MD5 88d12ac6894de29b2437a79ff972ec54
BLAKE2b-256 5e814aebccfa9376bd98b9d8bfad20621a57d3e8cfc5b8631c1fa5f62cdd03f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 80e6d33a3d42a7549b409f199857b4fb54e2103fc44fb87605b6663b7a7ff750
MD5 3b84dc6b204e5cb8ed1bf17f7d5194bb
BLAKE2b-256 34926a7be9239f2347234e027284e7a5f74b1140cc86575e7b469d13fba1ebfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 75e3026ab649bf48f9a10c0134512638725b521340293f202a69b567518d94e0
MD5 2b0cf5dd3e3d7587c29d9b5804cb2294
BLAKE2b-256 563812730c05e5ad40a76374d440ed8b0899729a96c250516d91c620a6e38fc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-musllinux_1_2_riscv64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e1fdaa14ef51366d7757b45bde294e95f6c8c049194e793eedb8387c86d5993
MD5 0bea52f81706313d88ae06565d3d3851
BLAKE2b-256 6a3f6c6c8a0fe29c26fb2db2e8d32195bb84ec1bfb8f1d32e7f73b787fcf349b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85e9beda1f591bc73e77ea1c51965c68e98dafd0fec72cdd745f77d727466716
MD5 ef54a81b6eaf3df20f17211b3e9a7738
BLAKE2b-256 86e771ca9cc9ca79c0b7d491216177d1aed559d632947b8ffb0ee60f7d8b23e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbf507e9ef5688bada447a24d68b4b58dd389ba93b7afc065a2ba892bea54769
MD5 099d983232a7fa385adb86f78f2627fc
BLAKE2b-256 5880c7c8244fc3e5bc483dc71a09560f43b619fab29301a0f0a8f936e42865c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.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.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5f10fd85e4b75967468af655228fbfd212bdf66db1c0d135065ce288982eda26
MD5 17c82b0b1c551761edbb504b1e901005
BLAKE2b-256 866591a0285f51321369fd1a8308aa19207520c5f0587772cfc2e03fc2467e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31c9921eb8bd12633b41ad27686bbb0b1a2a9b8452bfdf221e34f311e9942ed4
MD5 098f695befa3ecf54a8903275a9e2e0c
BLAKE2b-256 501295a1d33f04a79c402664070d43b8b9f72dc18914e135b345b611b0b1f8cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8c4fe09e0780c6c3bf2b7d4af02ee2394439d11a523bbcf095cf4747c2932007
MD5 992c15729afb714c25e48a2f4f959606
BLAKE2b-256 8edb4f9b838f4d8bdd6f0f385aed8bbf21c71ed11a0b9983305c302cbd557815

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dda608c88cf709b1d406bdfcd84d8d63cff7c9e577a403c6108ce8ce9dcc8764
MD5 2030ed416428255269a993227dc5de6a
BLAKE2b-256 c76388802d1f6b1cb1fc67d67a58cd0cf8a1790de4ce7946e434240f1d60ab4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 389871e65468400d6283c0308e791a640b5ab5c83bcee02a2f51295f95e09748
MD5 2dbb17b3b01b1ce30a6e21bf6c75775f
BLAKE2b-256 77049516bc4e269d2a3ec9c6779fcdeac51ce5b3a9b0156f06ac7152e5bba864

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed5f69ce7be7902e5c70ea19eb72d20abf7d725ab5d49777d696e32d4fc1811d
MD5 c5ea2e5490eb4a838c1d3ebcacf1b919
BLAKE2b-256 743fbbd8ff36fb038622797ffbaf7db314918bb4d76f1cc8a4f9ca7a55fe5195

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.23.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a6940a074fb3c48356ed0158a3ca5699c955ee4185b4d7d619be3c327143e05
MD5 4e49e67b8e970c051278f501a5b23d0a
BLAKE2b-256 682ec5a2234238f8ce37a8312b52801ee74117f576b1539eec8404a480434acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4c53f8347cd4200f0d70a48ad059cabaf24f5adc6ba08622a23423bc7efa10d
MD5 d906c83f041c959a731bc73c9ad7a75e
BLAKE2b-256 7a355a553687c5793df5429cd1db45909d4f3af7eee90014888c208d086a44f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.23.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cff6d44cb13d39db2663a22b22305d10855efa0fa8015ddeacc40bc59b9d8107
MD5 c7b73e84a085689b113526d189cc2200
BLAKE2b-256 8b0d9cc638702f6fc3c7a3685bcc8cf2a9ed7d6206e932a49f5242658047ef51

See more details on using hashes here.

Provenance

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

Supported by

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