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

Uploaded Source

Built Distributions

yarl-1.14.0-py3-none-any.whl (38.2 kB view details)

Uploaded Python 3

yarl-1.14.0-cp313-cp313-win_amd64.whl (307.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.14.0-cp313-cp313-win32.whl (301.9 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (345.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp313-cp313-musllinux_1_2_s390x.whl (350.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp313-cp313-musllinux_1_2_ppc64le.whl (342.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp313-cp313-musllinux_1_2_i686.whl (335.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.14.0-cp313-cp313-musllinux_1_2_aarch64.whl (331.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (336.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.7 kB view details)

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

yarl-1.14.0-cp313-cp313-macosx_11_0_arm64.whl (85.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl (87.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.14.0-cp313-cp313-macosx_10_13_universal2.whl (134.3 kB view details)

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

yarl-1.14.0-cp312-cp312-win_amd64.whl (83.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.14.0-cp312-cp312-win32.whl (77.3 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (343.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp312-cp312-musllinux_1_2_s390x.whl (351.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp312-cp312-musllinux_1_2_ppc64le.whl (343.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp312-cp312-musllinux_1_2_i686.whl (331.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.14.0-cp312-cp312-musllinux_1_2_aarch64.whl (330.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (316.7 kB view details)

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

yarl-1.14.0-cp312-cp312-macosx_11_0_arm64.whl (86.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl (88.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

yarl-1.14.0-cp312-cp312-macosx_10_13_universal2.whl (136.0 kB view details)

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

yarl-1.14.0-cp311-cp311-win_amd64.whl (83.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.14.0-cp311-cp311-win32.whl (77.5 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (344.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp311-cp311-musllinux_1_2_s390x.whl (357.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp311-cp311-musllinux_1_2_ppc64le.whl (355.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp311-cp311-musllinux_1_2_i686.whl (334.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.14.0-cp311-cp311-musllinux_1_2_aarch64.whl (335.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (325.5 kB view details)

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

yarl-1.14.0-cp311-cp311-macosx_11_0_arm64.whl (85.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl (87.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.14.0-cp311-cp311-macosx_10_9_universal2.whl (135.8 kB view details)

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

yarl-1.14.0-cp310-cp310-win_amd64.whl (83.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.14.0-cp310-cp310-win32.whl (77.4 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (316.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp310-cp310-musllinux_1_2_s390x.whl (323.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp310-cp310-musllinux_1_2_ppc64le.whl (325.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp310-cp310-musllinux_1_2_i686.whl (310.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.14.0-cp310-cp310-musllinux_1_2_aarch64.whl (306.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (320.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.7 kB view details)

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

yarl-1.14.0-cp310-cp310-macosx_11_0_arm64.whl (85.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl (87.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.14.0-cp310-cp310-macosx_10_9_universal2.whl (135.8 kB view details)

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

yarl-1.14.0-cp39-cp39-win_amd64.whl (84.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.14.0-cp39-cp39-win32.whl (78.0 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (320.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp39-cp39-musllinux_1_2_s390x.whl (326.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp39-cp39-musllinux_1_2_ppc64le.whl (329.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp39-cp39-musllinux_1_2_i686.whl (312.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.14.0-cp39-cp39-musllinux_1_2_aarch64.whl (309.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (321.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (303.5 kB view details)

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

yarl-1.14.0-cp39-cp39-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl (88.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.14.0-cp39-cp39-macosx_10_9_universal2.whl (137.3 kB view details)

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

yarl-1.14.0-cp38-cp38-win_amd64.whl (84.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.14.0-cp38-cp38-win32.whl (78.0 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.14.0-cp38-cp38-musllinux_1_2_x86_64.whl (326.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.14.0-cp38-cp38-musllinux_1_2_s390x.whl (332.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.14.0-cp38-cp38-musllinux_1_2_ppc64le.whl (331.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.14.0-cp38-cp38-musllinux_1_2_i686.whl (318.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.14.0-cp38-cp38-musllinux_1_2_aarch64.whl (314.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.14.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (323.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.14.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (307.0 kB view details)

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

yarl-1.14.0-cp38-cp38-macosx_11_0_arm64.whl (86.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl (89.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.14.0-cp38-cp38-macosx_10_9_universal2.whl (137.8 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.14.0.tar.gz
  • Upload date:
  • Size: 166.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.14.0.tar.gz
Algorithm Hash digest
SHA256 88c7d9d58aab0724b979ab5617330acb1c7030b79379c8138c1c8c94e121d1b3
MD5 0c7c5fb97dfcc2f747755c924f3ac591
BLAKE2b-256 46fe2ca2e5ef45952f3e8adb95659821a4e9169d8bbafab97eb662602ee12834

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-py3-none-any.whl
  • Upload date:
  • Size: 38.2 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.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c8ed4034f0765f8861620c1f2f2364d2e58520ea288497084dae880424fc0d9f
MD5 7ae82039a481a75df78405076f988c61
BLAKE2b-256 fd376c30afb708ab45f3da32229c77d9a25dfc8ead2ae3ec1f1ea9425172d070

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 307.5 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.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc24f968b82455f336b79bf37dbb243b7d76cd40897489888d663d4e028f5069
MD5 eacbd2471cfabcc18568afce10362003
BLAKE2b-256 b41463cebb6261f49c9b3db6b20e7c4eb6131524e41f4cd402225e0a3e2bf479

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 301.9 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.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d8361c7d04e6a264481f0b802e395f647cd3f8bbe27acfa7c12049efea675bd1
MD5 e6bc236d39d0092733798f35f8d93299
BLAKE2b-256 0d04394d0d757055b7e8b60d7eb1f9647f200399e6ec57c8a2efc842f49d8487

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9cfef3f14f75bf6aba73a76caf61f9d00865912a04a4393c468a7ce0981b519
MD5 233281023dd4b0cbdb77d28f136114c6
BLAKE2b-256 b3c1a27587f7178e41b0f047b83b49104fb6043f4e0a0141d4c156c6cf0a978a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 217a782020b875538eebf3948fac3a7f9bbbd0fd9bf8538f7c2ad7489e80f4e8
MD5 874d31c70c850d2e72f7f1711d15da25
BLAKE2b-256 38845fdf90939f35bac0e3e34f43dbdb6ff2f2d4bc151885a9a4b50fd4a62d6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9abe80ae2c9d37c17599557b712e6515f4100a80efb2cda15f5f070306477cd2
MD5 0079e8db342aeb3321201c1f8f6eac69
BLAKE2b-256 fdc87e727938615a50cf413d00ea4e80872e43778d3cb36b2ff05a55ba43addf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e2637d75e92763d1322cb5041573279ec43a80c0f7fbbd2d64f5aee98447b17
MD5 6b4d551b444a2664526a4b12eb0d6794
BLAKE2b-256 e60aeeea8057a19f38f07af826954c5199a19ac229823097a0a2f8346c2d9b00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a56fbe3d7f3bce1d060ea18d2413a2ca9ca814eea7cedc4d247b5f338d54844e
MD5 94ff481a2ce8a06421fd18a97515e5ab
BLAKE2b-256 dee5edfdcf4f569eb14cb1e86a451e64ae7052e058147890ab43ecfe06c9272f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68ac1a09392ed6e3fd14be880d39b951d7b981fd135416db7d18a6208c536561
MD5 38db649429d217f469a69a76fa6e53c3
BLAKE2b-256 74bf2c493c45589e98833ec8c4e3c5fff8d30f875513bc207361ac822459cb69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75ff4c819757f9bdb35de049a509814d6ce851fe26f06eb95a392a5640052482
MD5 86221dcfe584596f0a8f900375d66e62
BLAKE2b-256 21fb6fc8d66bc24f5913427bc8a0a4c2529bc0763ccf855062d70c21e5eb51b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4f4547944d4f5cfcdc03f3f097d6f05bbbc915eaaf80a2ee120d0e756de377d
MD5 23f615fb2827dec8ef5eec51ea6c18d7
BLAKE2b-256 b388a4385930e0653ddea4234cbca161882d7de2aa963ca6f3962a1c77dddaad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37001e5d4621cef710c8dc1429ca04e189e572f128ab12312eab4e04cf007132
MD5 84e91653faeb9233864ec1954bdbfb8c
BLAKE2b-256 f21e809b44e498c67e86c889b919d155ef6978bfabdf7d7e458922ba8f5e67be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96952f642ac69075e44c7d0284528938fdff39422a1d90d3e45ce40b72e5e2d9
MD5 061b1a1d7e1b5a1b90956ca4a1e7478c
BLAKE2b-256 01ce1cb0ee93ef3ec827a2d0287936696f68b1743c6f4540251f61cb76d51b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e85d86527baebb41a214cc3b45c17177177d900a2ad5783dbe6f291642d4906f
MD5 fa2b73a3eae19c857d15fff7456dc645
BLAKE2b-256 3fa8ab76e6ede9fdb5087df39e7b1c92d08eb6e58e7c4a0a3b2b6112a74cb4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30600ba5db60f7c0820ef38a2568bb7379e1418ecc947a0f76fd8b2ff4257a97
MD5 31cf8987ff61c7597481ac3010a6ad2e
BLAKE2b-256 76c8a9e17ac8d81bcd1dc9eca197b25c46b10317092e92ac772094ab3edf57ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5d02d700705d67e09e1f57681f758f0b9d4412eeb70b2eb8d96ca6200b486db3
MD5 dcd57d2a908759a02b55865690162f6c
BLAKE2b-256 f0cfade2a0f0acdbfb7ca1843045a8d1691edcde4caf2dc8995c4b6dd1c6968c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 83.6 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.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ca3894e9e9f72da93544f64988d9c052254a338a9f855165f37f51edb6591de
MD5 2bfe483106a450ef0b65b99ff1064d14
BLAKE2b-256 c01f201f46e02dd074ff36ce7cd764bb8241a19f94ba88adfd6d410cededca13

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.3 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.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 99ff3744f5fe48288be6bc402533b38e89749623a43208e1d57091fc96b783b9
MD5 dc462653ac86ba7122b4c63b287a7aba
BLAKE2b-256 ded0a2502a37555251c7e10df51eb425f1892f3b2acb6fa598348b96f74f3566

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fd7b941dd1b00b5f0acb97455fea2c4b7aac2dd31ea43fb9d155e9bc7b78664
MD5 84ed31aa0283e1379ed4495f793f0b06
BLAKE2b-256 16e71ec09b0977e3a4a0a80e319aa30359bd4f8beb543527d8ddf9a2e799541e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fe4d2536c827f508348d7b40c08767e8c7071614250927233bf0c92170451c0a
MD5 130148ce05ee8b1eb7204a291d1a3667
BLAKE2b-256 686e4cf1b32b3605fa4ce263ea338852e89e9959affaffb38eb1a7057d0a95f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 47eede5d11d669ab3759b63afb70d28d5328c14744b8edba3323e27dc52d298d
MD5 3d0ec05322f40939a1296ca3ea60c5ed
BLAKE2b-256 1a7394ee96a0e8518c7efee84e745567770371add4af65466c38d3646df86f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab3abc0b78a5dfaa4795a6afbe7b282b6aa88d81cf8c1bb5e394993d7cae3457
MD5 56d9cfec82d72411cd63a94e86ae9e42
BLAKE2b-256 1aa0896eb6007cc54347f4097e8c2f31e3907de262ced9c3f56866d8dd79a8ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6a2c5c5bb2556dfbfffffc2bcfb9c235fd2b566d5006dfb2a37afc7e3278a07
MD5 bac82dcb11fa9b3f5979cd0c41142db6
BLAKE2b-256 02e7b3baf612d964b4abd492594a51e75ba5cd08243a834cbc21e1013c8ac229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f50eb3837012a937a2b649ec872b66ba9541ad9d6f103ddcafb8231cfcafd22
MD5 28236fb113478174739148f6e83ac23e
BLAKE2b-256 3d4d9a369945088ac7141dc9ca2fae6a10bd205f0ea8a925996ec465d3afddcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9557c9322aaa33174d285b0c1961fb32499d65ad1866155b7845edc876c3c835
MD5 4586beca84ef408e3393687271f992f5
BLAKE2b-256 60246015e5a365ef6cab2d00058895cea37fe796936f04266de83b434f9a9a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8648180b34faaea4aa5b5ca7e871d9eb1277033fa439693855cf0ea9195f85f1
MD5 b2fce9f3b3558da94542b1a766362ebf
BLAKE2b-256 15c254a710b97e14f99d36f82e574c8749b93ad881df120ed791fdcd1f2e1989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f72a0d746d38cb299b79ce3d4d60ba0892c84bbc905d0d49c13df5bace1b65f8
MD5 4efb97f6104b816954353a29e13b5835
BLAKE2b-256 6e057461a7005bd2e969746a3f5218b876a414e4b2d9929b797afd157cd27c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8892fa575ac9b1b25fae7b221bc4792a273877b9b56a99ee2d8d03eeb3dbb1d2
MD5 3f10bd28953f8d78e8228b166c759ca2
BLAKE2b-256 b138a71b7a7a8a95d3727075472ab4b88e2d0f3223b649bcb233f6022c42593d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b03384eed107dbeb5f625a99dc3a7de8be04fc8480c9ad42fccbc73434170b20
MD5 bdf736f55fb4d2aab2be9127a7b59033
BLAKE2b-256 f2dcdaa1b58bb858f3ce32ca9aaeb6011d7535af01d5c0f5e6b52aa698c608e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55c144d363ad4626ca744556c049c94e2b95096041ac87098bb363dcc8635e8d
MD5 944f2b855ba9ca36580a9798b159ad5d
BLAKE2b-256 340723fe08dfc56651ec1d77643b4df5ad41d4a1fc4f24fd066b182c660620f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fc2c80bc87fba076e6cbb926216c27fba274dae7100a7b9a0983b53132dd99f2
MD5 2bac2359b565a539f676a0c8b5ecc985
BLAKE2b-256 9a3e8c8bcb19d6a61a7e91cf9209e2c7349572125496e4d4de205dcad5b11753

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 83.8 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.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 985623575e5c4ea763056ffe0e2d63836f771a8c294b3de06d09480538316b13
MD5 940671212aa7539bda2e2d736d0664e3
BLAKE2b-256 aebb277d3d6d44882614cbbe108474d33c0d0ffe1ea6760e710b4237147840a2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.5 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.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bab03192091681d54e8225c53f270b0517637915d9297028409a2a5114ff4634
MD5 d75eea1f644963b9b283796b08c74cf8
BLAKE2b-256 f3107b9d14b5165d7f3a7b6f474cafab6993fe7a76a908a7f02d34099e915c74

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a615cad11ec3428020fb3c5a88d85ce1b5c69fd66e9fcb91a7daa5e855325dd
MD5 94d315a1f3248d28e2beaa1f58427a1a
BLAKE2b-256 1a5eaa5c615abbc6366c787f7abf5af2ffefd5ebe1ffc381850065624e5072fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3d569f877ed9a708e4c71a2d13d2940cb0791da309f70bd970ac1a5c088a0a92
MD5 1e11f56e153945cf68edb0657721ab54
BLAKE2b-256 7714dd4cc5fe69b8d0708f3c43a2b8c8cca5364f2205e220908ba79be202f61c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a152751af7ef7b5d5fa6d215756e508dd05eb07d0cf2ba51f3e740076aa74373
MD5 9c93632760e7301e29522370b997be23
BLAKE2b-256 6a6b95d7a85b5a20d90ffd42a174ff52772f6d046d60b85e4cd506e0baa58341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cd5dad8366e0168e0fd23d10705a603790484a6dbb9eb272b33673b8f2cce72
MD5 65265dfe3825b1e73c402540acbd7db0
BLAKE2b-256 5e582c5f0c840ab3bb364ebe5a6233bfe77ed9fcef6b34c19f3809dd15dae972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29a84a46ec3ebae7a1c024c055612b11e9363a8a23238b3e905552d77a2bc51b
MD5 162b2a5d5ed3f55a27b1a2b04bb291a6
BLAKE2b-256 46c783b9c0e5717ddd99b203dbb61c56450f475ab4a7d4d6b61b4af0a03c54d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85cb3e40eaa98489f1e2e8b29f5ad02ee1ee40d6ce6b88d50cf0f205de1d9d2c
MD5 35ded76105de9d0c508f2af8abe2b2b0
BLAKE2b-256 f0ec520686b83b51127792ca507d67ae1090c919c8cb8388c78d1e7c63c98a4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b693c63e7e64b524f54aa4888403c680342d1ad0d97be1707c531584d6aeeb4f
MD5 a041169a9356befec94b77381e87ff1b
BLAKE2b-256 f4ced1b1c441e41c652ce8081299db4f9b856f25a04b9c1885b3ba2e6edd3102

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3ab950f8814f3b7b5e3eebc117986f817ec933676f68f0a6c5b2137dd7c9c69
MD5 ad8b11c74bd0754105e1a6d2f5c553d3
BLAKE2b-256 38c76c3634ef216f01f928d7eec7b7de5bde56658292c8cbdcd29cc28d830f4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73bedd2be05f48af19f0f2e9e1353921ce0c83f4a1c9e8556ecdcf1f1eae4892
MD5 9c2ef76917266e4ff37bf4b8af685fa0
BLAKE2b-256 758501c2eb9a6ed755e073ef7d455151edf0ddd89618fca7d653894f7580b538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f24f08b6c9b9818fd80612c97857d28f9779f0d1211653ece9844fc7b414df2
MD5 7de435628be58d488e2d4196d89c4b4d
BLAKE2b-256 304de842066d3336203299a3dc1730f2d062061e7b8a4497f4b6977d9076d263

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16a682a127930f3fc4e42583becca6049e1d7214bcad23520c590edd741d2114
MD5 8b1b810ba81b4833cc7b5d1de2b6ac42
BLAKE2b-256 e3251d12bec8ebdc8287a3464f506ded23b30ad75a5fea3ba49526e8b473057f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c14b504a74e58e2deb0378b3eca10f3d076635c100f45b113c18c770b4a47a50
MD5 24267f25aee7cf58af03b94cb94e3308
BLAKE2b-256 93a05537a1da2c0ec8e11006efa0d133cdaded5ebb94ca71e87e3564b59f6c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 07f9eaf57719d6721ab15805d85f4b01a5b509a0868d7320134371bcb652152d
MD5 b12b2140d6e5f4989c91bd1ed2146ac9
BLAKE2b-256 92aa64fcae3d4a081e4ee07902e9e9a3b597c2577283bf6c5b59c06ef0829d90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 83.5 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.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9baec588f015d0ee564057aa7574313c53a530662ffad930b7886becc85abdf
MD5 94b4f406c8afd418b1aa2373ace2261f
BLAKE2b-256 926929f5c9399d705254b2095bf117d7fb758f80057ad359b4e3224aa711b966

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.4 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.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0aa92e3e30a04f9462a25077db689c4ac5ea9ab6cc68a2e563881b987d42f16d
MD5 e29c2b0ad25c07abd0a4e45337413864
BLAKE2b-256 2277b3d0410dfeb0bd779d6013afc1609ba17bff4d15479cab72cc16b11af4fa

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 047b258e00b99091b6f90355521f026238c63bd76dcf996d93527bb13320eefd
MD5 0b3876cc1fd5cb7a90b7a05d09d998de
BLAKE2b-256 bbf39fcf03b8826893275d2b46360986b2afba131e74eb6d722574b34b479144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ee2c68e4f2dd1b1c15b849ba1c96fac105fca6ffdb7c1e8be51da6fabbdeafb9
MD5 b8b984afbcd6efe49a3b484a62e09d82
BLAKE2b-256 647fbde078ab75deba8387d260f387864b0f549fcdb8d5bee0d9b30406b1b7fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 46a9772a1efa93f9cd170ad33101c1817c77e0e9914d4fe33e2da299d7cf0f9b
MD5 faf0ac0c8ec80c9d9ace5d2c1202f3e3
BLAKE2b-256 470c271fdc45a5c2d13f9d138b039a264e35283a4ead36e7a538aefce4050d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 176110bff341b6730f64a1eb3a7070e12b373cf1c910a9337e7c3240497db76f
MD5 36f58fa1d6f51ffec919e3022e1de7db
BLAKE2b-256 6543db5da311d287691cc02a4f66be8ac5859bce9627d51f8d553fc4f2beb601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 742aef0a99844faaac200564ea6f5e08facb285d37ea18bd1a5acf2771f3255a
MD5 0e8cdab6e5d280361a43dc2f6b0374a0
BLAKE2b-256 411e9c9e06f53d91f0b5ac6e69162e92d0fdd0851d4cc360f08716e29201802a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 689a99a42ee4583fcb0d3a67a0204664aa1539684aed72bdafcbd505197a91c4
MD5 d3fc42e3be4baaf022cbebacda1271a9
BLAKE2b-256 d33a0c65820d2d73649d99970e1c150e4be6c057a624cb545613ce75c3ebe2a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06ff23462398333c78b6f4f8d3d70410d657a471c2c5bbe6086133be43fc8f1a
MD5 b3635b44339bc018c629a56ba46e2d71
BLAKE2b-256 7b10b720945c7cd294283f8809dd0407e4cd56218949a4cca3ff04995cae6f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3007a5b75cb50140708420fe688c393e71139324df599434633019314ceb8b59
MD5 a232c7e28c6486beec8ec64d8dc782e4
BLAKE2b-256 8f0b996f04d9de5523735661a90ead48ea21d7557e1a71b1f757d1b2e3baae17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 587c3cc59bc148a9b1c07a019346eda2549bc9f468acd2f9824d185749acf0a6
MD5 f8ce4231d9e28990904cc139d57f4a5d
BLAKE2b-256 5721d653108b654daec3b9359a27f61959cf020839f97248bd345bf1ec7f1490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0547ab1e9345dc468cac8368d88ea4c5bd473ebc1d8d755347d7401982b5dd8
MD5 5b0f99bd461c52e58f57cfc0b4b513a4
BLAKE2b-256 430100f44df69b99e23790096aba5e16651694b8de087af12418578dc00730bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dda53508df0de87b6e6b0a52d6718ff6c62a5aca8f5552748404963df639269
MD5 848317350d8a14ace83f831813389d55
BLAKE2b-256 7fae42c5fe1ae66eade3f17e442e5adce36b0d098867d5bd98e08527ff026d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cf21f46a15d445417de8fc89f2568852cf57fe8ca1ab3d19ddb24d45c0383ae
MD5 f3bb618f91f505c92e670663aabcdae4
BLAKE2b-256 e732e524d6c4b3acd05c88a5454cb3221b74bf7460b593deccf88f3b27361200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1bfc25aa6a7c99cf86564210f79a0b7d4484159c67e01232b116e445b3036547
MD5 9ca62382492b9eeb715116fac3e999f7
BLAKE2b-256 8c27dc4f4eabb51cf82f3ba8f8d977fba0e06006d66cee907ea12982c4c85904

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: yarl-1.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 84.1 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.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b6d0147574ce2e7b812c989e50fa72bbc5338045411a836bd066ce5fc8ac0bce
MD5 23ef03fd129e84e7474fec2ca54f0344
BLAKE2b-256 719cda4b110d19b44bc5545b9c76387dd529e27fd9025ff8384ff0261b98bf28

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.0 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.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 337912bcdcf193ade64b9aae5a4017a0a1950caf8ca140362e361543c6773f21
MD5 eae4c841718930cccc500cdd82513aca
BLAKE2b-256 39692834aaa3b99679d57ff069a5103ebe5bf563f3991da6cb31d1bc224c236e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19268b4fec1d7760134f2de46ef2608c2920134fb1fa61e451f679e41356dc55
MD5 a00a859dfec47ab3e2672870268f69d1
BLAKE2b-256 6197552bf0c24a8bf69743e39bb39b59bef5d40b791affc7cff14e421f765d76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a2e4725a08cb2b4794db09e350c86dee18202bb8286527210e13a1514dc9a59a
MD5 c5af4998592953e4384379f194e540d5
BLAKE2b-256 566476c4a24f4bc8176ac692561b2d435a91784e2b2f728cdd978acf1c604a8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e0d45ebf975634468682c8bec021618b3ad52c37619e5c938f8f831fa1ac5c0
MD5 425b4917744b4d5b4b32298fad19b683
BLAKE2b-256 59596074e5b66b7b8a8253a6073ffe8ca1bce7a2cd32b4b0698b70ba5251fa41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 659603d26d40dd4463200df9bfbc339fbfaed3fe32e5c432fe1dc2b5d4aa94b4
MD5 926640d354a410e495471b5769d4b79a
BLAKE2b-256 dd458f22993a7d52488a8bcaeddd21d9dbff3bc6be24aad59e0208873ce524d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 781e2495e408a81e4eaeedeb41ba32b63b1980dddf8b60dbbeff6036bcd35049
MD5 7f3097cbf0c3bc909a89c4e68c0d4486
BLAKE2b-256 55cec98510780eb6610a9ff97717b06f27a61d6b8a6a0feb56cebb4b160fe06d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3f8bfc1db82589ef965ed234b87de30d140db8b6dc50ada9e33951ccd8ec07a
MD5 4626c6c1a6c3a7a90cddfeddcb285ede
BLAKE2b-256 8bec55da48680d84f8cfbcccba5e4b5e3e71b888f98d2106ed39fd6918542b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 498b3c55087b9d762636bca9b45f60d37e51d24341786dc01b81253f9552a607
MD5 09087895d965fd24e887bfbe29552a8f
BLAKE2b-256 ed5d37fc667ac93d65350a076d96cbe3a80c39d24b4649b5c13d5a7f07c73767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b16f6c75cffc2dc0616ea295abb0e1967601bd1fb1e0af6a1de1c6c887f3439
MD5 a42aa04aa504e5c4f4a69f87236993d6
BLAKE2b-256 7757eef67848041467dfc343c8859251bb14a052eba1be9254faab1a04aea2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8089d4634d8fa2b1806ce44fefa4979b1ab2c12c0bc7ef3dfa45c8a374811348
MD5 d4bab45343a3b002717589acd930235a
BLAKE2b-256 f31fbc8895af9eaaa8ec5bb5dd72e1d672d53bdf072f429ca6967a41e612c6ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 625f207b1799e95e7c823f42f473c1e9dbfb6192bd56bba8695656d92be4535f
MD5 68b6383172cd573886b890f784a46b27
BLAKE2b-256 6826f02dd8979668cff2b27a291793d6214c16374fc886a72b7622683b18d921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f4e475f29a9122f908d0f1f706e1f2fc3656536ffd21014ff8a6f2e1b14d1d8
MD5 83aed781b0440a4458cb558b8c400711
BLAKE2b-256 6f08b076af938b119a8746935ff664f5962886b119b8f24605fb31e034203061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a2f8fb7f944bcdfecd4e8d855f84c703804a594da5123dd206f75036e536d4d
MD5 20a1cf73f3da90b89b2d229b87090827
BLAKE2b-256 de6d3caf3268330f1f3493f72e54c3bd706f457a9f9e19a3a93a253109955ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a9f917966d27f7ce30039fe8d900f913c5304134096554fd9bea0774bcda6d1
MD5 2071da16e03e276876676757bb8a1f83
BLAKE2b-256 0ca326de988fdfd23c0cc11db8ef32713a68fc11288faf0c1a7d39d6900837f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: yarl-1.14.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 84.3 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.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 147e36331f6f63e08a14640acf12369e041e0751bb70d9362df68c2d9dcf0c87
MD5 e85a2d52abe543e76ace770cc53ef7f1
BLAKE2b-256 15645c90c172000b95f7ce2327b57bda2dacee8062dc63f801c3c164b1946a5b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: yarl-1.14.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 78.0 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.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e749af6c912a7bb441d105c50c1a3da720474e8acb91c89350080dd600228f0e
MD5 1f4c1093cb7d233221266d490d57daab
BLAKE2b-256 32090b326fdc42cafaf5d6b50272fcce22fd4fef488fabff9c93ba88c1b5fbf8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4c1ecba93e7826dc71ddba75fb7740cdb52e7bd0be9f03136b83f54e6a1f511
MD5 4007ebeeb1660fd2a262df487e9b0d82
BLAKE2b-256 011a14085d97a646f73c26c60082e3d10597192983a7089ed33ea625ce223da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8385ab36bf812e9d37cf7613999a87715f27ef67a53f0687d28c44b819df7cb0
MD5 8fa780230c07cf3a64372603bd9cc356
BLAKE2b-256 a214dbefa8135d5f0971c5a2963e6989a31937947cceeeea1c2e854b0cce634d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2192f718db4a8509f63dd6d950f143279211fa7e6a2c612edc17d85bf043d36e
MD5 9b4ec278e3bf8825ddc81b56b6c66930
BLAKE2b-256 4089be45949e16d1612904f5f2463e9f3718a7516c65cc3a905a3482a3431af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2089a9afef887664115f7fa6d3c0edd6454adaca5488dba836ca91f60401075
MD5 3d8b08ad7296a3219a4a4b71d23902ff
BLAKE2b-256 2fe72c5d315af061ceeeb24fae449fc3fa2574f0b1eb2fde38e4f4fd76629e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94b2bb9bcfd5be9d27004ea4398fb640373dd0c1a9e219084f42c08f77a720ab
MD5 0cc6d57267017e144285a767ec05b9a7
BLAKE2b-256 12ea7f157a4a83fa125b25a8fbde9b3e1a1d61b2146057ed9c908ea71ef608ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 816d24f584edefcc5ca63428f0b38fee00b39fe64e3c5e558f895a18983efe96
MD5 1afc7f2c7ab177dca3c71ee58d24a3ff
BLAKE2b-256 1e1d2a6d8e3e4461acbfc09299ce17064598086da152e8160f28a4ccfd463ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95e16e9eaa2d7f5d87421b8fe694dd71606aa61d74b824c8d17fc85cc51983d1
MD5 c6cbe53b26f7afd5c6b8c74831e4e826
BLAKE2b-256 9435190159d551728830e58143bfd5ebc9f60b29deb2e67a690c7860854a66dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9f805e37ed16cc212fdc538a608422d7517e7faf539bedea4fe69425bc55d76
MD5 75f68b0b7f269da55fcfdad7da3e537f
BLAKE2b-256 c8f512ab64501329fca4d749f7e9d34623191eb8a49a72dbff84a503b1cfa323

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbd9ff43a04f8ffe8a959a944c2dca10d22f5f99fc6a459f49c3ebfb409309d9
MD5 f77a8b176fd95bf9c302704dee95bb55
BLAKE2b-256 aa233db9b6404962d68382334aeac86f5981bee12e1d892cb39418efd46fe91a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd2660c01367eb3ef081b8fa0a5da7fe767f9427aa82023a961a5f28f0d4af6c
MD5 64aab96cd763f578d07eca1ec58893d7
BLAKE2b-256 00c62237a2f9cb43988cfb666bc0d8f29e063c22c3f90ebd1ff514da77952585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 582cedde49603f139be572252a318b30dc41039bc0b8165f070f279e5d12187f
MD5 39de5b14beb1f6849ddc1380e8daa5fd
BLAKE2b-256 65db958ae2917130ccba21f0878d2e66284442ac2d2a5b751f07bcf52447ec2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4009def9be3a7e5175db20aa2d7307ecd00bbf50f7f0f989300710eee1d0b0b9
MD5 8caa06941e23b355bad2831296915ef7
BLAKE2b-256 d5788eb3c853a3f5a2decb7e0ae3e1be747e0f4f062dc4f176bd3cbba13341d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.14.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.14.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.14.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 91d875f75fabf76b3018c5f196bf3d308ed2b49ddcb46c1576d6b075754a1393
MD5 ee3c265a73ea175617e96cae7c1b3cf8
BLAKE2b-256 64c7f9976340a3e95ccb47f7dae2df742098af4a80b38f88fbf63498a47d085b

See more details on using hashes here.

Provenance

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