Skip to main content

Yet another URL library

Project description

yarl

The module provides handy URL class for URL parsing and changing.

https://github.com/aio-libs/yarl/workflows/CI/badge.svg https://codecov.io/gh/aio-libs/yarl/branch/master/graph/badge.svg https://badge.fury.io/py/yarl.svg https://readthedocs.org/projects/yarl/badge/?version=latest https://img.shields.io/pypi/pyversions/yarl.svg Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Introduction

Url is constructed from str:

>>> from yarl import URL
>>> url = URL('https://www.python.org/~guido?arg=1#frag')
>>> url
URL('https://www.python.org/~guido?arg=1#frag')

All url parts: scheme, user, password, host, port, path, query and fragment are accessible by properties:

>>> url.scheme
'https'
>>> url.host
'www.python.org'
>>> url.path
'/~guido'
>>> url.query_string
'arg=1'
>>> url.query
<MultiDictProxy('arg': '1')>
>>> url.fragment
'frag'

All url manipulations produce a new url object:

>>> url = URL('https://www.python.org')
>>> url / 'foo' / 'bar'
URL('https://www.python.org/foo/bar')
>>> url / 'foo' % {'bar': 'baz'}
URL('https://www.python.org/foo?bar=baz')

Strings passed to constructor and modification methods are automatically encoded giving canonical representation as result:

>>> url = URL('https://www.python.org/шлях')
>>> url
URL('https://www.python.org/%D1%88%D0%BB%D1%8F%D1%85')

Regular properties are percent-decoded, use raw_ versions for getting encoded strings:

>>> url.path
'/шлях'

>>> url.raw_path
'/%D1%88%D0%BB%D1%8F%D1%85'

Human readable representation of URL is available as .human_repr():

>>> url.human_repr()
'https://www.python.org/шлях'

For full documentation please read https://yarl.aio-libs.org.

Installation

$ pip install yarl

The library is Python 3 only!

PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install yarl on another operating system (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.8

(2024-09-03)

Features

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

  • Cache parsing of IP Addresses when encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

  • Removed support 3986#section-3.2.3 port normalization when the scheme is not one of http, https, wss, or ws – by @bdraco.

    Support for port normalization was recently added in #1033 and contained code that would do blocking I/O if the scheme was not one of the four listed above. The code has been removed because this library is intended to be safe for usage with asyncio.

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

    The reify implementation from aiohttp was adapted to replace the internal cached_property implementation.

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

  • Reverted 3986 compatible URL.join()() honoring empty segments which was introduced in #1039.

    This change introduced a regression handling query string parameters with joined URLs. The change was reverted to maintain compatibility with the previous behavior.

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

  • Joining URLs with empty segments has been changed to match 3986.

    Previously empty segments would be removed from path, breaking use-cases such as

    URL("https://web.archive.org/web/") / "https://github.com/"

    Now / operation() and URL.joinpath()() keep empty segments, but do not introduce new empty segments. e.g.

    URL("https://example.org/") / ""

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

  • The default protocol ports of well-known URI schemes are now taken into account during the normalization of the URL string representation in accordance with 3986#section-3.2.3.

    Specified ports are removed from the str representation of a ~yarl.URL if the port matches the scheme’s default port – by @commonism.

    Related issues and pull requests on GitHub: #1033.

  • URL.join()() has been changed to match 3986 and align with / operation() and URL.joinpath()() when joining URLs with empty segments. Previously urllib.parse.urljoin was used, which has known issues with empty segments (python/cpython#84774).

    Due to the semantics of URL.join()(), joining an URL with scheme requires making it relative, prefixing with ./.

    >>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    Empty segments are honored in the base as well as the joined part.

    >>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

  • Stopped decoding %2F (/) in URL.path, as this could lead to code incorrectly treating it as a path separator – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

  • On the Contributing docs page, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub: #981.

  • The pre-existing / magic method() has been documented in the API reference – by @commonism.

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

  • A flaw in the logic for copying the project directory into a temporary folder that led to infinite recursion when TMPDIR was set to a project subdirectory path. This was happening in Fedora and its downstream due to the use of pyproject-rpm-macros. It was only reproducible with pip wheel and was not affecting the pyproject-build users.

    – by @hroncok and @webknjaz

    Related issues and pull requests on GitHub: #992, #1014.

  • Support Python 3.13 and publish non-free-threaded wheels

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

  • The CI/CD setup has been updated to test arm64 wheels under macOS 14, except for Python 3.7 that is unsupported in that environment – by @webknjaz.

    Related issues and pull requests on GitHub: #1015.

  • Removed unused type ignores and casts – by @hauntsaninja.

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

  • port, scheme, and raw_host are now cached_property – by @bdraco.

    aiohttp accesses these properties quite often, which cause urllib to build the _hostinfo property every time. port, scheme, and raw_host are now cached properties, which will improve performance.

    Related issues and pull requests on GitHub: #1044, #1058.


1.9.4 (2023-12-06)

Bug fixes

  • Started raising TypeError when a string value is passed into yarl.URL.build() as the port argument – by @commonism.

    Previously the empty string as port would create malformed URLs when rendered as string representations. (#883)

Packaging updates and notes for downstreams

  • The leading -- has been dropped from the PEP 517 in-tree build backend config setting names. --pure-python is now just pure-python – by @webknjaz.

    The usage now looks as follows:

    $ python -m build \
        --config-setting=pure-python=true \
        --config-setting=with-cython-tracing=true

    (#963)

Contributor-facing changes

  • A step-by-step Release Guide guide has been added, describing how to release yarl – by @webknjaz.

    This is primarily targeting maintainers. (#960)

  • Coverage collection has been implemented for the Cython modules – by @webknjaz.

    It will also be reported to Codecov from any non-release CI jobs.

    To measure coverage in a development environment, yarl can be installed in editable mode:

    $ python -Im pip install -e .

    Editable install produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files.

    #961

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @webknjaz.

    This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.

    Here’s a usage example:

    $ python -Im pip install . --config-settings=with-cython-tracing=true

    For editable installs, this setting is on by default. Otherwise, it’s off unless requested explicitly.

    The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:

    $ python -Im pip install -e .

    Alternatively, the YARL_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.

    #962

1.9.3 (2023-11-20)

Bug fixes

  • Stopped dropping trailing slashes in yarl.URL.joinpath() – by @gmacon. (#862, #866)

  • Started accepting string subclasses in yarl.URL.__truediv__() operations (URL / segment) – by @mjpieters. (#871, #884)

  • Fixed the human representation of URLs with square brackets in usernames and passwords – by @mjpieters. (#876, #882)

  • Updated type hints to include URL.missing_port(), URL.__bytes__() and the encoding argument to yarl.URL.joinpath() – by @mjpieters. (#891)

Packaging updates and notes for downstreams

  • Integrated Cython 3 to enable building yarl under Python 3.12 – by @mjpieters. (#829, #881)

  • Declared modern setuptools.build_meta as the PEP 517 build backend in pyproject.toml explicitly – by @webknjaz. (#886)

  • Converted most of the packaging setup into a declarative setup.cfg config – by @webknjaz. (#890)

  • The packaging is replaced from an old-fashioned setup.py to an in-tree PEP 517 build backend – by @webknjaz.

    Whenever the end-users or downstream packagers need to build yarl from source (a Git checkout or an sdist), they may pass a config_settings flag --pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    $ python -m pip install . --config-settings=--pure-python=false

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    $ python -m build --config-setting=--pure-python=false

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it. (#893)

  • Declared Python 3.12 supported officially in the distribution package metadata – by @edgarrmondragon. (#942)

Contributor-facing changes

  • A regression test for no-host URLs was added per #821 and 3986 – by @kenballus. (#821, #822)

  • Started testing yarl against Python 3.12 in CI – by @mjpieters. (#881)

  • All Python 3.12 jobs are now marked as required to pass in CI – by @edgarrmondragon. (#942)

  • MyST is now integrated in Sphinx – by @webknjaz.

    This allows the contributors to author new documents in Markdown when they have difficulties with going straight RST. (#953)

1.9.2 (2023-04-25)

Bugfixes

  • Fix regression with yarl.URL.__truediv__() and absolute URLs with empty paths causing the raw path to lack the leading /. (#854)

1.9.1 (2023-04-21)

Bugfixes

  • Marked tests that fail on older Python patch releases (< 3.7.10, < 3.8.8 and < 3.9.2) as expected to fail due to missing a security fix for CVE-2021-23336. (#850)

1.9.0 (2023-04-19)

This release was never published to PyPI, due to issues with the build process.

Features

  • Added URL.joinpath(*elements), to create a new URL appending multiple path elements. (#704)

  • Made URL.__truediv__()() return NotImplemented if called with an unsupported type — by @michaeljpeters. (#832)

Bugfixes

  • Path normalization for absolute URLs no longer raises a ValueError exception when .. segments would otherwise go beyond the URL path root. (#536)

  • Fixed an issue with update_query() not getting rid of the query when argument is None. (#792)

  • Added some input restrictions on with_port() function to prevent invalid boolean inputs or out of valid port inputs; handled incorrect 0 port representation. (#793)

  • Made yarl.URL.build() raise a TypeError if the host argument is None — by @paulpapacz. (#808)

  • Fixed an issue with update_query() getting rid of the query when the argument is empty but not None. (#845)

Misc

1.8.2 (2022-12-03)

This is the first release that started shipping wheels for Python 3.11.

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

  • Added URL.raw_suffix, URL.suffix, URL.raw_suffixes, URL.suffixes, URL.with_suffix. (#613)

Improved Documentation

  • Fixed broken internal references to yarl.URL.human_repr(). (#665)

  • Fixed broken external references to multidict:index docs. (#665)

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

  • Changed call in with_port() to stop reencoding parts of the URL that were already encoded. (#623)

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

  • Add __bytes__() magic method so that bytes(url) will work and use optimal ASCII encoding. (#582)

  • Started shipping platform-specific arm64 wheels for Apple Silicon. (#622)

  • Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. (#622)

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

  • No longer loose characters when decoding incorrect percent-sequences (like %e2%82%f8). All non-decodable percent-sequences are now preserved. #517

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

  • Provide generated .c files in TarBall distribution. #530

1.6.1 (2020-10-12)

Features

  • Provide wheels for aarch64, i686, ppc64le, s390x architectures on Linux as well as x86_64. #507

  • Provide wheels for Python 3.9. #526

Bugfixes

  • human_repr() now always produces valid representation equivalent to the original URL (if the original URL is valid). #511

  • Fixed requoting a single percent followed by a percent-encoded character in the Cython implementation. #514

  • Fix ValueError when decoding % which is not followed by two hexadecimal digits. #516

  • Fix decoding % followed by a space and hexadecimal digit. #520

  • Fix annotation of with_query()/update_query() methods for key=[val1, val2] case. #528

Removal

  • Drop Python 3.5 support; Python 3.6 is the minimal supported Python version.


1.6.0 (2020-09-23)

Features

  • Allow for int and float subclasses in query, while still denying bool. #492

Bugfixes

  • Do not requote arguments in URL.build(), with_xxx() and in / operator. #502

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

  • Fix including relocated internal yarl._quoting_c C-extension into published PyPI dists. #485

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

  • Allow using mod operator (%) for updating query string (an alias for update_query() method). #435

  • Allow use of sequences such as list and tuple in the values of a mapping such as dict to represent that a key has many values:

    url = URL("http://example.com")
    assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")

    #443

  • Support URL.build() with scheme and path (creates a relative URL). #464

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

  • Support URL authority/raw_authority properties and authority argument of URL.build() method. #478

  • Hide the library implementation details, make the exposed public list very clean. #483

Bugfixes

  • Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+). #409

  • Fix a bug where query component, passed in a form of mapping or sequence, is unquoted in unexpected way. #426

  • Hide Query and QueryVariable type aliases in __init__.pyi, now they are prefixed with underscore. #431

  • Keep IPv6 brackets after updating port/user/password. #451


1.4.2 (2019-12-05)

Features

  • Workaround for missing str.isascii() in Python 3.6 #389


1.4.1 (2019-11-29)

  • Fix regression, make the library work on Python 3.5 and 3.6 again.

1.4.0 (2019-11-29)

  • Distinguish an empty password in URL from a password not provided at all (#262)

  • Fixed annotations for optional parameters of URL.build (#309)

  • Use None as default value of user parameter of URL.build (#309)

  • Enforce building C Accelerated modules when installing from source tarball, use YARL_NO_EXTENSIONS environment variable for falling back to (slower) Pure Python implementation (#329)

  • Drop Python 3.5 support

  • Fix quoting of plus in path by pure python version (#339)

  • Don’t create a new URL if fragment is unchanged (#292)

  • Included in error message the path that produces starting slash forbidden error (#376)

  • Skip slow IDNA encoding for ASCII-only strings (#387)

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

  • An incoming query sequence can have int variables (the same as for Mapping type) (#208)

  • Add URL.explicit_port property (#218)

  • Give a friendlier error when port can’t be converted to int (#168)

  • bool(URL()) now returns False (#272)

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

  • Forbid inheritance, replace __init__ with __new__ (#171)

  • Support PEP-561 (provide type hinting marker) (#182)

1.1.1 (2018-02-17)

  • Fix performance regression: don’t encode empty netloc (#170)

1.1.0 (2018-01-21)

  • Make pure Python quoter consistent with Cython version (#162)

1.0.0 (2018-01-15)

  • Use fast path if quoted string does not need requoting (#154)

  • Speed up quoting/unquoting by _Quoter and _Unquoter classes (#155)

  • Drop yarl.quote and yarl.unquote public functions (#155)

  • Add custom string writer, reuse static buffer if available (#157) Code is 50-80 times faster than Pure Python version (was 4-5 times faster)

  • Don’t recode IP zone (#144)

  • Support encoded=True in yarl.URL.build() (#158)

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

  • Fallback to IDNA 2003 if domain name is not IDNA 2008 compatible (#152)

0.17.0 (2017-12-30)

  • Use IDNA 2008 for domain name processing (#149)

0.16.0 (2017-12-07)

  • Fix raising TypeError by url.query_string() after url.with_query({}) (empty mapping) (#141)

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

  • Restore strict parameter as no-op in quote / unquote

0.14.1 (2017-11-13)

  • Restore strict parameter as no-op for sake of compatibility with aiohttp 2.2

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

  • Fix "ValueError: Unallowed PCT %" when there’s a "%" in the URL (#124)

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

  • Support relative URLs like '?key=value' (#100)

  • Unsafe encoding for QS fixed. Encode ; character in value parameter (#104)

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

  • Properly support paths without leading slash in URL.with_path() (#90)

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

  • Clear query and fragment parts in .with_path() (#85)

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

  • Do not quote or unquote + if not a query string. (#74)

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

  • Percent-encoded pluses in path variables become spaces (#59)

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

  • Allow to quote % in non strict mode (#21)

  • Incorrect parsing of query parameters with %3B (;) inside (#34)

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

  • Added URL.update_query() method (#47)

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

  • Support more verbose error messages in .with_query() (#24)

  • Don’t percent-encode @ and : in path (#32)

  • Don’t expose yarl.quote and yarl.unquote, these functions are part of private API

0.7.1 (2016-11-18)

  • Accept not only str but all classes inherited from str also (#25)

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

  • Explicitly use UTF8 encoding in setup.py (#20)

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

  • Don’t use typing.NamedTuple fields but indexes on URL construction

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

  • Expose quote() and unquote() as public API

0.4.1 (2016-09-28)

  • Support empty values in query ('/path?arg')

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

  • Appending path starting from slash is forbidden (#12)

0.1.4 (2016-09-09)

  • Add kwargs support for with_query() (#10)

0.1.3 (2016-09-07)

  • Document with_query(), with_fragment() and origin()

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

  • The library was deeply refactored, bytes are gone away but all accepted strings are encoded if needed.

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

This version

1.9.8

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

Uploaded Source

Built Distributions

yarl-1.9.8-py3-none-any.whl (35.3 kB view details)

Uploaded Python 3

yarl-1.9.8-cp313-cp313-win_amd64.whl (491.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.9.8-cp313-cp313-win32.whl (483.1 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.9.8-cp313-cp313-musllinux_1_2_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp313-cp313-musllinux_1_2_s390x.whl (519.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp313-cp313-musllinux_1_2_ppc64le.whl (508.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp313-cp313-musllinux_1_2_i686.whl (492.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.9.8-cp313-cp313-musllinux_1_2_aarch64.whl (490.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (502.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (485.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (470.7 kB view details)

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

yarl-1.9.8-cp313-cp313-macosx_11_0_arm64.whl (109.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.9.8-cp313-cp313-macosx_10_13_x86_64.whl (111.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.9.8-cp313-cp313-macosx_10_13_universal2.whl (185.6 kB view details)

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

yarl-1.9.8-cp312-cp312-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.9.8-cp312-cp312-win32.whl (98.7 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.9.8-cp312-cp312-musllinux_1_2_x86_64.whl (524.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp312-cp312-musllinux_1_2_s390x.whl (539.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp312-cp312-musllinux_1_2_ppc64le.whl (528.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp312-cp312-musllinux_1_2_i686.whl (505.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.9.8-cp312-cp312-musllinux_1_2_aarch64.whl (506.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (510.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (521.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (487.5 kB view details)

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

yarl-1.9.8-cp312-cp312-macosx_11_0_arm64.whl (110.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.8-cp312-cp312-macosx_10_9_x86_64.whl (113.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.8-cp312-cp312-macosx_10_9_universal2.whl (188.8 kB view details)

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

yarl-1.9.8-cp311-cp311-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.8-cp311-cp311-win32.whl (98.8 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.8-cp311-cp311-musllinux_1_2_x86_64.whl (519.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp311-cp311-musllinux_1_2_s390x.whl (537.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp311-cp311-musllinux_1_2_ppc64le.whl (533.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp311-cp311-musllinux_1_2_i686.whl (502.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.9.8-cp311-cp311-musllinux_1_2_aarch64.whl (503.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (525.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (489.2 kB view details)

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

yarl-1.9.8-cp311-cp311-macosx_11_0_arm64.whl (110.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.8-cp311-cp311-macosx_10_9_x86_64.whl (112.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.8-cp311-cp311-macosx_10_9_universal2.whl (188.3 kB view details)

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

yarl-1.9.8-cp310-cp310-win_amd64.whl (108.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.8-cp310-cp310-win32.whl (98.8 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.8-cp310-cp310-musllinux_1_2_x86_64.whl (477.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp310-cp310-musllinux_1_2_s390x.whl (491.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp310-cp310-musllinux_1_2_ppc64le.whl (491.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp310-cp310-musllinux_1_2_i686.whl (466.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.9.8-cp310-cp310-musllinux_1_2_aarch64.whl (462.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (480.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (450.8 kB view details)

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

yarl-1.9.8-cp310-cp310-macosx_11_0_arm64.whl (110.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.8-cp310-cp310-macosx_10_9_x86_64.whl (112.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.8-cp310-cp310-macosx_10_9_universal2.whl (188.2 kB view details)

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

yarl-1.9.8-cp39-cp39-win_amd64.whl (109.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.8-cp39-cp39-win32.whl (99.9 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.8-cp39-cp39-musllinux_1_2_x86_64.whl (485.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp39-cp39-musllinux_1_2_s390x.whl (499.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp39-cp39-musllinux_1_2_ppc64le.whl (499.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp39-cp39-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.9.8-cp39-cp39-musllinux_1_2_aarch64.whl (471.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (473.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (457.3 kB view details)

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

yarl-1.9.8-cp39-cp39-macosx_11_0_arm64.whl (112.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.8-cp39-cp39-macosx_10_9_x86_64.whl (114.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.8-cp39-cp39-macosx_10_9_universal2.whl (191.0 kB view details)

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

yarl-1.9.8-cp38-cp38-win_amd64.whl (109.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.8-cp38-cp38-win32.whl (99.8 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.8-cp38-cp38-musllinux_1_2_x86_64.whl (488.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.9.8-cp38-cp38-musllinux_1_2_s390x.whl (510.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.9.8-cp38-cp38-musllinux_1_2_ppc64le.whl (506.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.9.8-cp38-cp38-musllinux_1_2_i686.whl (475.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.9.8-cp38-cp38-musllinux_1_2_aarch64.whl (472.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.9.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (488.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (460.5 kB view details)

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

yarl-1.9.8-cp38-cp38-macosx_11_0_arm64.whl (112.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.8-cp38-cp38-macosx_10_9_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.8-cp38-cp38-macosx_10_9_universal2.whl (192.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8.tar.gz
Algorithm Hash digest
SHA256 3089553548d9ab23152cecb5a71131caaa9e9b16d7fc8196057c374fdc53cc4b
MD5 5b402351928c9ad399995236ccd1ad0a
BLAKE2b-256 0caf2166e47a5b185e7d6b2c9da196803e10feb9cf6994e21527bc0adcd98692

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-py3-none-any.whl
Algorithm Hash digest
SHA256 d1612ce50f23b94897b9ef5eb65b72398a9a83ea990b42825272590f3484dae3
MD5 20d679c524a7de2dae2b9e5ca378f2f6
BLAKE2b-256 8f5d0fd08f57205226e4d6994e564f9fa5a76f0b32d5a94d2fcf1a6976cc488a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21ef75d8a18fa47725b50fcb7ae6d23a51c71a7426cdf7097e52f9e12a995eb6
MD5 38dc7541d8ded40d71d7d5616fcd8a6d
BLAKE2b-256 8ad70abf44ec169d9540b0cc4da7f92143f6a07c10cccf5743293bada9a1371b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f7442a9342aa04ea60b760a8f0d210e269f881eb0660a2000fa1f8cb89820931
MD5 d411d8dc913cdc1bc9d60cfbfb19e8a1
BLAKE2b-256 d0c6df5a4070d14f167d38791e5d624cb9ed905f7938866e823dc343d4875fe8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a562055b5ec6371c307320e8460d16675244e810b20f343371fc52797d23615
MD5 0955e6454df16168ef780dcd0f407c58
BLAKE2b-256 0592295e456a4ebf419aa4bca62e36fe8cb6c843199cd25c42e57869880f1403

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c91b71b0af1fb5454709e34b39e38c975faaa89c0cc8bb744d60300ca710fcd
MD5 ea68f90b8ba038c424ea6041337eb761
BLAKE2b-256 c8b1f7a4b7b788d9ad985241af86e304ff92388d553c7dbf5a6eca6b722cc11e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ce2af144a81883db914636bec646da4dcccfe9db05c2899e7afe90a3d817ffce
MD5 8b1a2e48e02d9fd4d57c3a474d3e6255
BLAKE2b-256 7af3491921bb52872713bd859f5fb2b66012b2182faa6f2a5749b6d57a9fc760

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51476f19fe1296d3efe3770179548f5f4822e5c4ead9f5160ba156a6a9f5272c
MD5 8b9fc8a4126f3e42dc65fa6532dbb1ea
BLAKE2b-256 ac9cd8b090b07139ba5db6fd2f1bfac8669360ca15438c1b4359f04b77ec524f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc5811c1906b38f2a203df1266c6dd11680ca85d610d6ee3701dde262a305520
MD5 4553c5745283bfb23cddc76ba25cc49d
BLAKE2b-256 14429451fbc46e2ce1b32f9df56aaeac9cf85e1512effd2e641670705163c056

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce892a75a2209cf4f7007de21c6f6d607f4b9406ac613a59ad02340f6e933e4
MD5 f57aaf3fb7ad3d41874e6baa2eb87b62
BLAKE2b-256 e32e4cb327a288437b291940daf036635508f77606a16a8b55854d07ec92865c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7de1968a1c2690b86e32e91acf8ed2043c346293f9bbe1704b9f6a481b73bd11
MD5 dca4f40b55631f1e37c8a24da10203cd
BLAKE2b-256 54e51d463a786acefbac6cc03b11bfa993e29966cba0e5641160fe43ee74bb78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be441a73f9f49427906274008bd98384d8ca4655981735281c314fc7c145d256
MD5 d31892a1b523e07971db4f2d8d22b44d
BLAKE2b-256 de8ffcff243f585dc27d85e46014ea2240b7c80bdf4685d788ea638fb881fea4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2501b230e89cad2361719860648f780197812d3be91c7ca6658a097a7e22fc4
MD5 4ca7f520864777439e271e6beeb70d8a
BLAKE2b-256 eee1c421a83ece4a1e9874ad463e42621ed22735d8f68934e3cef4718f41ec14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 405e75bb94b87cc4167eef0e08d6a539f60633229f7043edc2e65c82ef80e874
MD5 aa845e4905efa00e16c843860512ccb7
BLAKE2b-256 d93297ac1caec6c54a969e5276760dc631959859f9b8b437c1119cf8f6914998

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e0649ee7ac354a3e40ee849707140b14a2cd0cd2dc2062fe620458dfe465c8
MD5 01e9cb50ff467a2cb293ef033a9f12f3
BLAKE2b-256 b5655e831e29cfb6ef40839d5830d65acfc95ab913822ce57401e156c955a60d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 50cbf73b6a4b62c3ad633e8920f2791adf485356ef37c9edbd5a1e7de8da2ddc
MD5 29ec4aeca50bd2ddf19f16632724b9b9
BLAKE2b-256 9cbf9beeac346af96aa9c4aa97fdb664c00ee5ae998c1ffb3f75156c013cf342

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cb3d488f049db9522e3a0de50e07bac0c53565acd88a07bc9cf7182fd6890307
MD5 dc39a505b4a935013e4819ade653848e
BLAKE2b-256 a7a8e57440ad44fcdc1c29235d1285ad0a77e97df1c1b0f01258641a3af21c08

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2dc6e941bf53160b44858d1b24767a056cd83166b69fbdd3b2e401856d8932e
MD5 3664692fe69a04793aacb624ebd3eff2
BLAKE2b-256 36ee0134e1926fcddb228f34687a9a265e5f08ce9b9aaff113bc7852af0a6a9a

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5796358c3d6c72b108b570e20ab951463237ec473b6d204da21050feaaaf7dca
MD5 7e0e6247af67fcd2c6bc7ef8a666b75d
BLAKE2b-256 d58a93f49214c5c779e33c7014b46119c66b3e5b20c8d29d646603a5213a9f32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ffb9f1cad56c547aa127e2c315e666ee9838156c8a3b14f37ba545b0167aa5e
MD5 657ebb69b757686193e90a19f8d29f85
BLAKE2b-256 35603d4e17c425cb2f10b751f70aef13959c2a4d9698ec016e578b33ab7e1bf0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4511dd73b6aeda0cc39111839923f1545726d621813c9d13355824fba328dbcf
MD5 172d97f39dc3981ca25c2559cfae3335
BLAKE2b-256 7e96bd3a79888ced6299780b871bb98a391176cc0103c880424ed9c5e8a61d41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 83273ca458c85d7b026c770a86df6e36349e85100bd2cefe6d0ad7167a8f12a6
MD5 4278cf790c2c151d2bdfd5dcca2423c0
BLAKE2b-256 8e1e1594e3696b8ccde7c00d9d0984bc08b7773c1e09d5e745e4fc54bde77c4e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebd98e16ff9948e4d31514c937275017a122b765cb89961dd5d44ecd2cc18140
MD5 e493574ee50ee7c07db35d7ed2d056fe
BLAKE2b-256 d244e6a9af13c6cbfa5f6c5594955df005aa4c912656e547dd031d3b181b41b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c0d2bc2646ae2380bb91b9ddc2eb1e1fa6baef128499e817134d1d50c8b6c56
MD5 437566c20e2fba753748502fdc72bcb9
BLAKE2b-256 a111787bde7b84250d4e6d920533cbc7e8cce25a23a70de526b67706a78124d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f912153a34698994f32cf683d966014b0dd99c73481302d6159bcb3a8303e84
MD5 5ed016ee445b94525da3831e7eb3a240
BLAKE2b-256 26ad3c3b9b66e254609ffad1f1616122a9659e1deca5491a921ea5e2098a3ea5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b341a995673180ed81a1040228a59e0b47ee687e367b1a03d829fa3c0eb4607e
MD5 1622438041e06a8ef6cb06843149de33
BLAKE2b-256 559b2b708f534c2d900ea92c21d7e922db8b8b3f9c9fbae9d2a3564c5f9e5fb6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5950226b128a1610f57c1f756fc611fdbdcb1e6b4497ccb05fce76a38915b07
MD5 1900bb0332dfc4a8b7be88de5580c924
BLAKE2b-256 3d27eb6e72a0bd8020e1f4968b35a07065b70d19ffebc377fa038cdd09cf8bac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db3dd602cbf6613dc1e4a6fbde7a1bee86948e5940086090bb505c2ab959bbdf
MD5 780ca068bccd16410b07e203daab753a
BLAKE2b-256 63ad758dad7f66cd7a851060022934f8bb3a893df477518cd225202a8b8979e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ceab2b16043ae1953863ec240eb918ba1ac40d2aad55225141aac288c606442
MD5 8b4ec34ee07bb8746a9abb38d137b238
BLAKE2b-256 f31fe1f102b17e54bdca75fe3e922fcf84933dc6dd5174373efbb95a64d3fbc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7318736a8ee9de8217d590866dd716fa3c0895e684e2ec6152d945a4ab758043
MD5 03b46f1ee1d645d15e40771a0b3cc22a
BLAKE2b-256 ca00791bd10a9a1b8f2c60a889795a1bcf36b4f371b9a8d4c3a1ebc97c0e5a4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3d1be58e28825a14fb9561733de62fbe95c892febe7d7a9ebcde916c531d603
MD5 d585f01ea11bad8fe3c39c51151bcb67
BLAKE2b-256 df71459b3d1a415f3e9cabb51c4b519796f27e69ddfe3b9f5b6d0d7bc990cda5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b3d373373908e687aa4c8b0666870b0cf65605254ba0819ed8d5af2fc0780496
MD5 0b2ddb15a48b18136878a5a851ffcbf3
BLAKE2b-256 74ca339e45b36d87137fc6172aae2d064eb317a7bd34972eca2d3907a224116f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c810606719683f4ab92127712efe283674d6ed29a627374411c762852913c2dd
MD5 b062fe5847806063da1a90c3b379db96
BLAKE2b-256 d7c80ade4bf255ae3986950075f5fac8caf610c2a3ac931c58c605348976fe0d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ea3a8532ea9fc2eeb6fc3def0c341aaeab7625545844f9c0a15350c17f9f479
MD5 3f983dc3f6bbdc2b9987abacac974522
BLAKE2b-256 6e484b21df35c7f6a60179df8c49c053d96ff3b04a3b0ddaaecf57e23add3e47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3dca0a4e192207f8bb4057725ff95e9a14d53a04728742f2b03692fc91b0a43
MD5 ab8897ab7a00ae26aa5bbb3d7b0be7c7
BLAKE2b-256 514e2db1ccd6beebee6606ba8e26f653e433059b087478f5ef89eee7734becf5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 81fde88456d2cbe005e16aca78ef744f322b3b15184dfe41b5b04f97b46aa5be
MD5 f7f4b852b9c3d9e5325758e607a357a6
BLAKE2b-256 970bfa7b0c132c1945c817bae17fdc7a34bd47008caaa5138d351d7855e8c2b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e89d76b2aa11287f038a37577528c5f62d9385020b795a011f60dfd1b217cf9f
MD5 2987c42d335f1067a755e5abde82020d
BLAKE2b-256 f1b2cb5e3950340f07959193261b2760ea7890ced48b0bab3938d2fb121bf163

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee7c00a1979b3f23c8094dce6d9875453b3cb91b1153d9efaefa6773cf80cdb0
MD5 bc5da16568af01ab5114dfb6ba61fdbf
BLAKE2b-256 fdf1eeb4e88611a5861b156030b73f8302d19df088cf5fc618ffc53b4269705b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30929a10be9a13026fd68377aba3223d633370abb93dadd3932754f3dcf4734a
MD5 ee9d5c550a089c286e8f68bce8d4ae89
BLAKE2b-256 831f662656584acf5591120cf4ce594e333595ab5252b18536642ba81c70df98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c885a81f6c89b0d45fc0dd88e005c77dd8ba1dac421466d0dbb9192ce6d34e1e
MD5 247f392390d697ff0d97aededfbefb8c
BLAKE2b-256 eae596136aee4251622f28f5a2dc0b45663d085c831614586edaca99d2497717

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02fe9809b29a7dc4a27b769a43c556288d949205db54338871a122b64751e0f4
MD5 5ba9c0e6b76e07d6e6dcfa174addba94
BLAKE2b-256 dfc2f03ec0be6c92f2d9eb1071b70925655a82f9ff5876ff3c5fbc9cff94d99a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 178f4ab054f3a5dc84c8091bd7395b6713aac83af893b62259d5eb3f5359ce7f
MD5 1fb35de04842532b7b69cbcca43fdfbd
BLAKE2b-256 af9ce320e10513779912f443aedce0c48c2d5ee6027bdc478686400e7303197e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4a567416bfb2a2b093aa64685aa7b6dfb593888784ef91b16fa6b985cceb951
MD5 a47ba204476d88fedc77acb9d664cdab
BLAKE2b-256 af14a0d7d91c76e973e52b23d879c79368bbdacfd1533f82b527ad27da446156

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99f78f45c8b4c9824e1a37eb0a3ae63ad2dff66434d9620265a4256088be9cda
MD5 afc45ea0f2512f4efdee9b87529b991e
BLAKE2b-256 d24959ac70bbc8fbc05cd7abe0d7cebc659c9300b220c3b0c4e67526eb921645

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22b2db22f72e1cb8a552ae12dfb748167153c7cbf353c62781915b5328bf2561
MD5 70dc72ab9157b5fb97c3b473f3804207
BLAKE2b-256 f5506fe82f59b8833db90790b875cf0b3b372622a114b587972a170bdc8871c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c7c015dc813aa5fe15379f3540d178e3743c0f1cf9e4a4a8bff94bd2832a4d
MD5 93d8117aa36a5fa6021343f3719500ba
BLAKE2b-256 708a65bbf9b08a930bef5af5dd8a6f8046ac607d6d023b29ad1ad69dbba66cd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 986296e65b0312c1da168de4ec1bb054b4a7b0ec26e3f9e8dafc06bbb1385030
MD5 4432ab0833235583d84bf13a27a1db76
BLAKE2b-256 b5cd7cc0b3e2792c2a5d5e03b741a93b54a3ca70161eed9830a06fbc133ec0cf

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f89ade31926b9931bbe29f5c62d4174057e532fb0c72e2e6abdd129fda6a60f3
MD5 1643a45a949eca489b6c9f16ac374613
BLAKE2b-256 a62746033fb5944b91e3d38b4eea67e2d9ff349e97a1b997ba9a48d2c234ac5d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d39ae58a67b64b470021d18a13529d0c58efc5bf057936ec4b29092d4061030
MD5 0424d118310be19eeb08a4577e16635b
BLAKE2b-256 0cb42f17e4221145c7fe5a875f8f01dee8738d86cb33f842440778d07e8293de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a44c0b83d1871e1e1859167a1804143f590f86ac4708380852dca4d8299d8594
MD5 d10289641d2f080ab0ed58237f463d9e
BLAKE2b-256 d7e7e3cb95de60c3cb7b8106a9798351af15f72ad62075b7fb0d8fc663686f09

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2f3e89838acdaf5bbd69383c408d9e119b4e9efbe8a38fa40045b5c966f918e3
MD5 b0a42d4adedf42a5ed1cd20003c0ead7
BLAKE2b-256 a0aa0fe800a8535265ee6ea00e2e6cbb3c2bcb3684d92d75e400f8d3a40e3ef5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 583f48ab25b3906e3716479e8f700c4cc487e44d52766a4ea52b01cb7ea772d6
MD5 ecb1f7a15082ce77baf016e7707ab9df
BLAKE2b-256 faf0f37f93e59332728dc0580b19ce4707f2de7bc90df61b4d3566a2331294f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd91ccded75d080f13ed01a5f5796887916d2e8c0999cd68bcb58f89f9b1c29c
MD5 79c6ddced2ec9563e716c2a6f925de53
BLAKE2b-256 ed7be4dde7421ff7f81cd47c5149de2678c5032b2c6e1fa78fc015b08d63fbd0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b79e031524259b51cdd1ea41f5053491ad3565b9cecd76389c9f705752d14283
MD5 0c1dfb1bf1a3d31f362f83df38ed019e
BLAKE2b-256 065f470e5cf31aec3c9210a0966808ee48d38e673bd637e4e10a4bba78a689c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d54e9880e781a490483200a74f6314fb6cf692a8197ccde93adf32bec95626b
MD5 c873e7a34a6adc577f3e4fde87814a6c
BLAKE2b-256 711153bc8e03822b9221f951de4de3a257539f00249c6860158d2f29bd402221

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71ff7a22355241f89e850afbc8858fb671ba7e2763af32ebbea158d23a84902a
MD5 964b9f65b499ce54f4fba702b66a7a9f
BLAKE2b-256 dc5490e8a96920d067cc8c1d8595a8169d078fdb22b98590e42247766169d28d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5809f8a48c8dab91f708947d358271ef1890c3012d6c45719f49d04af2112057
MD5 6420f9231f51ee71a6cab33b96240dff
BLAKE2b-256 2fde0fb0dcf9611a39c1be526534d12b48ae7c800eaad6f6f68f1c262ec5720e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18097a9e50ea31c61fece83bac8f63263f0c0c16c439bf82ac729c23f3b170e3
MD5 879377bfd1e1c585b55e08cd4288cace
BLAKE2b-256 b27e48065b39403f7963dc29dd977f272c80b10b60c14bb63a828c22d4e92b5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ad8ea6ab27e27821739dfb94fab63284e3a52055e268f04529dc082fd0d59a2
MD5 47acf18a6af94d5ed3b35ea9850b65c7
BLAKE2b-256 c7e84932f3f3bfc5d8443a49cfed77f65aaac48ad6e33e0972fe1f7d675e3eaa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62223670042a219b8e6fbd2c7f35c456278dcd346d3aba3f2c01c9bdec28f37e
MD5 a9d281a000af2b373a7c44def15c11c4
BLAKE2b-256 448845e73050ab853560b47561e2957146f9183931d4c76bf57ea9049bf79619

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7a716aae4fcecadfe4648268d3c194315152715391f4af6fad50d502be122e9
MD5 65314f7b05dd177cfad0f5308d584af0
BLAKE2b-256 d0a9d7685b8022cb3c61a8e2f58b3a8fa35bdd948b6e0a41fcdd6affc4ae998e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 08359dbc3540fafa8972db45d3ef2d61370b4c24b8a028a4301bc5d076eee0e2
MD5 a07e46ae7096ec39df05d72379ad7dc2
BLAKE2b-256 4c3d2e0daa7a4e0413551d8c41898647dda19aacb9ea3692def9351eaa2fd1da

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 588d62a57c7a43b230557728ec9f252b3f81ad073cb5c0ef48d87cd3f8b6ace2
MD5 b95165a8e9726e0ce512ba1e258f108d
BLAKE2b-256 205d9c1787f8b9dc48bc599b6d7b5da7f5cc187f79fbfa5f4b1ada2f4884b003

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 db9305328486539bb7182c15f1ad1ea95dae52245e93a049f2b1d6f04e63674d
MD5 f9359f424e472674a2c484324615f555
BLAKE2b-256 0b54b5be67d401acc769bc1e2a4e085d4fe7cafb0cffefb893cdf8ff8a430284

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3574834e4aaf24e24d12fa4fd53d0b0fd1d70b24a67bed81c44b284377e81d45
MD5 c6f36808290d07007f4072e5961f2128
BLAKE2b-256 44c31a08c18562c0be44aaa18b2a9074675b6af1cf077bd8d3149898c6062293

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d336601d9ff3dc3b12263739ab1add25bdd2345d675f59ad49f72d9a6ccbc865
MD5 bee6c0a1884559540ae98d7df7cf21c8
BLAKE2b-256 93b080ac294332b6defddc76abd76727e289af703e6fd9b1b5c2de51ee9308d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6f4f87a7c97ba77fdc764b893ae4083c74e5857904962a70025ade0cd42bdbaf
MD5 081938b8103e7897ba8ab2e7cd54dd19
BLAKE2b-256 0f6c24c5e872911ad1f52617cdd53e82924b31ebd2555c49f0c06f5e488e5a80

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15fb127bcc19065fd912391a43bc80114635f0062e0465765633ab5d0c7fc3a1
MD5 10784326e3c69abb8aab9ff6db5e9d1f
BLAKE2b-256 c2eca2dc42673da3340c85d7cc6b7ded00d98c68ec6da2b8ff73e3d7ddeb74fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49dd58b79b0fd04e880c90bc570fde68407cc516c58812f0321f5e74c131107c
MD5 2497d432f28fa5b536c6e60d4003e381
BLAKE2b-256 834ef2a2b7ffa5df8b2f9d950e7fa3d744607dbb525eb70a5288cb66d8be63b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ba7c4b50cc0bb4caaa54554613ca13db47a24878a4fc1063e6303494fc67567
MD5 e5072f705d0eff9fb17b2aeb24608e02
BLAKE2b-256 09a50fa47a1a125c1a97844590fd50e0f9a759c5bb2c39494c2fb3711939912e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cce910a1510d60c7eff4bb263b28b9afdcc5f6b85c555e492cfe7548a09e2476
MD5 413cba55175361155d972526406a12ae
BLAKE2b-256 2833ccb19c0e30f96553888deca5405d3cb630f56732dd608c68ace7999b62aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff56e21379824f3e3c39a37083d5ab905168b9483b1c0c563dd92eb2db18b251
MD5 5bbcf4be4d31915ea61313bc19b0ebdd
BLAKE2b-256 873c3f18025aa0f274697105cf359dd09ff886b21e163c0f7cc5321257687868

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c9db466370e8bc3459912850494ad3401f3664ff3a56842f0d4514166f54c9f
MD5 7c5cc5fd98f5c2eb2831c9fe7a8ec2c9
BLAKE2b-256 0413e4c195abc488425d3014a8c18bbff1504cae740c6575cdfbda4be692d360

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b345de5e725b82e9458dc1381d7e28fe7d7ef93491370461dc98283b9dda51e2
MD5 2cfda65de3c40cac6f9c4d23d263eb11
BLAKE2b-256 3684a70a1012b15737e428c9035d7140706a77f45f7efb81a2b206ca91b5c915

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 121bf7d647b3f6481ce1030350c1cc4c43e18758010732a449c71a1784ae793d
MD5 a6511852a5924cecfa2484abf2e285b3
BLAKE2b-256 86a75fb7faed6f21b6f3dc66554216d1eef15f01e15ee91f05ab6f439b33824e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 551c26789acd38c7b90a89a1f262291d9f9a6a677185a83b5781e2a2c4258aec
MD5 3f3aa6af7d0bee422b8ebb6d40428974
BLAKE2b-256 485a0bf2c548ff191bfe801f18d554e2b1946c5d65f6c97270b13ee7cd469e0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 590437f092af08e71521cc302940ef897e969152434c825bb3fb8f308b63a8bb
MD5 75a513a9dd9faa0052f32ba84363a400
BLAKE2b-256 14b789185c7d31afda5047736860a622cc34b9f767a8cdefb8170532f6969e21

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 45992ff8d941a1901c35f2ed90a60cb5fee8705ffadff395db4a5fd164473542
MD5 13b86996b2d0e370782691c894bd0036
BLAKE2b-256 c400e387810a6767e9c58f2056989ab46c371859a6f255ddf5b820ded6616728

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a54f7a63e48156a77a7c0333cefed29ceb004ab683d685a1192b341ac445cb73
MD5 519f109111532bfd39c3813710798069
BLAKE2b-256 c561abc818e00607d43c81f6696c47169eec58d659478cfeeb454c53352bbf0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3346e2f641fcf31cf32c5a394d625e0676aba6fadccc06d35435e475753ed05d
MD5 19740569f509e4dc32b50b1f3a02ee0e
BLAKE2b-256 cc0380d4257371ddd147615d08644218b79374eb0f0182046863f9f38d75f9ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6703deac7bb0dd8b3f0bc3cb6844dab4e74c85c70783ae89bd0b52286ebdc102
MD5 030b8d8fe4ff57a8fd821262c69cd8e0
BLAKE2b-256 4ba0139fd569403288a4182e9b235418673971cc95e6c0f6489e155f72ca46e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 600f734296cb99db1af7e34c0dcf8ec9477072f72c4621677637fdc2273af120
MD5 2b4bad39c8df2db35dcff59bcce47457
BLAKE2b-256 30d3f5644e54151ab0ec1968027dd7a68a2c466b2994b6122168f3a4caa8ac12

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d99011d564f2b5cb4cf1012f9058e08d8d79674332474f7e940131f5952015df
MD5 02a69cd2aaf943abd028841a617b669f
BLAKE2b-256 9d5712911eb325cc501a789c5ba0fd6c48d3e3f4a94de53904b589a64a5f4231

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 497d5fd7dce44b5dcac648c830c99a673d30bc6cd9905b3e255c92c6dc01f537
MD5 7d7495148445258fc04ff3a32f336ed4
BLAKE2b-256 7f6bb611c8f9666d912980426bdf7503e7cf3314423bf7421ccfa79edf5c4820

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39deb5a67b591682e54d1b09b36e79cd608ca27bea1fefed3bcaaa0b05d2b25e
MD5 2f8c2cfb1b302b472a6268e56fbdaf3e
BLAKE2b-256 2b0d7ce8e53fc6d914247ca2e140fdd4313ffe02c54c2550cda66b138b0150f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b001379047de5e03224dc0592f1b0e60738857a9b992d9b636b5050500ecce23
MD5 9ab2ec3dca1dd3f6a12410689bce03a7
BLAKE2b-256 a7af0baeaea1dd6d0d7595cdda3ffb6f81c7a6f619d12a9e8728d09775ecaf3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ac4aa2f2d8253b9a5455d5f0ed45687ea9715b78a563490ddf7954337974cb7
MD5 676addf262df7a782dd3668ca0570e09
BLAKE2b-256 20b20c7d3e52d50018f185a9ce782334a5aeaa11cc9295f828518bcbe4b7e9f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f972fc63a1d6165d1cff650a16a498b0087334f7f9cd7385860c086d009cd49
MD5 94c442cd5d061225675dee1df7076d53
BLAKE2b-256 57df44f8938e2ea88d3bb805fa81e8459fd022e3c74384571ab0b028ef6e0d2a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffd9dd7eac5d36f53fccdf11e98730b7a628561c77f6c2a9e0909d2a304f34d1
MD5 9971c1100400821658e5593cd4207c88
BLAKE2b-256 d0189f88c2b0881d19253a47ae29cb7c403fe51c06b61994e7d0c8e2489a247c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f8c454cf7e4d3762515ed2b5a40cf2feaeb8a8ed1d121f131a6178e16015319
MD5 efa251cf18ceb4a51972a30efc11daaf
BLAKE2b-256 92a5986954603be750f8c8ec4a9bbc843a35ac3ba68cfa5686873910af032f77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f79e65f16413a95d9f7633802a2ee34730b3ba1dd0af82811b377057883c4fb7
MD5 c5cdeba4af520d4d16e7d9a080607572
BLAKE2b-256 670788560b2562ee444b192cabe2b3e3c681dc13754bfbf030579f04df96007e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fd9affa8c18198dfa5a19c63b29ef2a2f35b8efacaf0bdd3e58f974c0ab0108d
MD5 d33468c90f861d3279f1dd44c22f2338
BLAKE2b-256 5be044afca28e710242e386b12abbc1e8d163b012a5307d57d67a6bc97931ecb

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