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

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

Uploaded Source

Built Distributions

yarl-1.9.5-py3-none-any.whl (33.7 kB view details)

Uploaded Python 3

yarl-1.9.5-cp313-cp313-win_amd64.whl (303.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.9.5-cp313-cp313-win32.whl (297.5 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.9.5-cp313-cp313-musllinux_1_2_x86_64.whl (340.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp313-cp313-musllinux_1_2_s390x.whl (346.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp313-cp313-musllinux_1_2_ppc64le.whl (337.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp313-cp313-musllinux_1_2_i686.whl (331.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.9.5-cp313-cp313-musllinux_1_2_aarch64.whl (326.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (312.3 kB view details)

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

yarl-1.9.5-cp313-cp313-macosx_11_0_arm64.whl (80.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.9.5-cp313-cp313-macosx_10_13_x86_64.whl (83.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.9.5-cp313-cp313-macosx_10_13_universal2.whl (129.8 kB view details)

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

yarl-1.9.5-cp312-cp312-win_amd64.whl (79.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.9.5-cp312-cp312-win32.whl (72.9 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.9.5-cp312-cp312-musllinux_1_2_x86_64.whl (338.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp312-cp312-musllinux_1_2_s390x.whl (347.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp312-cp312-musllinux_1_2_ppc64le.whl (339.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp312-cp312-musllinux_1_2_i686.whl (327.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.9.5-cp312-cp312-musllinux_1_2_aarch64.whl (325.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (330.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (312.4 kB view details)

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

yarl-1.9.5-cp312-cp312-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.5-cp312-cp312-macosx_10_9_x86_64.whl (83.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.5-cp312-cp312-macosx_10_9_universal2.whl (131.6 kB view details)

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

yarl-1.9.5-cp311-cp311-win_amd64.whl (79.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.5-cp311-cp311-win32.whl (73.1 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.5-cp311-cp311-musllinux_1_2_x86_64.whl (340.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp311-cp311-musllinux_1_2_s390x.whl (352.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp311-cp311-musllinux_1_2_ppc64le.whl (350.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp311-cp311-musllinux_1_2_i686.whl (329.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.9.5-cp311-cp311-musllinux_1_2_aarch64.whl (331.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (332.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (339.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (342.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (321.2 kB view details)

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

yarl-1.9.5-cp311-cp311-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.5-cp311-cp311-macosx_10_9_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.5-cp311-cp311-macosx_10_9_universal2.whl (131.3 kB view details)

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

yarl-1.9.5-cp310-cp310-win_amd64.whl (79.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.5-cp310-cp310-win32.whl (73.0 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.5-cp310-cp310-musllinux_1_2_x86_64.whl (312.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp310-cp310-musllinux_1_2_s390x.whl (319.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp310-cp310-musllinux_1_2_ppc64le.whl (321.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp310-cp310-musllinux_1_2_i686.whl (306.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.9.5-cp310-cp310-musllinux_1_2_aarch64.whl (302.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (295.3 kB view details)

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

yarl-1.9.5-cp310-cp310-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.5-cp310-cp310-macosx_10_9_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.5-cp310-cp310-macosx_10_9_universal2.whl (131.3 kB view details)

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

yarl-1.9.5-cp39-cp39-win_amd64.whl (79.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.5-cp39-cp39-win32.whl (73.5 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.5-cp39-cp39-musllinux_1_2_x86_64.whl (315.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp39-cp39-musllinux_1_2_s390x.whl (322.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp39-cp39-musllinux_1_2_ppc64le.whl (325.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp39-cp39-musllinux_1_2_i686.whl (308.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.9.5-cp39-cp39-musllinux_1_2_aarch64.whl (305.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (320.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.2 kB view details)

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

yarl-1.9.5-cp39-cp39-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.5-cp39-cp39-macosx_10_9_x86_64.whl (84.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.5-cp39-cp39-macosx_10_9_universal2.whl (132.9 kB view details)

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

yarl-1.9.5-cp38-cp38-win_amd64.whl (79.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.5-cp38-cp38-win32.whl (73.5 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl (321.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.9.5-cp38-cp38-musllinux_1_2_s390x.whl (328.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.9.5-cp38-cp38-musllinux_1_2_ppc64le.whl (327.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.9.5-cp38-cp38-musllinux_1_2_i686.whl (314.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl (310.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (322.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (309.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (302.7 kB view details)

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

yarl-1.9.5-cp38-cp38-macosx_11_0_arm64.whl (82.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.5-cp38-cp38-macosx_10_9_x86_64.whl (84.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.5-cp38-cp38-macosx_10_9_universal2.whl (133.4 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.9.5.tar.gz
  • Upload date:
  • Size: 151.8 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.5.tar.gz
Algorithm Hash digest
SHA256 5c9b12dbb3d4607dd4d8877d44c8ac410a6eb2cde3792be30aa0b371d88260a2
MD5 63bb7d9abc30f27d1dd5d5342b984a64
BLAKE2b-256 66cfedcafbd7990c477c13da7b22f290a888e6b71ebbce937f81c5b024c49704

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-py3-none-any.whl
  • Upload date:
  • Size: 33.7 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f072c95c97badd8b05250b50d8ba072c212c6bf16f0b61e92299a28302a3a021
MD5 56ca43f035ed3c25683d3bf2d64072cb
BLAKE2b-256 06d28751530fae573047eee1d01677fa91f15138851f04a5ee22e8599b8b84b1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 303.1 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 846b79ff7afe4329eb0684bda3b35410e8cf16bea5576d088922df4fd391bc82
MD5 f6734782ffdd04923e283dc9a4577b58
BLAKE2b-256 c4d52feb8214ae8587a8b60c24762299a4e87cb8efa8ed79d8162177809d1a40

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 297.5 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 173c6eb9e880526d2f7b65f826405966639767866c6fd597d9effc5f5ebe9a48
MD5 b60554500c3e9cbb64691318a0040c1e
BLAKE2b-256 a47420280acb4489e44767101021c909c1c2a065587164cc28087982d5bf4ce7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 674d1e5d86c008f47fe89c5c97a2af19c53ed9f80308a1fd7a50aa748b14c129
MD5 c20a245bc57cf99a0f6572240b16becb
BLAKE2b-256 86ff46b017623866d152f34e90a04a9290ccd08fb21fc5ce0c373ccf4713679b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1c1c8d68f2e2d425f92a835681dd9bba64858de52af035e7f6d4657bd69c6a79
MD5 3084fcfc183eaaa4cd2f745f53cf9377
BLAKE2b-256 3e5fa87711b395acd06f4a6dbe75d25e0bc09a4eb581a3cf740a8c4c2df1457b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fa47b69f733ae8b04da774a15dacfd9d9f8c54351e7c6aff6bef23c6fdcfa6ca
MD5 92a61dc64d0cab522a46a98eec323b84
BLAKE2b-256 0b4c64a1e64fda0c540189f2a4a1269261349f01261607aee4f65a862d9e3547

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fff8350ced8a2dbd7ae8e84b98a752962b692647c6d6ba4436c687b6466309dd
MD5 7e6a9b637559b78506b76beb428e0e79
BLAKE2b-256 1a42245b92f450454e5ee4e47dcc26166278c2255dbe2283d66c8d4a6f53ab5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d89b9c6bc83811f4aa89ca9049745380f1d27c6968da2acabc30103a152e77d
MD5 4a363e5b2a8329268ad84903ff51fa57
BLAKE2b-256 0b1705e0bff7ac7ea84ea5696ea9fcdd01ea12fa5c0bf64788ed241469e4003a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aef79db6e798509f6e62fe742352238b5223174da18ee6b15fd6ba290e1a770
MD5 6428a062c3addb2154851b35c8f82e14
BLAKE2b-256 a50908baf0e15dc32c35d843f39a5862ae60c3f94af0ada9fcc14a53f95849ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50ad37c92bcf27500a022ee298f51f038bab2a519386a0b61491c2a9bbe86b9a
MD5 328c086b47e6c51052703760044d6e40
BLAKE2b-256 f91afc41b9598694a16e3e25a077d408cef8c62d570ab39a7fbfc9d4247dc728

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a966d595f2f796f6c9cb60a3e017621ad3f8934dfed84593d11ff294ee6464ec
MD5 2cc200012b4213bc662a0b3cd599d5b8
BLAKE2b-256 dc5f49297777c32b4322c797bb0beaf6ccaccc34cd73a47d67444ad46cd42c36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72bfd897285fe4017564b858710ab6c06af2ef855fad4bec27295e28a7a04f40
MD5 0450ed8b31317bb49ce310cf4862e4f4
BLAKE2b-256 2f01080409a8e21c448c88f64c52b604f33212228a83538c50738eb881ea99c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4402c23ec2ad8ce3f70b90b5bf33008afed28bce36cdedd0e49833916a324fd1
MD5 68a9a70740c4b451c3cafe93f2c64816
BLAKE2b-256 2dbdcb816d61635921ecca26c6d71b11f981609b5fc876f9bfb63b7dc26426b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f1d11bccc574c792b9c3fcab001deceb656b7ebdeab731551ace5536a8f5835
MD5 514f73d328f445aae583f68056d3c59b
BLAKE2b-256 5490f948aa304b72f34b6f97073c18881d666d2dbb6a5d57a68aa965ff62a197

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e962b8377dc93e4f45bd84bfe5631773fe00da750f077c4420ae96c409ae661
MD5 71bc5f314805efbbe43220fc1b19ab9e
BLAKE2b-256 bcf86c5e562cb597e02c06338852f8702c700ee72a99682fc237b71514366f67

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 044e348f720bcf93fe6308db177a9fb40f018a80a3afdd0de2b8955cf2ba1c08
MD5 d6cd49f414ad230d2af98b038c0b3370
BLAKE2b-256 f219e30f759467635ecbf38c529f1a7a8353b1cb9499e4728facb54ec4b0e948

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 79.1 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a419be4f256861492c9ee7e51751afdd5967d64b6c98176db605eae4d75ced06
MD5 23a7dd04e5eacce7ac23f3c6b42c0220
BLAKE2b-256 1d2b04af7305138df92d6d28f39dbf57e7a63497179724f49a6edf0af09e7a40

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 72.9 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d217b391dd96ee523a17920987752d9c0871f8d82312a1db6862013d9f0a3dce
MD5 a8799a15ff54efd89978e6b7c029e1ca
BLAKE2b-256 59d2a402ec664e70c86ef05f9b36df27e19621ccbc0db93807da47204569afc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a40d014c18754415655fc0516d9a59c74db0ecd023e9139c99354362db7cf480
MD5 9f9c97909326c8964cee4d966629d879
BLAKE2b-256 73c7df704e2ecf12160068d934f0ec54bb2f2942a10d85196a1d83aeef2b26ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c468aea27c0fdee3d55a026bd8ccb1b17306837cd50829dc81fbbf0024aa750
MD5 6858688e51289036b1bd339b214b055c
BLAKE2b-256 4242ce2efde0dee4d00239495fe9709ab222e82a4227ad6b753583473b12006b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f4edf7cd1e763f2c126bd37d69f56ffb495724319a7807e6ff216b9ea5b57c64
MD5 57e920b231bfee52176164a244dac682
BLAKE2b-256 a59739f77cd00e2d8c0d95de91209c3642f9bab83a3233a890b663c277b85420

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 608704b4d2a6da4bfb95cac97a7be9f40d047fbb23b1597579cd0a38aed10753
MD5 5eae1f74c78f854414f3630285e7a717
BLAKE2b-256 04ec116ea508e83d028ed911965d0a19b181e6c63304452e27363cc241a2aa2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdc3cf183fdbd924b6705d2317719e81f14e4be6603b590bb04a963abb8ca7cd
MD5 ed42ebff948e0e2ef20d460106a5143a
BLAKE2b-256 6b9e991ade904ff00bac5fd74766205cc2dbe79684e83fb322f0e4ffd8836589

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd02efd9f252da151db11142256ed9e577fefb25f7eb0ab6826ebee2aaa5d251
MD5 ba0325b33f7b3ea7f52030c796f671c7
BLAKE2b-256 2019e4939e765b35a6810d98e2705e8ac1a5aa0c0cb3f1484f1f4bee4dc3ab22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b2bc7ce7bd40ee5ad55291676414062cdfa3a89e11a17619d30b7d18f388e6e
MD5 9863c31adad4b8d328541fbadb2df9a2
BLAKE2b-256 f6917d4ddde8cdbd225a81556ab9ff0a3a4ff0b2707a9aa63b2198e09cc2aee2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aabc452eddad8abc7e94ea47162e89d24445066504d26a2f8aa4e1936aedf39f
MD5 2254707d323e2d19585d948566d41071
BLAKE2b-256 ae6a201a1dee26268c83377cb701170ccb9e40ea3dbdf53384d308d29f656f85

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57030cf990297e1d648c51555805a3892c49311ca3edee99774dfaa40955aa41
MD5 96683c734aee1a4e058434b3bd9bafd8
BLAKE2b-256 185142c81d6ef55f933ef038f955ed1949c9b8cc723275649774c67f4cc10836

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec06b1ef69af30ddbc3931d3e3756c83e90abc2bb5ac796c2f0845ce75274386
MD5 d4631af71f716903131ecfda5aa09cc5
BLAKE2b-256 22186ef43ad2b591fae6a5deb0f511b99fba7b362aa4159ba94ace24e821bd16

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf4edd995dfd9e2f16edf542e917bccae48d1bcf995d95aa2252646c6ee90e4e
MD5 7f2d1709476b6301dea0e02e192040c7
BLAKE2b-256 6df061ec79d16dce4c40158ddc8e83b76bb4c2b52f1f3549b53622cbf7a06708

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e87e493bf5ee802d271491988701fe09ea34ae6e8b6f5b7319bbd336bed4211
MD5 1a1094c2e6e74efca8fa14021c453ab1
BLAKE2b-256 c0ab0856a11bd3bd66acb568357d7a3864e448397b81d3a6f234b2c22649ea93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f5a8f396313da1d011a4d7abe179f2e1248710a873bb744138370335912966b
MD5 5cea355a3d720790d64713980d3a8d7b
BLAKE2b-256 5b661f640d5752a576935d4de8b9eafe3973e4815c2d4e5430615c69b70b8772

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 79.3 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4dd020a3dfa0008fa95fe5025b76f83af0fd26cd54a86e7356008796bdcd107b
MD5 a9435243e19ba437e4f56e0b62892a17
BLAKE2b-256 fb2d2fe7303e16fd510a3604e52f9d26e067900b4c92692fa57529f863d961b6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 73.1 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8ae7bdc37b6b8360f533209aac16102d7c9291550d0e02b866150d8a1ff328e2
MD5 439ac9b29fbc06804d2aae3a8331de21
BLAKE2b-256 e495c4eb616f35818a80a8ddc23f3c5b02b507f32de41f4c9bd62a7811d9008f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffe37563d0165148467b43d368d011b568c190a5a44cd6d0cb5544243a92161a
MD5 078053616c771e2f02fd8524bdbe8980
BLAKE2b-256 19044d3a2f14c5bcfe17526ee8f2b892d5769f469351cb4fe982f6e9554fbb83

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 928bdb7e0af089de96e1cae93957b121df0e1768b29e48c6836a3ec9ab54220c
MD5 c4d74ccd6472e8b592c6946cf072d517
BLAKE2b-256 a505c8fc717029bc0994bd8cd529a79d446caa44085b19b1c094ab7afb5534b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 18e9982e09de4f87641d5644a36ae79981f2247c773b3bdaa4409b826b1437d1
MD5 af9a85f8cdaeffc5533861fb01306fc2
BLAKE2b-256 b233c9f776f39137a533d931afa1a20e6492677a68e3fbb58ca8cd814fc1d451

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a916ab3a2983ac56e1e4450ac773b064901109abd1aa25d5ac58e56718d5181d
MD5 a257ef79a92902405e448fd9f6faa391
BLAKE2b-256 c1dc091b3e002f9fc94ed95503bc84cc7d50d9bae8801e34b1e31178e4918f76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e730c6776804c472a139d934ce0fced4230e390837c3fbd755db60bcbcdc7742
MD5 6714f228842d4eaa5a5ca639bd37b262
BLAKE2b-256 d62083960dc6c2af7cfff8e9926ff2c4ab911fc3d715695799ae81b554d30e12

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b058c073551c79bbb347f75b268c5f82d295721b107ed09d15392f186ea6bbc9
MD5 8adbf3580159fafed8d855bc8eb8d363
BLAKE2b-256 ac358ac27b160406ea17c8f09015f82d7063becd8c02cf2f7d99dcc0cb08e1d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa9aa2bb25b66493bf43a9e1ff3082e86dc7142b5b9f4536047f4fbfee2e56e3
MD5 784a1efd5e7118a09d0818481944bbcb
BLAKE2b-256 ae92d969cbb9d0e43bcc65f8b82863579d9962551d1ec4fb12c94d76a480b546

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6f7b06fadaf81a7349cd5c1bc10ec915e3f553c39d8d325d6cbbeba1bfaddad
MD5 2b65865c23ec42035c387268e89e677e
BLAKE2b-256 994bac5b0bce5036b1ac31d9e48a67f219ad6cac9dcdf02a16168fd28dc7b0e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0480215704126247813a28701a4651e13d5fdfde555e72b31cfd6f0f4307d22a
MD5 8ea2e47ce802aa41d7749c181f3816f9
BLAKE2b-256 baa6d985ae94851995e99b4662bc8d5dd479e59fe7b583e97562cacba7f3c2a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82122b3137f881f1439d94543fadfd6999ecf1ea7cde7ebbfb666afe76fdb835
MD5 4630fec3beea01a34822df0728415ae0
BLAKE2b-256 986008accce0d125cfa220636acacc2987aaf66ff04080185c53cbbf0c6af53d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6bbd01560700f88ae92890b97ded1cc9b4acf0aa67d3de0e3d9d561e53204e
MD5 0b4bb3b85c9e044d505646fdfecc9e69
BLAKE2b-256 0db72908447821f1c1881fa4fecc4a81a15226c7413f222fd37d6922e09bf3a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a83bdd7f35c67be593fbac0e1914e489003126a5430ff7185fc6e8fef21a8f5b
MD5 763155aab368cea797431f11ac1a47a4
BLAKE2b-256 4873595faa266a07c4cd4f88149f132a59cc20fa1093f6625b9fb823dacbf590

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38bb3ec3d8b28b1a7f5d4bf56ee47cba2bd4d6a19b52a2e1b8be0f02b7661a4e
MD5 5d31c35d01e51def84d4c07aa6e0def7
BLAKE2b-256 b2192c812ddea53642b0c97b7ea1b91134149dadb47c3213464b832c66ab6dc0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 79.1 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 665e242e6602b23e4f9df0feb6c37529f6fc8f3da1c28b71bd0c1ebd3cbd3a3c
MD5 edaa31963be6c56f2b2417a8f978f87f
BLAKE2b-256 c97a41a8b934b835d5f97777cce5aab45277dcd784ed6503190607bde4c0ab65

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 73.0 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9b9267682761426a52def63dcd8e88b2fede765534980596fba383863e97bbd0
MD5 8a890ba66657e3735d48a40504571743
BLAKE2b-256 961a5063c6f4c913755cedd8cb682777065ead13ac1ae0b983f042e0078378b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4e6c2daa2bfe502aa000007d82baa780e0fa4adc41bd185b6cdcffe92821e03
MD5 fbd77a5dffac2a007b0f643203611f75
BLAKE2b-256 6dd5cd5a979a56b90d3f5b6876296b7666a175a18907fa7c24984e3f0301f356

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 324cd82c27a2a33e4e512479a34076d2b7f1d72308c2d91f892fa87df8a1a143
MD5 af7ba2126c56a8e1c8617521792f7c91
BLAKE2b-256 9740fb4634b63b74102bfeea9ef4be8060860485e24dc46d8c926999eb1d9303

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6143a0ed6212e7dff89f2de6fb0d952211abb2cc8dda0f67bcb97fbb9a8d549b
MD5 711a1710a59e09ffa54cb7ab2b7f27f0
BLAKE2b-256 06727fe26a70923e6920bdc0a453f7d4729b66af456f658f0a55374b0f904960

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63785bac5f944c178653ca4bb98cb77a40adddefbba590b3b144ece712e4df79
MD5 db7d31bd57d8dc9c997f32e8f2750140
BLAKE2b-256 24563c6af9516893ca119c635760723ffa823e4d01d6d7572e07c047865b6695

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b85f6072f53698bcb583b11252f31c635f637fa52e7ed40fcaa43f27f1a27bde
MD5 b5ad93bd483c9e04628f5b910432840a
BLAKE2b-256 f0ce999aed2ef29eeae9192b719a97df1cfa4a8b724f8086029cb710b4f5fb37

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97520c9e08f1438d69131013f7d6c13f85398dde37e5b73b161a809f9cbab6e9
MD5 4520779a38c65bf60d2554a16e63893a
BLAKE2b-256 60b2570d34b65d020b51f11a84fca9ad8d03a84d40822f2809571b9cba004fed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a808b78fb1ac78b6cf288e4a16e217cde3b1da51e7cdb44763f27193c0f5b754
MD5 1ae8cd465e6474758b067faf50ffc886
BLAKE2b-256 4f4b8e89810d94429028e8793c384b92288196baa9522dca81ef0f8a85245a7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aab512f02a051783c47a2a93fd0045bd3203737700f4e7bc6bed239fa1a40748
MD5 544c66108c8cf49ce2c64911221ea3c5
BLAKE2b-256 0778e9dd516f9e2f21b7b6c0ca84c49e8ae030ade48e9c60b02476302d52457f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ce93db5062a2ae66d0e8824f46cff56aada691d139dbd468d25e3a50d9b8b90
MD5 317e4c79fa74d5230ed818993706e8a9
BLAKE2b-256 e4edff4ffb7b88d31cc22dfb96c0b9f06c2f01c7e3b01479c3c9f0b7e0eeca87

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cd948994b254666873ff53124065f3789edd67012d1aeba186c311323c61139
MD5 8924eee0b66572b34033ffa9564e9e16
BLAKE2b-256 758f5ccc1f4566aa5e59a41332ea89985868b45f5bf5b1979b4985aaf1c0d6c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca1391f3fef0fe03e341b70f91ae43a13fb619a00bda2dde562dab9015f59bea
MD5 14db0dd50151d0867c1530d73c30fd8f
BLAKE2b-256 c073f85ae22d7d99b0ab0f89a9b31a1ee75646deb3a68b5942ee1ab764efeb41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 167840ffbb7643c60b9f819758f99578b869d70c85ec48f732f8d8697ec9e588
MD5 59a00a123a3aba8664a9b29216ab2f3f
BLAKE2b-256 7fc20fd0e45a2e146d11dc24ab508dedee4c541bd781bece049f7fa75ec715f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 23befe333408e869b4c98226bcaa38ea9fa3039fe07e1018b9b24a7d7de052fb
MD5 ded31ec8b791e353c3ca546bdeb67901
BLAKE2b-256 487ff9acfac63f566cebb59f8dbd680449a9c4f0341c65d2a7184a9816288d27

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 79.6 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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c47ba52a6b3309c5aceb1d632e24772930e785ac93d671cc6462168a4a436af
MD5 60bdfdbc4e05b8983302eed28a0c8a7f
BLAKE2b-256 3be153e076740aedb982d578a5013a664831449dc1f6005a75bb2a828e40c335

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 73.5 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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e6fbcd5d65782d6e89c4701ec8a81256ded0314a498942864733023ce38036f
MD5 756054436952ab3c2704c7e8d7d2d1fa
BLAKE2b-256 3d4fbc995ab2fc81a7db31ebcf945c23f664df4cb555b7d98dce7128d917623a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 312b82476453e25c018033af2ac2e0ba2dc13c0cd364cb3e9d04511830107b5f
MD5 c37f02aeaf1fc2eedb92e90c81dd1125
BLAKE2b-256 c295e5f370c7375b16aecaecd7396f10c2a4cb2dab3fbdae4e84c31d941ed5a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2ff45c9bc293153c3e1ac7e804b1a125030918b05260db5b222d7430a81168d8
MD5 b91deac8f260f8784052351232c75b86
BLAKE2b-256 2aaa1dae859307285a95d290107de326204d35f923e5206ec21663b186390c27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2cea1caed97a3208f67e8eb175e1ae1fc9dee9cfa376687b159e07ba072f6c77
MD5 763a00fd3c6d01005ee16df0352427ee
BLAKE2b-256 a09236d446443a2b6e321fb9c31c9caf430ff9e95a0f68b181041a1f93be1030

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 308.3 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.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f44d608f1964bf1b98a7325c25a414118767c2ba974d3ceb9b8d1e09ae0cce40
MD5 4ce6ee6f0055a96deeff6641001bd28a
BLAKE2b-256 2c4ca974982c73a69bec399eb5bc54cf5c8be90a67bfb4515f7b592115df8b6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91fd87bfd6467d609ae7130ce2fb60a5f1befe6e839a793a2b52476cee505d98
MD5 6068f6ed2330cecc342a12e2db4d2789
BLAKE2b-256 bf69456532e621db70ecf5e0ef90d7cbd17ae05e4fafa8fee19ef6fcf01ca5ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d82a9ff2408bb496a1b9fa2e5ba7258a159cb3954916692d4bce91b78f1ca0f
MD5 ab7c2b31c03b92874e49b7f3f0b396c5
BLAKE2b-256 7dc71c0a7112bf51617b088dbf64596000d3f8e741b11fffe94ad0d431a05809

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 298415c4188fcf00aa4c80c2133f3e34a960e5b3aeb1303b093941454dc28415
MD5 14fd176f17f6d86e9c56313a4ef2c0e1
BLAKE2b-256 03acd1628e2095d59b84c7acf2c7003cb186f2dd791fc7bfdf5aef5448851381

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b4c99f1d65d5f74169318b40c28e03808cf5cf7cfa3bef28c0c3318505c0c78
MD5 41bbac5388d1ff3e1276ef8351abb26c
BLAKE2b-256 d879daf36d8efaa8a8846c0bd39bc4eed54d7b2719aa86d500dc4b64baba6df7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79733dca29527b5d2da4b7a8b0bfd745320e9642892995d7a6fa647387c6bbb5
MD5 8302fba0a4da6a21747e784b23faa83e
BLAKE2b-256 5a612cfdf45b9050cf58367059245166dba74f5552572c721c53c412d320db56

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 253f150fcfa73c921a45f9a2fb8dcb9bab7b53bc1c75ebf3b06419cecdaa3b13
MD5 00d5055bc498aa0bea57b283b5dc62d4
BLAKE2b-256 11497c32eb85b74deeb15cd90599b57c7402f3067a60fae653b9c5c544af0187

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 becc0288a58ccc5cbbe30acea783b0fe5bfd8effb2645e4e2f79dff7d7b9c64c
MD5 7b37f4fd1027b2aa33be2598cc64625d
BLAKE2b-256 62f70273c82d57432d9e634f88f20fbe4b10733d0e9e1447af18fecf8aca3484

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5b6c1779fea954318d76e9fc994ab17d49e1834e71eb4dece4cfaf3d7156d1b
MD5 d3e96d4c41248ce9720fe29b01304203
BLAKE2b-256 de6f2532c69edf539f723516bfd468889ea57ae860183607454848afdd5e5eac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 037304ad3f33281283d9c74851c79be81a34ddc384bda7dc22c5bff979f04e11
MD5 25f9c13f8f42818e1bd156a1be9b2137
BLAKE2b-256 d43a945341868c29267bd6b56a719a3d63ac392bcecce9a4f0425ff907ab6ab9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.8 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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b4f6c7d84626a803d0e22d3c84ab322f2bced231f14fdb41e5b141bdddb2fc7a
MD5 c151a3fb45f6534c6c1b02c093861cf9
BLAKE2b-256 f6d8c89d3e2eac57cb935a3da93a22c78a7e291254e5bd2bc2e79b00c5ddc492

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 73.5 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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36e314a10692785be0c4e5c1a75d8446b2f62a7a3ce6f2d3c96f45f20c06a20b
MD5 98a08bfdaa57fdefd58a80a032946b37
BLAKE2b-256 6cc99cfce0eb59d7672decaf34453c9cf37b16c7c787761b733ec080ca9c5809

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 618859b854723e4a7345baad3ce3fb61a507af8a033ced3c7e2a26620024de76
MD5 9e687566a41d201edc7e5970133dcd90
BLAKE2b-256 dd71423527ee05c11dcda53bb61bcbe1d204a6363ec27578e80dd3e603e000fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1808a631f056dd059da9646081bbd36d1c2953e6ad847fcab4b860d1c2da4be
MD5 e8a863f27458c822e0a8f183f55a01fb
BLAKE2b-256 5635fb054a10afaf143c4a07775d07eb525ff93b526b9e528fc2557752976380

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 85c458a595410d3dd50c6a7715d890af11d6d0b654abd3558d9df1189314562f
MD5 0dac9f134a076e1220ec5aed7b605891
BLAKE2b-256 3d95b5cf1a5304067d5fa100a328656040487ef4d619dccce9a27dd02271b540

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.5-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 314.3 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.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7e8ab40dfb0805b30e2724e92d68c4fd21acf85878ab8bf11ca1de1cd306878
MD5 7608ff439c1a26f78f6160cf355e7138
BLAKE2b-256 c0990ab3aba62002881ba69f90511e61dad7fa769dd466b14d8f484dec95521e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbc698781c17e85bbff8e477432b1ff8b5621ab8d35c94a999375f0a5276ac3f
MD5 876f905fb380979644a851fdb4f39b09
BLAKE2b-256 a52b6b257ceb2dc6c760bfd1b26604157450858fbad4364845ae79e72f07744b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1925a1d10fc578e2561ce3c03d3196659d17801050dfe3604fcfd1bfe3666366
MD5 231b1cebc4ad36414d329e1281ab8620
BLAKE2b-256 7ef2e21db2f15d181c84ef21d1dce79f3a3e81bf12c0de9b902052d943d677ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 956cad0be2d84fdadbc6f3a3f14208816e2bf4c463c8479c8cbeef34670ecce0
MD5 52c16b276e5b16776b4a935f600d357f
BLAKE2b-256 39aacd07f84028cd3aa5bb1186791e2dd62ce5cb223a9f015a048b1c6cb25263

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dab2d95fc6c17926fd807c391cf4ea221aa48bdf60ee63dd9c8f89ca157e79a
MD5 24367f1067e81e46743c08daedeaea46
BLAKE2b-256 61c563e00a0649562db28e221058855d930d854c415fc9695a871d995e8642c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbff731c23a0d007aa0969a9917fdf45e29c7e5f5e28be4b9033462e97277457
MD5 733c63a69897cd433496269ef1b7658b
BLAKE2b-256 bccbe5514d763f9008cfa52e6afabbed4af27390395dc757835b6c03f49e1031

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d09e466eea79115cb10867d76e2b4bd5ea27fedd914051bf1270691c8be892c
MD5 1c2c360d9e942f22a9f47d8c7a067871
BLAKE2b-256 096b1b0ac40ef9a35c318349c5c669218af881d7e199f1dc33abc8e927b80b4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12610eabe3db23553e54642f14f7fd5c78d60da766321df172e801c0f6cfb45f
MD5 1bec73d6a7cde8bd1105a562dca358fd
BLAKE2b-256 96b797d6b1e8a3accd8f1059faf3b64d14acd8d9e8bc342e92eb2d33e00aaec6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7e2264f9056fd15e9a2a3b646a0ac3746c1f475d465dfb90a30313bb33c15d3
MD5 e0e998627d473d6999270f614d301236
BLAKE2b-256 373d633cb8aae38b92718f97a07efdbc1346110bed1705d681335a2f6ff089a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2c880264521498e2083ecb3f7f6badfcde52a23a8bb684bdef110b3108f4973e
MD5 6e8a07e43b9595979671e64e4b6d730c
BLAKE2b-256 3b850259498cf3462196bee907f6d1aeedca75d5348ae0096f566e9fded51ac4

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