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://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.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.15.0.tar.gz (167.1 kB view details)

Uploaded Source

Built Distributions

yarl-1.15.0-py3-none-any.whl (38.6 kB view details)

Uploaded Python 3

yarl-1.15.0-cp313-cp313-win_amd64.whl (307.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.15.0-cp313-cp313-win32.whl (302.3 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl (345.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl (351.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl (342.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl (336.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl (331.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl (331.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (336.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (317.1 kB view details)

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

yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl (85.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl (87.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl (134.7 kB view details)

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

yarl-1.15.0-cp312-cp312-win_amd64.whl (84.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.15.0-cp312-cp312-win32.whl (77.7 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl (352.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl (343.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl (332.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl (328.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl (330.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (317.2 kB view details)

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

yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl (88.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl (136.4 kB view details)

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

yarl-1.15.0-cp311-cp311-win_amd64.whl (84.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.15.0-cp311-cp311-win32.whl (77.9 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl (345.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl (357.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl (355.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl (334.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl (330.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl (335.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (347.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (326.0 kB view details)

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

yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl (88.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl (136.2 kB view details)

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

yarl-1.15.0-cp310-cp310-win_amd64.whl (83.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.15.0-cp310-cp310-win32.whl (77.8 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl (316.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl (323.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl (326.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl (310.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl (305.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (300.1 kB view details)

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

yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl (88.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl (136.2 kB view details)

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

yarl-1.15.0-cp39-cp39-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.15.0-cp39-cp39-win32.whl (78.4 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl (320.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl (326.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl (329.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl (313.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl (310.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl (310.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (325.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (303.9 kB view details)

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

yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl (87.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl (89.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl (137.7 kB view details)

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

yarl-1.15.0-cp38-cp38-win_amd64.whl (84.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.15.0-cp38-cp38-win32.whl (78.4 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl (326.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl (332.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl (332.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl (319.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl (312.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl (314.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (327.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (307.5 kB view details)

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

yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl (87.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl (89.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl (138.3 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.15.0.tar.gz
Algorithm Hash digest
SHA256 efc0430b80ed834c80c99c32946cfc6ee29dfcd7c62ad3c8f15657322ade7942
MD5 90611b7f07e46122640efc67f975c482
BLAKE2b-256 5cf816a6eeaf14fe94a48e5f1690c0e5a36ac19ef844d378f4092423d087439f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-py3-none-any.whl
  • Upload date:
  • Size: 38.6 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.15.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1656a8b531a96427f26f498b7d0f19931166ff30e4344eca99bdb27faca14fc5
MD5 0dd73683dbcd389d2049a1fc4e3d38e0
BLAKE2b-256 f2c3a0f1ae6b8ada7ddcbf47d3af7ab9b409763533cc625c9cccd2fc20f79e5a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 307.9 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.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ceb200918c9bd163bd390cc169b254b23b4be121026b003be93a4f2f5b554b4b
MD5 631bc75d17f90c17d4d6970b5810eaa4
BLAKE2b-256 cd34a620b94e301687d87e7c8f08e01a96e00597f9bf0172dc104df9ada18ee6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 302.3 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.15.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eb964d18c01b7a1263a6f07b88d63711fcd564fc429d934279cf12f4b467bf53
MD5 56323ae9fafacdeee2c5749c8eaa7a74
BLAKE2b-256 9583cf2b7c3aa15f1c39865610b7236baae1f48b80197b7873340b538b9a91c4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32840ff92c713053591ff0e66845d4e9f4bea8fd5fba3da00f8d92e77722f24e
MD5 de7a55c5cccccd64087b96f4962bee24
BLAKE2b-256 3ca1eb8a3ee36af1f3add4ec1b026ebb977e307cdc250a7a59a9be638eb76a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2add8ed2acf42398dfaa7dffd32e4d18ffbae341d62c8d4765bd9929336379b5
MD5 4dfff9d2a05ff6a1e9494be9fd1fe524
BLAKE2b-256 896477192d73dce517371c730741bee98938ad7d0295cc1463c45d2cd6f81a93

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ddea4abc4606c10dddb70651b210b7ab5b663148d6d7bc85d76963c923629891
MD5 3235bb8dc2c2b8e002aa4269c27cda33
BLAKE2b-256 d501bea49e75a8287552a43334e5e6f55f470df3a64c3b0b25ec862ad14f82ff

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fee9acd5e39c8611957074dfba06552e430020eea831caf5eb2cea30f10e06bd
MD5 6fdd0e29ed608a9a1b846e2601b09032
BLAKE2b-256 f54c1a48e733330aaf76666b3fb0da2b1f8c25600ab94bdc7eda2fa1bd5d8419

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9b9159eeeb7cd1c7131dc7f5878454f97a4dc20cd157e6474174ccac448b844
MD5 f57d37af7f57b6b2006e94528ecfa86b
BLAKE2b-256 c3e9b323f609643b2248a9b99872cea91b65f6d0b46d07d6a11f62cf11a081b6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6960b0d2e713e726cb2914e3051e080b12412f70dcb8731cf7a8fb52c37931bb
MD5 7951489add3bceebd4609e151068809e
BLAKE2b-256 df78d26f6d64ad6d0b6d6491c5b892eba0a233b912b7cf3426480a834542a053

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eae041f535fe2e57681954f7cccb81854d777ce4c2a87749428ebe6c71c02ec0
MD5 0736f5bbff5da4ca27697bc18725927d
BLAKE2b-256 7a13ac17903abd2c7459cd32e84361f01aefe627e10589ace66ffa52926176c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd042e6c3bf36448e3e3ed302b12ce79762480f4aff8e7a167cdf8c35dc93297
MD5 4b33dc80b2850b8392ab3f4d264edfc5
BLAKE2b-256 5a9d4a5c431bb4099271352637128f5969a787f703ca6c7b629d3cff7bc42160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c791a2d42da20ac568e5c0cc9b8af313188becd203a936ad959b578dafbcebb
MD5 b4cf6e88a09c194b376a825d1ac943b6
BLAKE2b-256 a4ea130c303409bd49b1416e2d119a60e828b15fb433660d58aaee34e334ee41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1208f2e081d34832f509cbe311237a0543effe23d60b2fa14c0d3f86e6d1d07
MD5 0276df0fef336cc4d3493480a817e5e6
BLAKE2b-256 f4ba96f808a4fd5fc70576a089452a867a60c833f4b653b10bd9aed119c48809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 454707fb16f180984da6338d1f51897f0b8d8c4c2e0592d9d1e9fa02a5bb8218
MD5 af38748b9ac5f72e477491f079d5f976
BLAKE2b-256 f072ae4b5ff9af92826e41682664177cea2136dda684eb65e1f38a4c40fbff8f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 627bb5bc4ed3d3ebceb9fb55717cec6cd58bb47fdb5669169ebbc248e9bf156c
MD5 e04d0be49fa122708b8f5ec60975e136
BLAKE2b-256 d9799d674ccbccda33cfb6850842987a5ade98c5013ea219fe9943ce4c673de8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b7f902f13a230686f01bcff17cd9ba045653069811c8fd5027f0f414b417e2f
MD5 27e8a530be8a9fe1e802811d5103a48e
BLAKE2b-256 065a9ba4415af3f0c74a7b2b7fe8715cfe56bef86e3549ca8a43fc8b2be7f55b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a3f8be3e785009ffa148e66474fea5c787ccb203b3d0bd1f22e1e22f7da0f3b3
MD5 0f97f5f56123d8ccc1ee804e050c516e
BLAKE2b-256 b94cf1d346dda559df94187bf0768c8dfc411b9eab730124dc5faf876bb88580

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 84.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.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ae454916aa3abe28d0ef1c21ca1e8e36a14ccf52183d465dfaccffaa7ed462c
MD5 2db73877903e0d8a0ef7a482ac6ceaef
BLAKE2b-256 08a7e27c21cd22b19d09716439ab73ecc3c74d86c20817d2053503785257b6ff

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.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.15.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e4f7efb38331e8327c1cc7fb2a2905a7db03d1a7fdb04706bf6465d0e44d41d4
MD5 9c49deb78a25dad3da508d5f2aa342a3
BLAKE2b-256 4fd70d5a5a9056820c6de04d91f5bdf609d6515fee43add556fe232aaf9db425

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2429a651a2191c3fb8c9de21546c6046da539034d51dcb8df52302748004593d
MD5 fafe4b74ffe66da6fbcb23d6acd2a288
BLAKE2b-256 8fcbcf8192486a1b1f110b92971a5d3ad15c4f88f833c64e60478fc5caa2f243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c7f2deac59dc3e0528bdded248e637e789e5111ba1723a8d7a262eb93e133e15
MD5 7bf20061c3eee848c30d1347a682c45f
BLAKE2b-256 faa06bed5e7ba81f837fab901b52d77380e10c30614c02778c66ce81338e728e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 350b468a217d433cbb4482e9414a14dfd360a3d5ab92013175925abb234364cc
MD5 5a063576c636e3f2f099b9ae87e0d6e2
BLAKE2b-256 86e7eed0d46de02fa547e1ed2a9cfdd179f4e411315c8afca9c8c472539628e3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4424082edff76fe46ff08851e91865097c0ad780fa79b87063dc5d5b80efc9d6
MD5 e63e1c89467cfd04ec752363545695c3
BLAKE2b-256 cfc81544b06ecf2e7de609fdd811d23152f0abcb2b2e298eb1e9d83eb6993f57

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3f5e201bd170fb97c643e84df58e221372cd053fbb291ebbd878b165ea5057e
MD5 c951df102a49e918285ea321aea9c054
BLAKE2b-256 0834704d04099cb5574989cb64638cb8892f37f7d9946b290a2a9e3ea86043d2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e24a778470f3a9e9c11250d09daf5dea93369bc51aefca6605dbc963737a117
MD5 3d3423e8bd7213876e0493c2229f021e
BLAKE2b-256 ded3c78f69aeca10d37f252a7296a0aa3e2fcb76ad9f7a459645c32c7d2557de

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f713d8f3c4e2eac0d91b741e8ef2e1082022de244685601ec83e899b445d86a
MD5 a55194b67ba429aae79d07d8364f85b7
BLAKE2b-256 1f8d9608ce4abe17caf3145185edab6fa9d9b0c28e95614d3db99fdede23c4b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06306c74f0775621a70fa5acd292119bbb6961d1f9a5f3d657a4c8c15b86f7b9
MD5 60807b4968df44d42e81df94ab90d76f
BLAKE2b-256 7a1036e0e0a48060dda2267b8ecec31caa1d54342c2b93cecb4ec63f5468a539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2eafb4e92f72a3b6c27f1d5e921d046e2728850af8887f86857c3fe868a5b5c0
MD5 680d7172f49331f465067dc935f3e049
BLAKE2b-256 7b2e76880607a4f8c05db2936430f8fd10f664d4fe52d9bf1bd7646c464c02fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27c323b28723faed046f906c70466144c4dd12046a0128a301b29a65cfeff758
MD5 29bbb86324f6327196c73904d2c8a97d
BLAKE2b-256 fc4bd53c3658f41867136fe3446a43552befa37449daff2bc1c6d87f999528cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d816969b55a970b3accc7f9e4ea8f60043e3f7de96f21c06063d747ffc2f18ba
MD5 53ddb0ab7f4e2d14ca904c8a69718641
BLAKE2b-256 e64be9460ded721ed06e8b212775ca84076fae1d6be6fecfe462dde711c41d40

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ca160b4c649f0d56daef04751eef4571de46ed4b80f9051a87d090fef32f08e
MD5 9c1340cee3ff40089f1e2ba2f7f376a2
BLAKE2b-256 33b208f698f92165a05c791d29982ea6521c3ac9e1bc9f79f11bcb7348aea46a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df57f3c3ef760489f2e82192e6c93286c2bc80d6d854ef940e5345ae7153cd4b
MD5 76fc6c3e74888cb2fc92015b16147c81
BLAKE2b-256 5b3396d23af7c7a733482f5e328bd6c0920dd6bb1b5f54f579ba601c5177addc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9084d99933824ed8d665f10f4ce62d08fed714e7678d5ff11a8c2c98b2dc18f9
MD5 de34344274fd559e4358b00b607b3cdc
BLAKE2b-256 c00a30fc024b381882f5d9666fd3b0b41b0ba0a9e72825221e1a32cb2e12589b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 84.2 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.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 229f222bb47cd7ab225648efd1ae47fe6943f18e4c91bce66471faf09fe33128
MD5 bcc0349e09d5f9e1f04699e6f685431b
BLAKE2b-256 2909ebdc694ae595b6a4b7dac9c870b9a1d033246841ef6fb7347e193ba33623

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.9 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.15.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a94c9058c5703c172904103d7b479f7e23dd4e5f8e67b49f6cd256d35ff169cb
MD5 4b24a1b0730777677cf66b2c67b71210
BLAKE2b-256 cd2a233f9ad7027f3a874f181b98d5193f541b7a8fd44d9b4a2aa3932af0afaf

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fac5416c44e8e1d8ea9440096f88e1a7273257f3157184c5c715060e0c448a1
MD5 34d654e980fc024c98aee2d720cff52e
BLAKE2b-256 9cfccaa013a7cc6f9257fdf4b300e339947bc04f51c6d1642d6fbaede5c3159b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c5ff3e7609c214667c7d7e00d5f4f3576fefde47ebcb7e492c015117dafebbf
MD5 518dd78091f4959cc18e7e8d741aac45
BLAKE2b-256 361c6c734aa0be1bd814d4d29cc6a4f6ec10b7864f60d4701b69653898c75f24

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c9c405ca78c70c3599d8956e53be0c9def9c51ad949964a49ad96c79729a5b1a
MD5 c2f43e66d957685b01edba660cc546d1
BLAKE2b-256 814578c728df57a9423bb60e27679b792effc8419b3bb445a65f0d8aed7aec43

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18614630533ac37ec373bd8035aec8fa4dd9aedac641209c06de7e082622ff77
MD5 a260a6e5aac4a19cc3ef3465e575d53f
BLAKE2b-256 7e92180f78d900f00bb22d17724c5592e4c4187f391e4c33d88c296eb1abee0c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 994d27b24b61b1870f3571395c840433faabec5dcd239bd11ff6af7e34234bb6
MD5 b364613a2a10ff20f5fcdd90b420398d
BLAKE2b-256 a134d0090f0e6a9122fbd40ab1965b4d143f0e6f53618385c7e2e3bd05445161

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97fcaf530318369da3cfd6ff52f5ab38daf8cb10ecee9a76efebf8031de09eef
MD5 e71ac4d003d311e5cf7c56d6232cb1d3
BLAKE2b-256 b70f0aa98c4e7a947cef97c05a8e327b76ed57c6f961b11cfd10ef3d33390e84

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3b08d9e98d1a15338fcfbd52c02003704322c2d460c9b9be7df08f2952bdce6
MD5 d5a90eafed9ed715e913212fb40e26e0
BLAKE2b-256 fe992ccf572db1269d0b85c1650067a1b568314b253670e6432c5167865e18f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7711d83dafe52cda16ff2dd205cd83c05e4c06d5aaac596ae2cf7d50d094a530
MD5 8ce3607f3a93a5cd50f0dfb4a790a97e
BLAKE2b-256 a968c19866bf687c3b02276ef731ac16b11d8d0f037b3f20b56cd852d72c0ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4f882e42c6cea89488b9a16919edde8c0b1a98f307c05abdd3dd3bc4368af40
MD5 1ffbb48e675a5cfc39e8e1cbbc98b9d2
BLAKE2b-256 0fc9bbd576e0658a91a50a9211954457abc58e5fc99d16b415ecb7c0ecc08207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5cc25cbd9ae01d49ac7b504ef5f3cbdcc8d139f9750dcfa0b80d405b4645cc2
MD5 c1fa8e109b3a04ba98fec71edd3348f8
BLAKE2b-256 9195b5aa29afd385087aadb3d258f45bad5878533bf0c8ed0d4b1d782eb7c157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d06040266b5e6512a37b4703684d1798124764b43328254799e9678c588882a6
MD5 1356f3ec7826714d18c60595c2f6c5c5
BLAKE2b-256 7739f8eb47122dea2f10842adcbe339aeac680db7b1ac1e1433c5a32deac331c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6237637b496bc04819190e724a4e61ff2f251abf432f70cf491b3bc4a3f2f253
MD5 338c106fc654b9da5fbd20073d225f79
BLAKE2b-256 71f156d7ab10e1b1ab2b37d9fcffb954280546e3201ef93ceee1f8c493159f8b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70ac7893e67a81ed1346ee3e71203ca4b0c3550c005b1d1cf87bc1e61eecd04b
MD5 8de03cedaea193d43bdbafc49dfd4fa0
BLAKE2b-256 b535e0d21814c0cfc0df811beb7e192cc24521c9598d882f3fb979bec6556772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8b034b60e74fb29064f765851e77e5910055e1c4a3cb75c32eccf2b470fc00f
MD5 38822897673d8203bacc69708c703521
BLAKE2b-256 3860fbd3a307d29a577e3297a8573c4786486ba967c065b2194a1e714142bb0a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 83.9 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.15.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2fe45c1143eefb680a4589c55e671fabd482a7f8c7791f311ea3bcc20139246
MD5 e033773bdbc5e28ba546bd4a362f4f47
BLAKE2b-256 ce1955f25077f180830e053ca9de9f063ec92de081d34b7d9f7853491703e84f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.8 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.15.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b1ab96a1ac91bd1233706d638ade35f663684deaa4e5e5f190858cba044afb9
MD5 6fe314d857a787609ff0c1f702b313d6
BLAKE2b-256 e4e6c7fe56686f2b98d7609554ad37fafdc18b6680ebb03795497e90fd6bd26f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d772ae3c12d3b8629db656050c86ee66924eaa98f7125a889175a59cfaafdb19
MD5 e995c04f99cdd8876fca57fa962f2447
BLAKE2b-256 40d71e9d35bd5adf5f0ba63b283374b2b8df77ce05a938be095b64f3b6e6730c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 85e273e59b8b1a5f60a89df82cddeaf918181abd7ae7a2f2f899b68b0c774ff1
MD5 02943eb9024a07ee62e628f609bf886c
BLAKE2b-256 490aff84c7f50b7cf3ae277baee28ee8e6d490aa42a5cbcd25721a779b9e6b33

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1ddf05eeb422810b1aa919095db0691493442eebbf9cfb0f1e478a7b2fbdf3d
MD5 6551ee3b789609988628cb01ec53d0c8
BLAKE2b-256 9e831ddde41bea0f33c7aa92484039fbd6fddf9f4c5a17a13e092eedcd1baa81

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bece7fdc13e23db005879b67190db0d397f6ba89c81dc7e3c77e9f5819aff7f
MD5 6513ac47861487b498a959985c60e9c3
BLAKE2b-256 382f6e0fbd3b06a5b1a7b4732ce5571f80347008f183945f0834dcb3404ebcb9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5eef9804e65eb292e9c5587e88fe6a27a11f121d358312ac47211e8f42876751
MD5 89a1da957f8e10b9d09514887eea47fc
BLAKE2b-256 34a110568db818d9febb77d89e1b49ed3c19ebf531f3d2de8cbb108bed3b3bc1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 676d7356bb30825b7dbdad4fdd7a9feac379d074e5d4a36299767d72857ded42
MD5 a3216879b83a5cd0889c66372c933728
BLAKE2b-256 d07039c6d63248c3cd09e15995304aaf19aa9e17005407f15076933971863c8f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 748dcacc19c69957f7063ea4fb359fa2180735b1a638c81a4a96b86a382a6f29
MD5 ce019c3081780dea7e484cf4885fe181
BLAKE2b-256 b943c20685d3b9eb195c47c72e063da6a16cef2fda37916c606cb58e5f994a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2508ee2bad8381b5254eadc35d32fe800d12eb2c63b744183341f3a66e435a7
MD5 a5129e20dc5cdf42cace16c3ac19bf16
BLAKE2b-256 72c2203fe4553642d48d73d2a220e17c7afc10eeb18d244a7f34676b98754a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0127bc2ea72c1eaae6808ace661f0edf222f32ffa987d37f2dbb4798288f2656
MD5 a6a74d6ea3a34181c3610c8a4b766f66
BLAKE2b-256 19a1ad8a297c771f5ad0035477ddb927615ba777ab38c45f633f4faf41ef38a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4b25de7e85ba90b2ff230153123b6b000a7f69c41d84a3a0dc3f878334c8509
MD5 b1f28c176217ad063c8935ec279cd1cb
BLAKE2b-256 df3a7d8f4304689858c9bc5736224aa53a8b46573d6d68257ce718e520ae9768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4d9c221cc8e32b14196498679bf2b324bec1d1127c4ba934d98e19298faa661
MD5 bf58374fea0f2404dda8a3b16781f55b
BLAKE2b-256 bcd3990ca050a1d9ce619f63bb1a8508ff80c92d70502b5f86607ebd7ef30e66

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 928f7a61c4311f3dd003af19bb779f99683f97a0559b765c80fdb8846dab0452
MD5 2060e89da274d407ede28e296ac4b606
BLAKE2b-256 d327695c3221525355489bc7a5ae462754180fd17388bad442f08e417d4f3dac

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25a4e29ee758596b2a0daffa4814714e9b464077ca862baf78ed0e8698e46b61
MD5 002366fa38485c694434d13e84eaf79d
BLAKE2b-256 fa5b7dd29be983c709d66429288d5ad621961ca155bdc4f4974a5063c3114f70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e61b2019ebb5345510b833c4dd1f4afb1f0c07753f86f184c63836ffc3fb08ba
MD5 28e847c8e22111812407065f9473ab6b
BLAKE2b-256 2ad6c05d748a091938fe9491aeecb3951a962dfea1637c2b043fa98ee67dec63

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 84.5 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.15.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7aa9f9af452c3e8486a0b88fddd58352e6cea17b691b18861d26e46cf65ffff0
MD5 c6c7addae617787b6d5b1dbf81e42956
BLAKE2b-256 986ab2b3761f6c2c57900924cc7b9318dc6cd05f57b2a874fac066f828aff0fb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.15.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.4 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.15.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a616c2e4b60cb8cdd9eb3b0c6fda4ab5f3e26244b427aaade560dcf63c5754fb
MD5 5ce4fbbba85cf2ddefc351b2d090a159
BLAKE2b-256 cdec051b4844614be360f384a4c6a54d93b82535f6e9bb5c8c65719a4b72bba4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2e3cb74684ff357e6b3c82dd71031d3c1fd7ee9f9b0a5205e5568c963e074f9
MD5 0b84ceebd8512431fa9101e27bd29ec4
BLAKE2b-256 ecd041aaa92fe1907f2d1e6e37d9418b46a260c10366114bb8510e19e34beb59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 75d9762f65205a86381298eb9079f27c60b84de0c262e402dcf45c6cbc385234
MD5 a5f77e3048f76a156036b15e39ee6645
BLAKE2b-256 d50f440bc031a46bfb599f73d7a31a4f6c6a5d8b3bc81aaad3c4f5381d04d923

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 097094a979af7b31520517c59179f6817b8426724343cecbec0eb3af1f8fb6cf
MD5 6cddf4133cbd60c22c39d5fbb6bc5b99
BLAKE2b-256 aacfa291ba8e23b74382568c961d31cd973b73c93a5c1d75f557d238f44d131c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06b5b462cadf59c1df28ffbb0a3971fa16b60cf0c9d59a38bf5679a986d18685
MD5 4af0079ce8deb21e6a99d50273bd30f6
BLAKE2b-256 b5f6de712052da9385e8ddcb76f1b32289db2b8175f5283d62a4115e07201f71

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 553a1e3537aeeb29c0eb29ef28b80e0e801697fa71d96ac60675b284ff8e582a
MD5 2847d45b8e70beb5414830f7597cc0d8
BLAKE2b-256 d539b8e4cb45257f5a46afaecc0d47400c390b0073c813c430bad07fc6aa2b3d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ad2e487824ba4cda87851a371139e255410e45d3bf2e334194789278d709cec
MD5 5f82bbba54a2fcadf7a23e15d616be23
BLAKE2b-256 548a9cf1052d1ae12be434c54e0b5f7c3e6311b59962408470bbffeaeb5b8676

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b93a666cd8cfd43f605d1b81a32b9e290bf45c74c2bfd51ba705449c78448c7
MD5 3a0ad6d5a127732bab10c2c04315b150
BLAKE2b-256 71f572a9934cf4b720136f441a9350bfddeec610b1d330ef74a207debed67df9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0358b697abdf1f2d68038bd02ef8ddcc4813835744f79c755f8743aa485585e7
MD5 a847dacc94c2ee3d62821501c61a432a
BLAKE2b-256 4557ec9e36eedb94bc16be06a76ba3df2e39be2b9e1670e5586d0fa8b93f3128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe72c41cdd55c88b238a8925849fde4069c0cdcdef83f8d967f8f3982659326
MD5 78157a97a7e20e56f4a24070630f74e9
BLAKE2b-256 c50e976456f57b89a435f2ae583a19dc0f59632011464c19b50ac6c8751bc4c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38cab8f91b1085f1fd0765d40c46c8f43282f109018d5fcd017c46ac3eaba0cf
MD5 e8d049995139e602d530c1adefdb1d89
BLAKE2b-256 ba1edf35ef4e7eb5d038683afc3eece6dceb9dbecbfb58c3ec5c68099d46ccdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81edbd9bf9f25cd995e6d51c307e1d279587d40b7473e258fef6d5e548560cd2
MD5 41a4aa3408d605bf8bf6a970ac5dee6e
BLAKE2b-256 4e17b5706793d2b582468ea498dd0b8722dee9785fc6df0981a09e31407ebb4b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e1cc7823f43781390965c4762b54262cfcf76b6f152e489d00a5a1ac63063e4
MD5 796426e71b479e33fe4d25a59993cb86
BLAKE2b-256 8abe2beced71e497fa89ac7cba50789c78efe2b42ba71abd079c43afde31c70f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e5fa4c4e55cdacef1844f609bc9a02c8cd29c324a71ca1d3ee454701d4bb496
MD5 48e3bc9247abbf27c0e8585f6edbe80e
BLAKE2b-256 51508d6b3ce1e7bd6d6f537c402c7ab2163805dc36f98e614845ec29785bfecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.15.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5156c12a97405339ec93facbc7860566db381af2de1bec338195563fb64f37ef
MD5 c5b63fdb25000d3210d38d2be74f06be
BLAKE2b-256 9e84abb64f7f6be59d41a92f928271cccf86b2d377832a3768ea5f67a9036cc4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: yarl-1.15.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 84.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.15.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e4f64c8c52dde564bf3251b41d7a6746564b0fc0516cebe9c9e6695224440d22
MD5 a74903a143c3916d551877236f4128a0
BLAKE2b-256 5f8f897e76f02cc89df1eaa2ae7057959a6ceb3742e35404e1857a411b039953

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-win_amd64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: yarl-1.15.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 78.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for yarl-1.15.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d885dcdca7bae42bc9a2f6cbf766abcb2a6cc043b1905fc3782c6ea1f74a2b95
MD5 745ee86c2ddcfe7b92529604eaa984da
BLAKE2b-256 601db2b0a35c62ec1783b1b2a3a6eba60a73c782c40e3e37c4df745bc037b809

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-win32.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7e38bf6e52797084c5c396db5bb519615727e491e9003e2449631457bf77738
MD5 951f7d13a410e85c1ef558cd29510b4e
BLAKE2b-256 ad781d88a915c34b3dfb6a29c194d6bd87a08833752f8eb6904afd2970bd9cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ef780f9d480ffb423380abeb4cfcad66ecb8f93526dfa367d322fdad9ec7c25f
MD5 419a88c540239e7ec380e0aba5711b25
BLAKE2b-256 ab72a5eb28e1ce1669331e90c58ecb6633bb19a6153c7531f8355ba9774e05c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dc63bb79e896d6ce6aaf672ac304b54969280e949c45727867fc154a17ec7ab2
MD5 54e5c148bf552d63a739841b986beeed
BLAKE2b-256 96879f5d2c2ee75459f3ef3042d0810b703f9a4870fd9ba02f768bee6c401dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f074a24aa9a6a3d406474ec889ebb5d661f329349068e05e8dfcb3c4be67752
MD5 edb81aa9cda5ebd98182576755d610f2
BLAKE2b-256 5376c13b45cdd28e6294d537f5de5afed605da2d5fae1e7ca5e98cd2568cb594

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db903458a457a53ee0f764ed11c5b5368398e216b442c42dca9d90fbd2bbf31c
MD5 fcb7e684f010a316b34ef6e668f44688
BLAKE2b-256 69fa8222f6aa75b6a7a18453835bfa4efbc3e096fc940b92c48621064e87f647

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_armv7l.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0a86dd3e85c6aa3fc73236eb5cf7ce69dd8ad7abcd23f8ae1126831c8e40c2f
MD5 8a7ee03aeb40d15eae8f4f3d0abf1333
BLAKE2b-256 c087900d8f9ca2f16d61c40699f28d19e6262f72d3013462d8af7bf7952edb63

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73c4af08e9bb9a9aa7df6c789b05b924b9a0c6a368bb0e418d0b85181b64b631
MD5 eaccdcb9a0d5589a7269ed175d3f47a8
BLAKE2b-256 3a6babccf438f1a875d75316b39ec03125c71be00a537f222391ae712f34c548

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-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.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1edaf4171fc1582352ac5d9b2783966fa0f4ff86187279ef2a491613d23b894a
MD5 be3358ffd8dd692fc317df0b5d3751ff
BLAKE2b-256 29d69e53a34475449f2cbe68670703ce3daca5248cf184332882230e7d7f88b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4224bbbc8a2e9b9a3828d36c1bab7458441d7fb9fb3af321eb735732ba8ee89d
MD5 a537b9b038a9244eb974a40e45e8f1fa
BLAKE2b-256 c3bd8a6cd4c653479e8a013a08d5ed74d4b14bc6674f14b2f6d0c8a05f915e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33896afca6fb4e1988c099534c52823870dfc8730bc6f96a3831f24c1e0ab814
MD5 5ab2d3ae9680fdbcdaf37900c8e3fcdf
BLAKE2b-256 4c69c99850ab31722367f689372de39c5b8432ad379438a3e3b2db501b3b151b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4aa7cca009817789fd5b8e52e8122f9e85dc580c88b816a93321c00a8acbced
MD5 6ef0f42f04f6e0e29a9c495c789883d3
BLAKE2b-256 6b91e9c4cf974985861d7df0fc9e8d2eb768c627d28417d70930ada26e341ede

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-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.15.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5107d89c9edec6ee077970a95fb9eeb4776ea8c2337b6a39c0ade9a58f50f3e4
MD5 ad345db9621752d8e838ddc4b41bcd42
BLAKE2b-256 6542e206fb187c4f2285c8cf93398e6513ef035ab739b6f59394631ff9efbd43

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2124c642b8cc9b68e5981e429842dadc32bb850b010cccec9d24236253a19f60
MD5 f3908a9dd734595e87cc2d208305e5e5
BLAKE2b-256 b58666196e0fbe4d4bc971ac51e69ecf955ede166ebe33d1309d807b860b82bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.15.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 83363a5789f128618041b9a737c7b146f1965abddf4294b0444591406b437c1e
MD5 2cdd32d30ae608291ef141530bee8d81
BLAKE2b-256 c8001ba0f428aade1a06146a665eec9db37729b2e254c53d2071ee20790c76b5

See more details on using hashes here.

Provenance

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