Skip to main content

Yet another URL library

Reason this release was yanked:

Performance regression: https://github.com/aio-libs/yarl/pull/1198

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 (like Alpine Linux, which is not manylinux-compliant because of the missing glibc and therefore, cannot be used with our wheels) 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 library.

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-hypernode.com/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-hypernode.com/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.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.9.6.tar.gz (151.4 kB view details)

Uploaded Source

Built Distributions

yarl-1.9.6-py3-none-any.whl (33.4 kB view details)

Uploaded Python 3

yarl-1.9.6-cp313-cp313-win_amd64.whl (302.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.9.6-cp313-cp313-win32.whl (297.2 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.9.6-cp313-cp313-musllinux_1_2_x86_64.whl (340.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp313-cp313-musllinux_1_2_s390x.whl (346.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp313-cp313-musllinux_1_2_ppc64le.whl (337.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp313-cp313-musllinux_1_2_i686.whl (331.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.9.6-cp313-cp313-musllinux_1_2_aarch64.whl (326.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (312.0 kB view details)

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

yarl-1.9.6-cp313-cp313-macosx_11_0_arm64.whl (80.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.9.6-cp313-cp313-macosx_10_13_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.9.6-cp313-cp313-macosx_10_13_universal2.whl (129.6 kB view details)

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

yarl-1.9.6-cp312-cp312-win_amd64.whl (78.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.9.6-cp312-cp312-win32.whl (72.6 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.9.6-cp312-cp312-musllinux_1_2_x86_64.whl (338.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp312-cp312-musllinux_1_2_s390x.whl (347.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp312-cp312-musllinux_1_2_ppc64le.whl (338.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp312-cp312-musllinux_1_2_i686.whl (327.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.9.6-cp312-cp312-musllinux_1_2_aarch64.whl (325.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (312.1 kB view details)

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

yarl-1.9.6-cp312-cp312-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.6-cp312-cp312-macosx_10_9_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.6-cp312-cp312-macosx_10_9_universal2.whl (131.3 kB view details)

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

yarl-1.9.6-cp311-cp311-win_amd64.whl (79.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.6-cp311-cp311-win32.whl (72.8 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.6-cp311-cp311-musllinux_1_2_x86_64.whl (340.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp311-cp311-musllinux_1_2_s390x.whl (352.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp311-cp311-musllinux_1_2_ppc64le.whl (350.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp311-cp311-musllinux_1_2_i686.whl (329.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.9.6-cp311-cp311-musllinux_1_2_aarch64.whl (330.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (331.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (339.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (320.9 kB view details)

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

yarl-1.9.6-cp311-cp311-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.6-cp311-cp311-macosx_10_9_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.6-cp311-cp311-macosx_10_9_universal2.whl (131.1 kB view details)

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

yarl-1.9.6-cp310-cp310-win_amd64.whl (78.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.6-cp310-cp310-win32.whl (72.7 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.6-cp310-cp310-musllinux_1_2_x86_64.whl (311.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp310-cp310-musllinux_1_2_s390x.whl (318.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp310-cp310-musllinux_1_2_ppc64le.whl (320.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp310-cp310-musllinux_1_2_i686.whl (305.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.9.6-cp310-cp310-musllinux_1_2_aarch64.whl (301.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (295.1 kB view details)

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

yarl-1.9.6-cp310-cp310-macosx_11_0_arm64.whl (81.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.6-cp310-cp310-macosx_10_9_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.6-cp310-cp310-macosx_10_9_universal2.whl (131.1 kB view details)

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

yarl-1.9.6-cp39-cp39-win_amd64.whl (79.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.6-cp39-cp39-win32.whl (73.2 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.6-cp39-cp39-musllinux_1_2_x86_64.whl (315.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp39-cp39-musllinux_1_2_s390x.whl (321.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp39-cp39-musllinux_1_2_ppc64le.whl (324.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp39-cp39-musllinux_1_2_i686.whl (308.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.9.6-cp39-cp39-musllinux_1_2_aarch64.whl (305.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (320.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.9 kB view details)

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

yarl-1.9.6-cp39-cp39-macosx_11_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.6-cp39-cp39-macosx_10_9_x86_64.whl (84.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.6-cp39-cp39-macosx_10_9_universal2.whl (132.6 kB view details)

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

yarl-1.9.6-cp38-cp38-win_amd64.whl (79.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.6-cp38-cp38-win32.whl (73.3 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.6-cp38-cp38-musllinux_1_2_x86_64.whl (321.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.9.6-cp38-cp38-musllinux_1_2_s390x.whl (327.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.9.6-cp38-cp38-musllinux_1_2_ppc64le.whl (327.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.9.6-cp38-cp38-musllinux_1_2_i686.whl (314.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.9.6-cp38-cp38-musllinux_1_2_aarch64.whl (309.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (322.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (302.4 kB view details)

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

yarl-1.9.6-cp38-cp38-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.6-cp38-cp38-macosx_10_9_x86_64.whl (84.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.6-cp38-cp38-macosx_10_9_universal2.whl (133.1 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.9.6.tar.gz
  • Upload date:
  • Size: 151.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6.tar.gz
Algorithm Hash digest
SHA256 0bdc6a7b59efa0c34c90ef3da864f0c53e81a4640fbc461bfde9f1b0c64c3c81
MD5 29aed0d5c0c99fe5c535831286b60e02
BLAKE2b-256 801c708f8d34fb7788c8f4fa78fa5ae0967e8a456504bdb850c6d3390edc8b8b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-py3-none-any.whl
  • Upload date:
  • Size: 33.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d34a4c6fde4d49aab493214228d0e03f7e5a717f6da4fe65b879a3af3c22ad7b
MD5 1a7b648406ee0b0ae3ba9bd83fd923eb
BLAKE2b-256 2f891fe0e646677bc17bb5d3961b4a42c996f85dc5d6d0ea7fe46cb8c1f1a9f7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 302.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e333ed4bbf317a2424d865ec4836d1f3560e7beee8e0fd0ba44110d9e9174d9f
MD5 6aeef2a8d776da6f9aca73acaa8bbe37
BLAKE2b-256 9712a3540b6ad4755bd8344e03a6acf396d2be030e9b96c5c9ba116b4fb7266c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 297.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dac4e5afad0707beed2d5554cf1003ba0c4ce83578e254a5bac8aa03df9fe2c6
MD5 dca052f38970248175510f0a228e9b1a
BLAKE2b-256 b346b20982402f117dab5991ed60faed9d35abf33e442c63ccf7b44577c4d863

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccea3d444291487f0e044f92a3bd72c2ad2880dde6409ecb7f12c5571022ed0c
MD5 f2694fccfbf02226fc5a32737f9fffa8
BLAKE2b-256 7145ec5404baa19386560ae1a3d4e525460bc99bb3e3e4c14e08d43ed750e284

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 683abc326e3cca63ec3bd0785b44fe39237822737b99453956817214b5eca3d4
MD5 c6e871403fc6cd89af13818da32dffc8
BLAKE2b-256 4b454993d284dbf871539dd151bdb5b6533d5cc4f86dd36be269bde54bb1bce9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 852e213f2fe6a1605c87dfd9bea69a43090cb47daf49991bbeb35ad4a21c87bb
MD5 66202eafe71b963ff2ad8788a47a4470
BLAKE2b-256 01ddc0087d6038933a9f91f068710a4a573d1a1aeadf7b5907e40168939460fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b033089070f63cfbd06f9f3926c56ed2f4abac8bd389e18a086c56603674ae69
MD5 2b4e6f81554dd45482c5140311c39e34
BLAKE2b-256 b66b7a86ad2b24b69f3367e07823b0051b547a8aaf9bbc465bb4194b08798f09

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 443bb24327e3b2a65a646f79d45acbf883b46c7ebc8ea5fbb6057e124a2ffb84
MD5 6ae27dfd8f9bb95e4796e95303d9f321
BLAKE2b-256 d120cf87d13452ec61d47689603ba2ba96d925400eab8801bb779428f6f339e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aebcedf28b02a4d575aeb67c3dc4b6b0533b72231298cf2b0fd7e3060decfe5
MD5 ab040ea08fa6a6aa85809edb4c57bab5
BLAKE2b-256 fc089a0f2147507b9de47ff2afb78d394bba86ead40ec571e687e81ceca38461

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 939779e9f5802305038779651b0062be3eec63bbdc1b9e7c3ea8dfde58a74663
MD5 a18dccfff755b21ac54d176b371d3292
BLAKE2b-256 5b0851e2fadbefd1b09314798570bfe5591ea0cee0638d8dd8582e37214098cf

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2865c25ab6ab5a93bda6278920e3918b57a3b12b4b07c7207060a5787908c57a
MD5 d9a7293be654140a94c8e8110b0412fc
BLAKE2b-256 a1d111e93900c29edbf4c203c832c7c7264562fd2ad1823aa4b49da122447913

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0999c76aa302455f64d59ec8fa34718fed0427fd069c790cfcc6940d6b17a49
MD5 2dc071aebae7dcf72a0ae78acb965376
BLAKE2b-256 ef738e8b7564d953bb8e22cb0dc4ee3be3e12b63878c55dcec39e21922a188a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8e91970222df517b6de5346c74a246919a5d3f4a8fd4117b0b1dd9d935eb648
MD5 fe68851cc64b56529bd44125443578e2
BLAKE2b-256 3393d29a5b17ca0daaa96112a4eb4a50e7a8fc041dcd0f560e2759270645cd24

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 076ce8699521f6e5acd6c69fb6de96d7f78d9ec6384b162cbf1039159997e7a6
MD5 d814081bc5b9af7e36bb017bba165696
BLAKE2b-256 b54887da932f5ebffe12e06d3a31cc2969cb56d74e977bad9770d572e2f39dec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95053ac3b499a5638718ed33c2e7d2724ef3d4e9c0f0e286675506ab026aedd7
MD5 08a6b57c5b215ae677ef9fa36a4401e9
BLAKE2b-256 928341ba92de84ba903b458706f1e8ca2b5413384e3df5d9a2fa7c329ae5827b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a314f4f481d881f698148260036752e56934b59692f717258a65f61e342d392c
MD5 e2eda46bcdd3cfe9f7f32c647280c891
BLAKE2b-256 8ce52f5201c4f5651c0abd93622743f44bd2e6ee3b370d76daa6229ecfd32745

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a88b543175dc9884d919eab40bd3d39c99b6dedaa17910f6f431d0c3495d212
MD5 45cab74e251e26dbb1d46c580757b571
BLAKE2b-256 bab59cf71c70344d71962e1b7fe9121f5b7ffab7f0e386a1be9cb5a14667c082

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 72.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0d41d541080730548f6c03932bfe7b08aff964a172fa5623695970ceac349cc2
MD5 a3cbe7cf8b6d653624bfc2bcc6c7eef9
BLAKE2b-256 2257e2fe9c3aefea91100b6fd057870667cc4e73ca0684e959ba0f025b0c37f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad199a15f616abfecb1e8eec053e1193c75c21fca136b5a401123c3e78ee989d
MD5 127cf65c3b0041d86ba0b2c66b751dcf
BLAKE2b-256 10426e54119112b8ecee31d111dc5aba1fdc60ce765e1fe67a3d0a73c7afb596

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6609652c8fbe903be56782fb99a2e481a7ef5382900988baca9312da72dfede
MD5 26dd8459d66a200b9df897857ae04387
BLAKE2b-256 da764c06aeac7283f89083d413e20493cf65e5bdaac87c36561f6a62836c2499

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7e00e3e33a51ff8059bdec30336b3910fdfc121e2d1ed0c51d28a4198411eafc
MD5 ddab13a97277bd1aaec02287faeb872b
BLAKE2b-256 c485f8ecb6b61d0795423bc85fbb30880815b69c990b1eacc5be10bc3fa80ed9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50a024dc446ef0b0bc96176c6bfd6b9825e2d306a3e2be8fad09406e7b3630e7
MD5 bf049e7df69c9c430f169c59ae7ba6e8
BLAKE2b-256 e7f7a2412614ec6340a5c1b7c6b052c6756caa9bc4c8dcb07787717982df944b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d466e1b28338910c2d7e54a22a0542d7a4f989c7a4824f4b40d2f2a14d97b65c
MD5 206179bb7b3c1eaead3e056df91a1eaa
BLAKE2b-256 1571eebe530f7561dcb45595b984c39fb8656414547cd18239687e2ff6b24076

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70751d8bb5dacce02b808f7bb71545d658e5a21e4b312f0a20f6de4d5e007211
MD5 da6cd76ff3c59e93bd339a6875b58b72
BLAKE2b-256 2edb4a5550d23ba1146d710e224f2762107b5aacb1a61e4ecd14704bac72d249

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ecb0c3f5fa89dfbb926dd743c6c28868b85ff22570f1a82f772515bf535ad54
MD5 3bee3482911232fc62332bef963e385a
BLAKE2b-256 4966508c28125b8b52a5f7472e0aa45ce2574b6a2d92df63f801cf0d17d941b0

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 494dbe74318ed7190e3a189973600a50b8d3b2027f6915fc3265d5e0dc465077
MD5 71b9e765e7e1db08c06e3f80c1240199
BLAKE2b-256 27252bb9ad534f9574da56658c9865df29d632ce6dbbc7f27c713d9a3ba15946

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b84baedf1ea3986940d1e88e9f26688a06635c250b9ce14ca4f64355ab33caf
MD5 c43f025dee81aba4f447e423672393bc
BLAKE2b-256 58d16f878021a1302fbb11f1eadf744ca6b604ca968307c57355f607f8bf8224

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc6a25684df320e49b17eb34bc7638cc3dac5d70f4ff3b15ec25f29156a304ea
MD5 231e0a55b39cb606c6ceccc3f9d6f8df
BLAKE2b-256 28426663d6cf832d1b75f9df7aac8d06af76f2b44eb0aa01ec52c54574165993

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4275e619a95c61a793c47fcd5f1fe9aa88273bdd56e09594bfb7d0784dd4ffdd
MD5 33314c73873628b15e2e289da6ab921f
BLAKE2b-256 f135a16e4ec472f05feb6cf64591774a4e30b9063e65be101318708c8e7e16aa

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89b3b220eca621a4155f3affb16e203e2c9d5de894a864fec29e6674018f2622
MD5 23667093dc45830e771c4de8faa678ac
BLAKE2b-256 60a225145b45713fbf3aff99d050b6ea36ecb8cf53eaf64d4ce3c6c48e44a337

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 495c251bf439d3d40ee99eb25e2d8af2fb100b4727a1ca82624273fcb0146680
MD5 f48da1850c81473ea55d2bb66cf5071a
BLAKE2b-256 d89d2c19f1192740969e51b03c7673c2a9f483c94c332c043d54de44b8a9042a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef6563bfa47b8f51e37ec4cd867690c4da5be075daa63e7348a72c486f71b056
MD5 af4fb46f5285986787d503e74c1d31c9
BLAKE2b-256 b2b3eb1bc44059af030114da1e751110517b6cb3b12395653bd524636b263736

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 72.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 72556c7273b3c1f9e2eaf3f4caa2de597ab2aaec06d87c7a5840522838660316
MD5 8064d90456a3039db3d56e3b2a58f122
BLAKE2b-256 6ed3d24697f48366b0a4d8d8ce522192200d6d43f2dfe1769f0fbba9cc947ed6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1df9ce83a30e3580cba87a050e2a4635a806d96633ecd99d1e6f3b329a855be
MD5 a768454c273edb9decacae32fae7d822
BLAKE2b-256 2f0af293a16c7e63b19d0917b33de6e32f919ac41f186d163185b41da5ec4f2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6caebfbade5e4f19d6c2caf0f3cb56c788ff22aaf6c93d8e4c57d6e6457c5002
MD5 f9c85abd026aa0343371e210e95c21c0
BLAKE2b-256 9797f5adc78590d70de77f4e1bff7bed3d7145fbaeab099ec79daeb1317699f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 61f9e9c51717651319ea1f3bfd838979ad13e0a086abae1055b72e21a35c86ee
MD5 e79ea2d38b07fadefcf94f1daf41615c
BLAKE2b-256 8547b4df4ecfb14b7eb32f8c8f47f9e4656ee5762739f0bd6bd7e6a2bb66d415

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c79acad3d6805b0701ffd4789dc14020cdb1977c436e3b81ba7a507e497f7146
MD5 52c63a2349b45896537155ce3ecd5c3c
BLAKE2b-256 f5e4d771904dbff8cf9f157f08f7920b9d927cbe8a363a635bef3e1eec9529d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c5a5425ea221ed548bc0b7db089b6e69f0abcb9b318d2f81e252ce1a87cb432
MD5 868c56e10e13839dbb673c9a9bf864a1
BLAKE2b-256 8e97cf7e86200d1bba02bc12ce51991269b3763525b693777efd2d21c7d7e8a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f22fd081fa74590f2de817fb0f8bd3329baa96f2f3baad53210c8864bbbe6d7
MD5 aa3f2baace28ef7df80acb59d71de652
BLAKE2b-256 786a98beb9699d5345e162fbdc5d88643d68fc4df436b56f57daf929343628b3

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19fd2614cc11ca01460e9198ffb80da58ada3404e92c23dd352bd7b1a93a6400
MD5 81e32ce690b3613d119df1ab50a6a9cf
BLAKE2b-256 c59a0eb22fedfdb9ac7ffd5d3a4bdec19b3ec8c74208c9490350d88b535913ce

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5805cf7060eee1c928731eae8d2999b1dbcc158a1fdd53bc88819258b8cdf4d9
MD5 e5a687819a6040532c108516791462d7
BLAKE2b-256 9af5053fb91b9afad7f9fe6f89dbdf391e15abfdd80a54e8af5102a5e80b76e6

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb9ed9849918bf4b1262a2b323844c0751dab5151481a9f2a1d1a7794506b692
MD5 dcd882211a859331d3a07fb21f4e5d36
BLAKE2b-256 5029f15489cef499ebb408b15d434c7783af75f753143f06492d1427e6d51971

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9da6010b1f7f1a6a0804190ed895f3425c03230ff9bbb0edde961221e33e2447
MD5 f8885ccc793a7e6c005e65e339a8452d
BLAKE2b-256 0d45b799804aaf0aa72bbc84180494f0c9951c76cc95f1ac9a051e302f2854fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf3bb663138621aad571446bab804cbd4f69bdebcb952d555d0ba4bd19e4bb6
MD5 932efa222d25dd839a350f50a726c15d
BLAKE2b-256 fcb6e541bc705c79ad7f5e08550c592fe2bc830b147d1ded0eda08d70cf248b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad189fe2c7e0b38cd42d9053c90ab5edc85c9169b6c495c2415b9c74e88cca9e
MD5 da0394606b3538acd083884148cfc9b9
BLAKE2b-256 659ca2087b3ee4224bfad80fd7d69764192d27bb93926d41150c18f6d4effc75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fee93d050e834fe12ec65e3fa762a24be622f19d7d4dd1d16ea99daab5568a3a
MD5 77a9978f7b0881baa086ceea91ffdc05
BLAKE2b-256 843f473868aef0835b1f9d61572e4dc87f5bc1e13628f33e4aaa25d009971d4b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 78.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da47fb9ba6d18a3f63365da141399ad56a2b00d0432bbd0e0b2ee534acfef430
MD5 2e73835d91e2664b587f143b4f47fabd
BLAKE2b-256 d348cd60763eeb6359abbd727f09b47ce39a509661992c6392efd67c6d114b70

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 72.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40eb9f092b9d576c3ca97dc405538914bcc96be1bd2099c8dc4bf2fe78b54c03
MD5 942d27b7a1a382b25efe3cf53582500f
BLAKE2b-256 c6068461a76674ea35c4217b822ccdf2662d1070b783e554dc8ee36281669cd9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15041b0b0a245a718551af98047accae093b7aa8f2fc085a6fdf85244c6a2034
MD5 15d1e0c7161cc073820e060b9f821b4d
BLAKE2b-256 09e2f7e182e897a547a5e05d7a7ba4a23ac7eb49803f02cb9f5c3be130d006de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f3c9c928cbd159b8f89aded601e6844d926be33434fdde7cee2b843a4364aa02
MD5 9ca13ad2c5b34ee4e118be031e48a496
BLAKE2b-256 f7cb593f9e9f29b95af575c377097ebe93413115e8a6088f74cb95b66b09126f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25645b4dd57c71bd90d090eb84b962d1977ba9b1633de8726b5acd2e17637fbf
MD5 f7fc5bf14246aa4ec22eb02623d662b9
BLAKE2b-256 dc581def3a64482215888adb236b4636c0317bb17afbc6ef16181f3d851a0bea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a194c57d3254579c830e3ab9a3a828f5bf4fed62b1fcc662446e7d6683d84e3
MD5 fb054ec7136dac0c7be98e4981149c7b
BLAKE2b-256 4f68f984fd5dea7ee71a84634da187b429d0624e8271e387a7367b885b343170

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 990a69a85f5dc9ceeeff76dce4f53ff8eea758f127ad5c7ed07af4ec406d0712
MD5 b3e8658432375f5ff2f7df26c1be6da0
BLAKE2b-256 724ee920f3388ac911ae66dfe39f4b98fa0462cff8318eec64e907f04a57ef11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a73607a01744ff6631f6b7a2e78c73ea24f025c1808f5c246957b92d8da56362
MD5 05eca20358edc36d9b01c9ef278a6a8d
BLAKE2b-256 27d2eccb3871edd57d85fdc7d2d545dcdc22be32ce59f632c7ab49fc00f271d9

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cfa9b9ce66e9939e1dafdb9d951cedcebf4e3bec999c9bc84ba16d246f6fd8f
MD5 124cb7b0065cb971688c29e77ab5c323
BLAKE2b-256 fd6faa7050eaee3d591212ae5fa5a5ea5f2055348d8f57c87bd09740c358db52

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92c65fa0bb904a1d24a5f6f9929feaa1573f93a1da5e3843136d28161c5d2cfd
MD5 72536d98683f8de0a622f2de344ec050
BLAKE2b-256 0a7e275ebade690cb94e75b949ff6f40105327d25b0d33f648ec62944d2a51ba

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c14f5d3220575a0392bd06028342e0527c3a873c72d87879418ff32919a6f11
MD5 b6574057633cbe18136ea4314001dddb
BLAKE2b-256 337c82cc9cae49450206eb8190f1f2681c8e21c03d3391817448d9f3da11aefb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ce5ee549d3f8236327be68e4a3bda15b57137077d535dcc3dc4a521e8999536
MD5 0215b0329b3739e8a8e79fe97dd240dc
BLAKE2b-256 a2b5a0202d097d3a0b89dfd8cbd9d87d88dd7b1d8b19346ef982c0b739da4981

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d602e77ff2bf949064e88cb6c41f1d7fe4698ddfec7ccdb628d419886136d437
MD5 cf44768684fa24f6f8471647ad5a43ad
BLAKE2b-256 5491261a853fc9f138fd08e99aeca216978fa164ee14209c124e32f56f10f5f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3777804ae06edfc354c757419e89eb3d640ff04d6477aed76fe0afe72e6e6e48
MD5 e9572bd30512740e538b35413569b80e
BLAKE2b-256 23a57a51a4318eea8609337c6089797a7227f52cdea1340fdadceeec76a0adda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4300c792fa8a9bd2b3649b8f7a7b184128552c799d1593b8e866c5784aacf064
MD5 f9eaa9cdefed3f5046232d1d0f36b4d3
BLAKE2b-256 3ead595fe21ea215c2aadc6b5df0aa0acebb628965fdd46ca1818b6b03dff8ac

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 79.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e0c621ff807414b8a0b964251714e0038a355de6d2a2c67d6bf1db09c3bf38e
MD5 4e9a2bdf433b961f13f245a8b06a73bb
BLAKE2b-256 4195230a6c557f0a06d47d01f59c94a61dc9ea7a9d82fba5837db2e023c8c619

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 73.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 283d7649a2805c64eabd246f763321149a370dc696bfd3f575453cb75506e959
MD5 6073a81a2dcba100e87918e2a05df6b6
BLAKE2b-256 cc3dd1235b24416beccfea7c35348247ae536909d6f39895e533d8cf0e27ac1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69982ee7dce2073fffc50731cb1ae927a715c29d27b4f22b8c2edb56714da8d1
MD5 8dd714ea3a351fc02f27d39bd8bdffed
BLAKE2b-256 c32bc19b39b8d8c51661f55384ba0c0b3b7c23095b85c0b9c29b04ea0546ec38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7abc6a65e8a5909f725efe59f05e26b8eb941a8b475525eaf0ace9c6254fc729
MD5 4a5933ab585fe86a7d58438dbcbd57aa
BLAKE2b-256 3c03a7058ab58cb994ca8b4303ede2d2308282b27b9a9b9734a02941384a554f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0a987726abdf4ae961a084e79a03fe9e46fbf419c63d17cf0280cdecc1670b5b
MD5 7a6cdf48305d6f4058f9b000cf5e23d1
BLAKE2b-256 56e6dd99623d9d6e85de44c4ef517f5665f010b688a77ee51a974954548501a9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 308.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f24ce88a0b3f8e59bd27c45633b77699b9a9dc6d23045c3b83f2334e8aa799e8
MD5 f529a4416c82f6e8ae5ad02b2d1df0f7
BLAKE2b-256 e7a80d06673279567e24dcf9da34745de1ec2d0040a7fef3f8b64a2766d6145c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fa7e4c9118d513a62c493f985e9045a0de072ee4d23a5035e8b77ad30992dbe
MD5 ad08dcc5b2b4fff503b97c972f875248
BLAKE2b-256 1306f6f0d4f16b07112a93914e4fd67a8f1aac94289afd912178daa11e5952b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a24034845530aba47ad087c0190789af142dbc7bca38583e567be2da4ba5b90
MD5 8d9ee2510836af854641848cd07aff8b
BLAKE2b-256 20945b4942f71a50db09b540b6ba6b1ba2d23f633cf5009b5124751a58dfccd7

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ce7a8edd1813118fa79dc5d3aa12cc4735265bac958e173013506fec49b0d78
MD5 7cc4db1d883d1f8fc5c0f27f4cd45316
BLAKE2b-256 939666c1b15d08ab0ceb23ffccd375455f298642a15debb30691067e1b6a41b2

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea4b3e4f24e3d60f3361dec53db31bc167dba1f9eb7f861377fa4d681e7afdb4
MD5 f466630b7cc838341b2e7d7b98dc5492
BLAKE2b-256 b2a8fc8fd87e8968ce47acbeef033ccbedfa7150c3ea237e878cc0694e3f9407

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f5272514166287d89bdb1215da3ccc7f31bce6b481425add8e3d11bdad4e1dc
MD5 1476438efe5cb47a3db8763a32b32a6c
BLAKE2b-256 5da05e6465af2fc4dabe881fd91491051b97721249ce809e985b53978e475a04

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 053d5ab41e31c6f86038ba1dca5dc8d1658d0fb105adf2d32606d7727904436b
MD5 2cdc4621484d72c0e2f078d61d3c69da
BLAKE2b-256 cbce9bc6da36d050c263b51098bed594d5bcd2a3b545c94433cd70364d3bacac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58e6d67537b6d93c8bf4102917c337c3bd39bb70f0910b5ca6ff1d102721069c
MD5 de1119b1e350c5260427883320d98b14
BLAKE2b-256 7c34bf883f95b2caba1ea25efe9d491d93b364da3bf00f4be1d673410d354cda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 839bce5479c5d2fade4a2619e6232060b56595b08a99397ea38b0e0bef15f59c
MD5 0859ea40c221a4fb1c92e793f349282f
BLAKE2b-256 8580dd0a949c616f7d2882eba15767ecaeab6e18c90d7e075dcb7d668f106d7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4318397b84b417daab204b88929387087846ef1a182b74f7c7565f4c5bf14ec2
MD5 b7512ac4c171bb22b8beb5e1b6c92897
BLAKE2b-256 c2c81e27fdab5d1e121eb5092a41823ca45f686a381b1f091be90758f27fa471

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 acf846ad1dcd40b549651c984e9ceccd134a3f3f9938a51c77cda75cebc7b46a
MD5 21f1aebfb736e7dacdae557a7fb39e33
BLAKE2b-256 fb35a91da3a45151d51b8b9bb811b7cf2520cbeda51cc712f00e8332110cf2e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 73.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5688e48908f68dd1175a5a775bd562ba431a3ab010593915558f7d143d63cf48
MD5 9acde113b9cb699446a83d27277800fe
BLAKE2b-256 b6520a34ce5cd79ece6e018fa3fbd65104161b08aed98864a0d5a00296301bde

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f52b1caa08842101b24662507326eb9899471e3f56c28706355f8097a2fad8df
MD5 2aa712ff19c01c4e636b1e7970d23d3b
BLAKE2b-256 a5f5dc5d831e74a94aebffba90985d8a796b41704deaa1fe0d44584982179996

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1aa72ea579d8615f4f135f55c7f5c1710f9e743fa2576fe903ad75de0777e66
MD5 63a640748913685c5dfe421ddf7fa90c
BLAKE2b-256 fc1c8e05e57b9becbf021877f9958fb8a5a4b68d93811661059b2343c8ddf28c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e66e5b4c5884d67e892e0dd0cf79f2af6c4b9078841ebb2b2e7a75c3df16b71d
MD5 d5c1f65343f7325f0835cdca4da17f3c
BLAKE2b-256 7e7fcc6a244d7ee8efd2494598732064e8ea375d3bbfdd3a30de51369d41a54c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.6-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 314.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for yarl-1.9.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be4df89374aef89ba7200866e47bde89af67edc2bdbe01cae39e9ab7309365f6
MD5 14a4e076e17b126501bbb083b65a427f
BLAKE2b-256 8030fb377c020b242d6cc4355403605d00cddcecc0e9a47d51f18ed77a809bd4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 515f396bf29538bdbb817cad03ebc453f903dc9edae03a835d70088042425553
MD5 f6846718b72a26ea9778babbc5907b41
BLAKE2b-256 b0d86e449efc39f520b093ef0e4e9e986f309c9ff5f0ef43df0996d854472c1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dfb4e7e53e3dd9a4f32818abfe4575e7cc6f5fa002a859529108ed1c657e169
MD5 d9f69e88b7718a0752f715da19465c56
BLAKE2b-256 d6267b213dbd0355faed91998a18cfb5b6f48a69319bd97f49b78df3548c7e3a

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a93ef52dbd604ff2e039f310cb405c8e59b91e38198e5ab62ba38169fe4c798
MD5 a9d13166c8d5f6d28571fea138ee94a5
BLAKE2b-256 cf569c858e7a6c3e7b9701f45c85b13e401d0768e3cb95a243c9618a8e8587c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 080f9ad6076f717d45d8689f3c3ca3f880aeb5c8667ac936d98d9d285a97a549
MD5 530e803f152b70a46770ef72f989395e
BLAKE2b-256 f54eb74bc51a2f97a1542c94665a1d1c0895218e950008a098c87be66b001f2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d37f8bb65b50f07118243e68080836a57477d12da3b47c0b5112feb9cb5d8c1f
MD5 f5f8861b3b985f1b9c89e476ebb356b4
BLAKE2b-256 db4859f88c095c2ce53fe2ad6494714b5770c6c415d8f8a8838bc3cbc37e2907

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77a34663752872cece9cf11c495fec50687f56ba4ab999952c3cd4869a6acc39
MD5 3cf499970be5f887b0d01fc1cc7f795b
BLAKE2b-256 42bc352dacf3874f05a409fd5f120c182e05427531dcc2e886422c4942bb3c06

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.9.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d795a65cbeb0b39487ba6b36265d44f9c7bb0930bb40b26e14964bcff3d6bbc8
MD5 8dabf53d529ca685198fa13283356a4d
BLAKE2b-256 36b9c0184d42d39b749fc86b9242533de251f5bf388242c395fa7e87eedf51b4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9de7f08fd02b51068b8e801d26af567fbe4cc7f380638106d4e38b7c8b6349a1
MD5 15d8637467724622615b8edb85eae3eb
BLAKE2b-256 ceab26325abf034f62ec4b9d5a9967d5094afa14a9b995b9644f43bce2947335

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b75692302951aaa8cdd3284b0d28089c1fcc183e75b78723e9288921dd00cab4
MD5 ac8491e4613491637591805e04b45a44
BLAKE2b-256 2c3f007447cc338ad30eac3a3f5c9801eb5f0951a09a318c5e9e9164a736d6e8

See more details on using hashes here.

Provenance

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