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 https://codecov.io/gh/aio-libs/yarl/branch/master/graph/badge.svg 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 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.16.0rc0

(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.16.0rc0.tar.gz (176.6 kB view details)

Uploaded Source

Built Distributions

yarl-1.16.0rc0-py3-none-any.whl (43.8 kB view details)

Uploaded Python 3

yarl-1.16.0rc0-cp313-cp313-win_amd64.whl (314.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.16.0rc0-cp313-cp313-win32.whl (308.4 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl (358.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_s390x.whl (360.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl (353.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_i686.whl (344.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_armv7l.whl (339.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl (345.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (338.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (343.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.16.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (326.2 kB view details)

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

yarl-1.16.0rc0-cp313-cp313-macosx_11_0_arm64.whl (90.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.16.0rc0-cp313-cp313-macosx_10_13_x86_64.whl (92.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.16.0rc0-cp313-cp313-macosx_10_13_universal2.whl (139.4 kB view details)

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

yarl-1.16.0rc0-cp312-cp312-win_amd64.whl (89.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.16.0rc0-cp312-cp312-win32.whl (82.7 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl (355.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_s390x.whl (361.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl (355.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_i686.whl (344.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_armv7l.whl (340.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl (342.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (340.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.16.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (324.5 kB view details)

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

yarl-1.16.0rc0-cp312-cp312-macosx_11_0_arm64.whl (91.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.16.0rc0-cp312-cp312-macosx_10_13_x86_64.whl (93.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

yarl-1.16.0rc0-cp312-cp312-macosx_10_13_universal2.whl (141.3 kB view details)

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

yarl-1.16.0rc0-cp311-cp311-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.16.0rc0-cp311-cp311-win32.whl (83.1 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl (357.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_s390x.whl (364.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl (360.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_i686.whl (349.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_armv7l.whl (343.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl (346.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (351.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (354.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.16.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (336.5 kB view details)

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

yarl-1.16.0rc0-cp311-cp311-macosx_11_0_arm64.whl (90.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.16.0rc0-cp311-cp311-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.16.0rc0-cp311-cp311-macosx_10_9_universal2.whl (140.2 kB view details)

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

yarl-1.16.0rc0-cp310-cp310-win_amd64.whl (89.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.16.0rc0-cp310-cp310-win32.whl (83.0 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_s390x.whl (338.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl (337.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_i686.whl (322.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_armv7l.whl (317.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl (317.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (328.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.16.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (309.6 kB view details)

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

yarl-1.16.0rc0-cp310-cp310-macosx_11_0_arm64.whl (90.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.16.0rc0-cp310-cp310-macosx_10_9_x86_64.whl (93.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.16.0rc0-cp310-cp310-macosx_10_9_universal2.whl (140.1 kB view details)

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

yarl-1.16.0rc0-cp39-cp39-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.16.0rc0-cp39-cp39-win32.whl (83.6 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl (333.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_s390x.whl (338.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl (338.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_i686.whl (326.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_armv7l.whl (322.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl (321.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.16.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (312.8 kB view details)

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

yarl-1.16.0rc0-cp39-cp39-macosx_11_0_arm64.whl (91.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.16.0rc0-cp39-cp39-macosx_10_9_x86_64.whl (93.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.16.0rc0-cp39-cp39-macosx_10_9_universal2.whl (141.4 kB view details)

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

File details

Details for the file yarl-1.16.0rc0.tar.gz.

File metadata

  • Download URL: yarl-1.16.0rc0.tar.gz
  • Upload date:
  • Size: 176.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0.tar.gz
Algorithm Hash digest
SHA256 fe0e25da00088e606c7d7569e11d1df819473d096f80fc49f6bdf98a7bff08f5
MD5 f055d49082f2c9cfca0155b21ec5e3fb
BLAKE2b-256 91280f646c72f792733ff495335d338ed15bf39c1d542cb20f321dd9cd75d08d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-py3-none-any.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-py3-none-any.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 677da2da565692e191a5dffa478b3cf37e625ec2d8b6a63c432639252fa6fda9
MD5 39e832a4e938a481a1fc9d8c2cde9896
BLAKE2b-256 50be0554944b4386e3c5de002a5880ad1251ab8fbd3660cf026fed55b899d4d5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 314.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d2913964e0f2e82bbc973be0c81cc39401a521bbcae8e2b8a4bcc355af0d5a8
MD5 9b372c37b660969ff04bcd61d1fc9203
BLAKE2b-256 07aacaeb2b6002253ab4bb4a7eef22418785b3ffdbba09bd79d3ac5cf4bf465b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-win32.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 308.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 172a63829dda921550fd428c2dc80858909ef63a7908c77ae674b72ee9a85688
MD5 3eb350f66a61da909d02950438076257
BLAKE2b-256 08e4d57fef98890c6064dbe2c2b57f4c47f94e2bf75240d02e5b44df35f507d8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c5255caf8cb6662c023e9546be796b9a84a259a49ff72b4bba0bb97e891d3c6
MD5 ff2ff611ece5091e22d95dc3ba58a154
BLAKE2b-256 9d7b360e3477eb69dac0256f5dca47adb20120e4da5f4d7f1e9c36a28c8fffbd

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 18e833dc7ca8454f34b936194b8c6f24d53b638aaaf011459a2244973f231ade
MD5 8a02ed356b0a68b96a6d0bd4cb348a36
BLAKE2b-256 fa223e86fa7b45833b233952f66c1c9d84e8865b531a0f8b5a7bae7ed694ee5e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b2b420f1f845da0eae25a7ee0b5235fe7622eff6aa4b2a944c85ba43e679239a
MD5 ce78efa68b3a6e065028bc29ae8bb8ec
BLAKE2b-256 5eca5987a2274b1241495609c6523da95d9a0951126a989f14d9b5512e006238

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd462aa239ed839db9426fd4daa40d018ed3d03c2cbf245aa7a82e5e02ab6dc3
MD5 d472cc7d68dc81e155e09a66b6c508ec
BLAKE2b-256 c1bce3d39e38acfa657297c9e61349a7c6d42eb095279839e03b27b576964af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10e98163178d618bbddf336656432e59e5a0d8a3355fe2fe8a5feacbd4315769
MD5 0a21b10264cff484f270c9f2390e138e
BLAKE2b-256 e0c0fb0ef3d2371d01f46fe586c29ad4b8d541d78b915a4d2c3eff3efdfe9593

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7e9c0aa9cd7bdd3b14617dc7c80345f0f50a4b51bb166625464cff51729e0bc
MD5 d8300ef561e319c375576b75425447a9
BLAKE2b-256 f586ac878ed13b86b542bc69189984b3fbe28bb684c20448c30a9cc02aec6de0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b809a0331502def47bc08a95666dde1e91654bad02ad37c00e2ca290477b01f
MD5 976684a49b1f1e87c4b455f1953a653b
BLAKE2b-256 e6fa588942d582fa2d7bf2e6c7c44730abd2bbef25a739a536767df31ec0010c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a45edd6ff3039bf5cf8fa512f26b841622c2ea470de84d464cfbf253e07ae6f
MD5 f6e7ea979ee105fc77dc7df6f1e7d6a1
BLAKE2b-256 7be7cbaf7dd6eda775f66d2a70af48df947d3e4dc94c696da666741403b2c763

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc8268137dea4f81f45bc3ac2448ba54dc6e9d384e2e9506ca7ba57327968520
MD5 d653f4495567baa9dc1324e2420691cb
BLAKE2b-256 5426931eb90946c60b30dda5a45f1292da83baa07c5edda67dedbde0bc3ca0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3bee60e23b3358adda5112b442fa6ff2aa83ec20a43e5aa3049d423c1268883
MD5 07e0fd0e6351330c6193b6435fd2fa4f
BLAKE2b-256 9569b1282cad73c09411a2affa5db79c19308b90bf1eab1d8c1111b4ee46efe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63b2a68dc17e472d81dc97cfed1ccbade6ca785f69cbecb92484b4c878acf925
MD5 40d108291dcb51965ecc116b755114f1
BLAKE2b-256 38b38a52a5528bfcf36c988a8fb87660ab38ce7f2b9d230250223d7525f3238e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7935c362f82e2c4da2785d1c022bc7260c81dd676ad94721925cc762644c889
MD5 259e2ab9904d0d2d3a514213551be9e1
BLAKE2b-256 b12ca4ed9233c7b5e413cab2221dff037e3ff3556791d249a18fe8b478abd4fb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 563469ce92b319fc0fc2fbaa7ca859885d0886891313bed3ef46be5ce431b151
MD5 7bcd2b96dc3d8e6f2f70d9daa0565ad8
BLAKE2b-256 86773e5aaef0c4d53864bb3724a2308de970bdfaadc068f032a6c9018abf9bc5

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dcddbf6afd59ad5e8c77f3f374602e2a4d8137b716d99fb56660dbf575575ca9
MD5 056cee347233c90d25a1e169e3f3041c
BLAKE2b-256 b4fd23ceaad7ef8641f657c9c4857b414debf9b634a261eb39b281c7eec8a841

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 89.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8fa35ea1048e7a2c5e1015f72aa0848a9bb97d60c6380ac849e1906e5e6db970
MD5 541e6e72ca3cd7ddcf1d73672b5d9e73
BLAKE2b-256 d763390d4d162844d72fbf7b74440d433e1144abad3d3688ae4b0d4012c9d84f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-win32.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3691d5a67c2d5ba778190b97a4c4aab943c2fab98d6fe4cec9f9621efc1a738a
MD5 7697e4f2b82ec12de3a2e62998fec9f1
BLAKE2b-256 aa180825cf784c592cd3f45926814f8fc1ea8c4265ab2bfee649d4aba02663a0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a3e0f940d26388d8e6b811cc8a6f646e5c3e604a80c5cf60da55913cdccb7d
MD5 dd31a69ff22bdacbd0ff1b96448b2f37
BLAKE2b-256 2081b2dc570130f243ac24717be27701d054783cf563835299ac456b0e366b8c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 22b9029c35dc2ca01da016079e6be814e0a9eb28e2b37f8744d7ad900a6e8785
MD5 6bfa5f4760f384870911ca546ff723ef
BLAKE2b-256 9278a6965596d2a273d75617c71af7a236d9f4092a6ec55274dd5acee23baa17

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2c11311fbf3e134885b5ab6f69ea4da0fcb56b0039fefcdc809e092e4e8ae9ae
MD5 03be5a675099cfd244c42b4f5f92fac4
BLAKE2b-256 5452b7d7fea71ec6ddde53a6818a9d30dc30d30a2cfc4fafd40c36dc6f000e5d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2609a8a240f682a3d3e9730892730cae2a7a3af703301f1049849a144d8e792
MD5 cf49b1dd1ff482706a6720321c691c47
BLAKE2b-256 c111a0a0d8de8854fba92b50a0767570f5ff21f397d2f61a86c0801127368484

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b86a5f5200a8c34795e4ee0feda168b5d47470440cdce1b80de4c8e9691e9065
MD5 9f1ecac17c8cd2fea259c4d56ea15665
BLAKE2b-256 b45dfff285346f55060d5066d9998572db3fd9e7013a1710321e367384c1c22e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d18553b47fe23e1086bd3ec858d7c8512e80b84331e6ab92a899352c29a969c3
MD5 cccf2bd1a6dca61c3b9d408032ba8385
BLAKE2b-256 008e440ba0a49ce9fcdfe3a4b185813731cbb62781acc1ec0022ce1fb28bb37b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a17863846737a4b56dd80503eb4b958a450636ea860b2885c241a7829c4f00e
MD5 da68d54123bbfce9979f08fdbfcbf2a0
BLAKE2b-256 551ded69160c418734f34485ea312edff8c670a2f365840a0564595421560b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3854cd2b14de75e85ed6afe4d51cbdebc8eafb76299b0fcef9af3da4a94f8641
MD5 705b044e9624ec43816ae852858d1737
BLAKE2b-256 8b91f3f226b8efdbfe17fbf49e5a165f0ea57275e2fc5d1cc234e55b6010ff52

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65980bcbe4a4d28ee1330408d4144f8ff56d6b0303859700cbd8252a242e6468
MD5 f520f9a18fa395787c54eba8a24e3c6d
BLAKE2b-256 e6fa8209785a9deb0e525fd69cc2f5e1ebfb3bd3c674daf67efad00280f8df97

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e91217d8894ca17299bc0f83ad80592108b883ee028513588108ab7f0ebefd9
MD5 d91613b18a79137fac5f35f086bdd44f
BLAKE2b-256 2cb63e63e499941839aaa0790475f99ff998622ef95ac1af6c9ba33919dd2b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71300b19fc7accc6522604bfcc5b6a64e522c0d22b48bf1b4b3fec60d1dd04f7
MD5 dde578301113e16562cd52c52264026f
BLAKE2b-256 8dc3967587ca4847fcf221cc37012ccdfec0bd56b5a077e7dcb475b5c52cd5d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40249a6f8da440bca0098695dc70980b75a1be8a87a15658bc6a1a038511ca0e
MD5 74e8f52650d3117f26cb661bba72bbda
BLAKE2b-256 d90de85697084ddb85b5cd11e5cfc008960c43dabfd86953c2e79f147f9e3b18

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a462ab1f6826ed8476a8c753eab5ce26a1def6e09abb376c2e98aead72bd019
MD5 ce748b6ccb5ce9584d4d460d9541f2c4
BLAKE2b-256 8aa4624ec237e03488bd43bbdd6009b481d3903a78eb9f205f42bfeed7f50e8e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 18f763113d1ca98a8387a47bc49f2850973ccc7941f337a7f61af88c5f0ed41d
MD5 9a40cb06d3614f61bf2abf9c874d67a2
BLAKE2b-256 60bcf16a09b5acc3fc071894e0e428d6e204012939751695000d601086c76ada

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 677d38626f6b9a8a7de077439d1394adeefafc55a245378d4e428a56111367dc
MD5 2d17fa6bafdad9033f5a4e99b3ab68cf
BLAKE2b-256 ade54183bb0ac769cd2c500e6feae002997ef3cb112c85aca99fec2bd5dec09f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-win32.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 83.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af3fdc9a55ce3e903398b6325e1984960493f912a8101db830f6900d0f042366
MD5 feb9d6b0f6015c31527e4782b6f0dacc
BLAKE2b-256 676fc0ec2de0d578c5ee470e7ac7a75769ac9e29cbb39bee39a13e506cee525a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cac7cbc3f15413339800def09ef23cda15b4a28e86d312ca03b5be7b42b50de
MD5 28cca6cd8afb2c0840fbae6235ef189b
BLAKE2b-256 c500704b741ed3b41a8cbf8de634fcf00ad7c58b06a330f0547d406c55a5ed40

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 42aa169d1baf8dc1515bef6cff0d229b9277feef1d6167dfc10a005d25ac2db2
MD5 b27ec6243245c9666286255a02529150
BLAKE2b-256 1bfbdf752c241a949105141c51b96704690e5fdff85b973589c1079bd3763186

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ea5420dc8307d95d30e3049d807576045b09a77bbf5204b278dc6a7c53917ef5
MD5 7c941c8fc53fc84f01961f0087c9a9f9
BLAKE2b-256 9759bf82bb8a5152b16b113d855d9684c3ba5024d768b04e6f41e5b6e614a3a6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc835bdedf72504a7ec2806c88951868acd41f8f60619b0b96d5895b705b3cd7
MD5 2dcb0efe7e41a65eabe95b6445e31a7a
BLAKE2b-256 23746d36c50bffdf7d81a56a51e6565bfbd40da008b6948999ddc6577075945a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 669ffa0c4f63ead4be2f0fed39ee2f0acabd3aff05860a97a1c7b4ce2151519f
MD5 4327ebd5a9d678f336a76a85c69f431e
BLAKE2b-256 9f8f1f070baa308a3c95934c241ae805606f24645dbef4b57d60ca443e81eb51

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01ca1e01919d80d35c5e51de13b31b810cfd8ec49cf13a4a289cfbd96c8e9422
MD5 09cbf5b963efaf4c01854bd0c91fe4b0
BLAKE2b-256 f1841e388a24ed2af32360875d855576b97186b0c6295cab3182338844367f6f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4ae0b8c832be177c3b5d278167d25b25b058c5dd7b8ec7d0987579c12054ec0
MD5 ce476f074fb305e3c008cc11ac14a6af
BLAKE2b-256 4c1514c3795c47bfc6250efeae1b89c9194dbdd415c0be74f8bfc5c6a6f6245d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fc6669627b9a64c0ac6d53375feb1b193c39e6fe7567c3d5ab469cd54090916
MD5 8d61a4e4996eb286b66e7fec0e357792
BLAKE2b-256 6b502eed279f9015fdea05c1619e2f9582df6c4de2d37b658a33438fd34baad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1347f1c95851ea22947f50e0963d4586a93dbaeec7ce03687a0f5d6b23c9b02
MD5 61d546994e0d7604a47e656084078f72
BLAKE2b-256 3d0edfee18c10910d0b401a067841bb329365a7bd4547161313be45cc916976a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3598ea03d2fa50ddac4987e3d16372d344fb3004b9a4503dfc7e96cf9106d447
MD5 3c372995517cb2430937a25feca68187
BLAKE2b-256 5812f13b158fd118645cdfe24d8a0e7392da91c6a885db6c59bbbc56f74f0d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbe205c09ade54a7170ee7ca25ef21e171bd49ed6f026d38b25ab2ac0074505b
MD5 ac6d741cf6f5ee2fcb654f1b64e77335
BLAKE2b-256 428a842584f35b682934faa7c6f1e0d7d3376d29a3493b201b12559135e3bceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11254fd8b4070b9101c515b89fdfeaf4ce577afa4cf78c0afe0f4bc2de041e56
MD5 f008f01e59c63bb4f0628c984a2d357e
BLAKE2b-256 06f13ef21221a09bb4b2ec592c43fdc3b05c30d680b70eced67fc0b4e8a86b55

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 238019570e122e31935e3c3bc54850683417f020e7768da29edf8280da4ada20
MD5 85c0876f759926e414675482f4fcf3cc
BLAKE2b-256 0bb3322c6177106cef72f5be060bad027e691f1ae99406616680bfa5639def3e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 308c84cca22a79e93a3154544748be56b39416df9dd80efaff8087bbff91e68d
MD5 a90cce483577920ee2c9e102a1923b44
BLAKE2b-256 5b40295cf0f7387aadbe6ce72dd7ff403353139e5eb077f9b703d2bdf29f2172

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 89.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 830db2c877277c636e5468dd3843dd0fcbd34a9e2fdf0813182c55554a16b665
MD5 ea818a17c9acd21cd4d725d3f8e62948
BLAKE2b-256 0c56cb92044a921ab690054b9226c7053cd4229c8b10ddd2e148d5706fcc71ac

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-win32.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa6c88d89405aaa812c759d393da0715c234f7e82c2b102223cf7d79323745ca
MD5 0ced2da23cb1ba0d56684845cd6d7b7b
BLAKE2b-256 b377013d2d738f07201f114f116fe8f15fe267a9cae810c2bc972701c3dbee47

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01a444e338871f2eb9606a116e0a1cade6cab48e541312cdf3b3743b3fd02cb2
MD5 835ccf3def5aad4e63cdc477f56b5410
BLAKE2b-256 e4ab6136984e78c46e1fcf4b9e6c3a2a9c45c5db19829fa3c4ebf9cb16e457c1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2229259cff6c6228b738860bc233f0f6801ce77b21e229215c0b9d81f144b81a
MD5 f325a9ebbdcfbd1ad83bdc9056e67c9a
BLAKE2b-256 b7ac54142d285f7acfccf4132d3f7d65fc58631e010404a0e61e195a78dac8eb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a65a9f744c4450fb49a8d7ddaa75227ddbcad612ca86ba8501e085af779df082
MD5 01d1985e128ed9beb9c0ba29b4d73cda
BLAKE2b-256 38d1d2faa45e5464e1b3ca2fb2677c72e572cdbd6ddb54fa7d9f75e3df18f307

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25426eccfa72097b62e9a28002ec294e2c8435af744ed9471cab92b8816df232
MD5 018215d97d607d8d6de0ab03fac1488f
BLAKE2b-256 4bc57c09da79891d830d992062a83597d74be44dbc6f5a9495ec7df6a0581c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60caac840046dfdbfc87d8a1c8587cc5d4b0fcd316dae9ad314d45a379a59982
MD5 f7023ac69ffc2be4d8b4992f8164d4c8
BLAKE2b-256 4f706ef3aecc81f7319c48787ff66babcb3a9574500f4ee1c44d35ad720af2d7

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aaf1a5fd27c1a5c2a07b01b2b134f1337b0e7aeca4830b9361cbeaa7ce4413d
MD5 8e1b4b2a93480304b477bc193c92f761
BLAKE2b-256 8814f16518aa1866b056928addeae98f785afe6c6a9bab5bc6f445cd70ca4f8c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53209976497aaa977691d806fc413157d71beec919e12594088416bc38594e1b
MD5 78bb43e9d82270d24e59e88cee748426
BLAKE2b-256 a861afc8c73157c8dd256ea272792a52d13713a71fbca3ed3bd496c485d46578

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6f25a2fc33da070d2c10a9dd1f55bca4594055ca3880f1338057960a9737773
MD5 6025dee20819395084468caeb7e2c864
BLAKE2b-256 08fb50093966347beb5d8859ec30a804be524fec0f07b07149c9fc30dedb5ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d824c67d3bfe584a9fa081e946e44f484080f28d53ac64371dd561da629e7ebe
MD5 d78401092e55006f31ab6412ae4fab5e
BLAKE2b-256 7b900beb09357d658013a83dc8e85192a4ce94996f0b550d183a564b527d2c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e64250ad1b7482c4d8efc0e7b9c7cffade88499b2a3676864dea4afb60a5ce2
MD5 9d0c6d4f2809767755d4e9602d2bdabf
BLAKE2b-256 42e0ad11a1287f1840ee15ca8cabf994d0bd241a0e446db63c2a8802900314ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af44f12a3c828e1a29cb18c12f9db484cadce1543af55381c073f37f0bd98c84
MD5 b4bedfe4a4f819706664d357c630cd05
BLAKE2b-256 bd3ace075874d93f1fad96fb5b96019394187bac3bdd9a9de3ae50dc3fd577b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0164bca7953f1ffc89f760798d9b212e4cd8477ab4e1b664a0a534f2b22923fd
MD5 c6e55abd10f18b085d0b02fa94a707ab
BLAKE2b-256 90e2d58154ee95e3b3ae895fe72661b84c6796f0d36857a836037cef4ae809b1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7034ec6b02642bb611a5e4b81e140de51762f7cfbdf13d797fa90ecd3714379
MD5 8588ec063c39494d9ecaeaad14781285
BLAKE2b-256 287382035d20ebc8c98ff7dbc463c7f6cdabadda0706a4abf98576d750d55418

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a346830ca51578b3ab8cdc637d3e5eb39c1261a1e9fa40d822df5bd03803669
MD5 bf49203e670c70b726aa09a80700c99a
BLAKE2b-256 a4cb14e4d9dcafbcdeff4ecf9a5cd1196daf4f6740d3d4e8e8fdad4484ba2d7b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f4c64fc6f59979b814c356b759928e9d632b59b5639994b6aef7a2deec687ef0
MD5 a73567804c34f119de4f0a2f7162a1be
BLAKE2b-256 2e9f2801a89ac1c6593a8e7e68d9769549fba9e4cfd4983ca924a401dce21e51

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-win32.whl.

File metadata

  • Download URL: yarl-1.16.0rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 83.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 93fb1604ddf9f856bea5e9c7c71bc9b61d2a638a90b7c161601c0e6b148e8fc6
MD5 5ec5bb59238eeb98869a488f11276189
BLAKE2b-256 1ad361b254b6a84424902386394a09870cade2da89698f7366a382e630b0c3a8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cddfae45dad191db33b5173d33e635b68a1eeb6ccc06e2e491147299fd68a9e2
MD5 aef444c632e3216ed9ecf413ca6160c5
BLAKE2b-256 bc416c14e2b46300abebab45dd6282b3b0907a066bc56349ddbd583a19b0fa83

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cfe1a8b9494171e94a7297601b22afa1724a46eda89de279365f74cbb8fd2666
MD5 66b15c223f93a57468da497a830943f7
BLAKE2b-256 e42034035c6425f67d63a79af88c105705d5f1fe6c528aa2f15a3e3874cdf210

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ca7c93b0a16da590c36728a09186d276859a4a9fd8773a84043d399ad395f2e
MD5 b234be8be7bc741e314ad9ee0c993dca
BLAKE2b-256 671b27d446b5d4937c38ae8fba876256db1d86e1b155bcd23b4008b72ab22b7c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f53d6cf0cfd365a87d8093c377fb45f9a1af339809f5eae554816ad36f82b1c
MD5 7459a4b565f5bbfb4b28be38ba0ee4b1
BLAKE2b-256 e602857b1c9113d8b5994db77e9f18fb87670672e5b7b6785c12de4601a70c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4697b9dd75f343f89ce43deb3b6643d9842e670d01c2af62c9d446874a7cb2cd
MD5 f0e3fa37295cbe2c4da1be0c541152cc
BLAKE2b-256 5eaab86b80214942f61a83f93a3d0361a8cd38382f1b962cdc89cd19081bde75

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 221dbb6afb2c60c5fc253104487fb3fd13aad2977545c01b30eb66cf05ae6c53
MD5 3d9ccc51dd1c782205845b84beb29439
BLAKE2b-256 41a4b4528da8f13590c950d999cb7a5e9b09ef51996ccf626b3a8333d62aad31

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c89ff45fce57ffc511ec90a96f24bce0683f7c7c6724a2704e1ccb93fc6b949d
MD5 b202f7d93f219bca2f6a3aac7119f422
BLAKE2b-256 b25ea7802a43780458a0f7eb0d99fbe525981ada379f9f8c113c1f23c1581362

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d86485cd23dd2980c7af8dd176628ac06235897befb078f8e92d0ab1e93ed69a
MD5 71bec60f1c4c26d25308180c8d04051e
BLAKE2b-256 1570239c0ce3057ad9c47b79094cb8d3471c06e199f5d0aab6c5ac380d2ca628

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b24f21a6dba2f47fb5f2786cced127735d728ec3353262e4b5181e065c4bb5b
MD5 3d4e69f02921e1106d9c39b05a0c7ade
BLAKE2b-256 c0110826d297bc7f7e79b3561aba0fc4268ad5c47dd22ce3c29ffbc615ed481d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd52b332e9006caa1229dab7fc875d1fc3c98ff2c2569547d315c92f94ac17e6
MD5 df672da3963a2d3e379fbedfae8fcce7
BLAKE2b-256 56529e99a78e78bd714bb0e49cce94b07695011becf0a30b786a3ae6b5e5ace7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78facf3f776d3bdf60c5bfc50a748a32d608a05ca1e6d1467142f0c0d599f75f
MD5 c5100f4bab60361706d1eb10473a1610
BLAKE2b-256 b256abbef8a0e9a2b5a1a245ae42ebae2e76cdcc0ee744d60c603a2798d28b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.16.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b03fb5cdbf479cbf3d1dd29643675bacf2a6f6173ac889f3ea6db8b280aadb7b
MD5 0edeea4c94b177ed8f5c68f2a2e0cfb9
BLAKE2b-256 34b483dac9c2f93c1f4430f882a62dc878453e01e034899095e7aafc312d2091

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe2ec4dfd984f29f7135c61cf15b8dabc4971120f26db55bc92574f851f82282
MD5 b6032b8f3feecbefcfb8544ce8e59bcf
BLAKE2b-256 925788ea7e662d3272ea4a2ffddf709e09967b85ee18eeeb499c7dff882dca21

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.16.0rc0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.16.0rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5c34691441b9d430888acc71603d80adb7a266ff83bb0b9708dbc8563b8d9d3
MD5 ded3b2dd6c40e3ddaa58137d3149cbdb
BLAKE2b-256 3759cc10f760d56dc9bea07d86c9fcd82bb9af103d83221a69cf5168d8fc1069

See more details on using hashes here.

Provenance

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

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

Attestations:

Supported by

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