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

(2024-09-03)

Features

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

    Related issues and pull requests on GitHub: #1084.

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

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

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

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

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

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

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

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

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

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

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

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

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

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

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

    Related issues and pull requests on GitHub: #1033.

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

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

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

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

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

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

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

    Related issues and pull requests on GitHub: #981.

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

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

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

    – by @hroncok and @webknjaz

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

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

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1015.

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

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

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

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

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


1.9.4 (2023-12-06)

Bug fixes

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

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

Packaging updates and notes for downstreams

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

    The usage now looks as follows:

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

    (#963)

Contributor-facing changes

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

    This is primarily targeting maintainers. (#960)

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

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

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

    $ python -Im pip install -e .

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

    #961

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

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

    Here’s a usage example:

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

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

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

    $ python -Im pip install -e .

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

    #962

1.9.3 (2023-11-20)

Bug fixes

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

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

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

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

Packaging updates and notes for downstreams

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

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

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

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

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

    Here is how this can be done with pip:

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

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

    The same can be achieved via pypa/build:

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

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

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

Contributor-facing changes

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

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

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

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

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

1.9.2 (2023-04-25)

Bugfixes

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

1.9.1 (2023-04-21)

Bugfixes

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

1.9.0 (2023-04-19)

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

Features

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

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

Bugfixes

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

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

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

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

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

Misc

1.8.2 (2022-12-03)

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

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

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

Improved Documentation

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

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

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

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

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

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

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

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

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

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

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

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

1.6.1 (2020-10-12)

Features

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

  • Provide wheels for Python 3.9. #526

Bugfixes

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

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

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

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

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

Removal

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


1.6.0 (2020-09-23)

Features

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

Bugfixes

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

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

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

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

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

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

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

    #443

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

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

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

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

Bugfixes

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

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

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

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


1.4.2 (2019-12-05)

Features

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


1.4.1 (2019-11-29)

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

1.4.0 (2019-11-29)

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

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

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

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

  • Drop Python 3.5 support

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

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

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

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

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

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

  • Add URL.explicit_port property (#218)

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

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

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

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

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

1.1.1 (2018-02-17)

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

1.1.0 (2018-01-21)

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

1.0.0 (2018-01-15)

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

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

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

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

  • Don’t recode IP zone (#144)

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

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

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

0.17.0 (2017-12-30)

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

0.16.0 (2017-12-07)

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

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

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

0.14.1 (2017-11-13)

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

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

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

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

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

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

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

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

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

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

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

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

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

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

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

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

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

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

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

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

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

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

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

0.7.1 (2016-11-18)

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

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

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

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

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

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

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

0.4.1 (2016-09-28)

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

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

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

0.1.4 (2016-09-09)

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

0.1.3 (2016-09-07)

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

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

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

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yarl-1.9.8rc0.tar.gz (154.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded Python 3

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

yarl-1.9.8rc0-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.8rc0-cp313-cp313-musllinux_1_2_s390x.whl (519.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.9.8rc0-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.8rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.9.8rc0-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.8rc0-cp313-cp313-macosx_11_0_arm64.whl (109.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.8rc0-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.8rc0-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.8rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.8rc0-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.8rc0-cp312-cp312-macosx_11_0_arm64.whl (110.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.8rc0-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.8rc0-cp311-cp311-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.8rc0-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.8rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.8rc0-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.8rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.8rc0-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.8rc0-cp311-cp311-macosx_11_0_arm64.whl (110.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.8rc0-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.8rc0-cp311-cp311-macosx_10_9_universal2.whl (188.4 kB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

yarl-1.9.8rc0-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.8rc0-cp310-cp310-musllinux_1_2_s390x.whl (491.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.8rc0-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.8rc0-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.8rc0-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.8rc0-cp310-cp310-macosx_11_0_arm64.whl (110.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.8rc0-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.8rc0-cp39-cp39-win_amd64.whl (109.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

yarl-1.9.8rc0-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.8rc0-cp38-cp38-musllinux_1_2_s390x.whl (510.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.8rc0-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.8rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.8rc0-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.8rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (460.6 kB view details)

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0.tar.gz
  • Upload date:
  • Size: 154.1 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.8rc0.tar.gz
Algorithm Hash digest
SHA256 22e922072eba34dff2e1684437742d2a2c0ea2d9493816d27b094784ae6ad3e1
MD5 a541f17554f128413b888f9e072640b5
BLAKE2b-256 37a701b6658118e6a4730d22a553f2f682fc3d2875a8c15a611ac9853a673afa

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 5bc63d99a7401ccebc70c29645854674581cca0339ae9bce5b5761cc4a5fd174
MD5 fb52381021b0d334e899a8ea35418a30
BLAKE2b-256 a67982af392c3f60f7e33b1384e2118a829210e9210db3262ccac49d175b2d7f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f50be9b1b709ffa763c602ff515db1f2486282fc98364c9ac84cece607ff7e88
MD5 87c94b24ae71ef341ba187d1227e0195
BLAKE2b-256 af4afb086919df0d82a5caa37a78431433b91f4f455986d00e95f48a93b289fd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 483.2 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.8rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 42dd2b0746cd6ffac7bfc8b90b1901faec4bcb997cd0580c425a5acf3e8669a0
MD5 caa9f205da627c60436ada53dacb6e0a
BLAKE2b-256 31c1b30762a4833e17aa5b870bcaefbef36110f3294a06a9c0ea37c36cf4f587

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b4a8dc0e0242b32a6398ec7755be1248f2379e875283089d5cdd13639cd8d75
MD5 568d13a8209576280e300539a8f1b63e
BLAKE2b-256 4447f60983ed6996c8e5ddd46396c6c61981e5ba2f3c3091287a70b0dd930868

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 76fc26ee73726b7f31eab8b35d9af6cceedd64fb43ba462f4378dcae54ccfdb2
MD5 ac7235c5a4d5d69b5fc6a47f260a3055
BLAKE2b-256 315cc214dd6d69c88cf3b6b91990e18635dbf62584947f5492c8616301709d25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9448c56192461de61671f30d1d75f4fb661dd5e3c1ac58af7cbab1e452981718
MD5 84a805d3b11c9b3ed767f2bb0f2effa4
BLAKE2b-256 7613adfab5161d27ee5278b14a48b0344f2504f9fbeaa5e3e89f671126bb0a5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1d2a0c1c3725a725eb2b5ac6000333843d96c758f8e4c1c27a77998f5b53149
MD5 e2787d6b22ebbad7b4465d981db1c640
BLAKE2b-256 aaea407e6d71fb7ccb2371372e391bc26ec6ac1632708015944e1cbf208b4ff3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29c5649214d443882e1756480a5d14be6fab7b2ed22fd686d74f2aeb2f3021ca
MD5 928f2766b2798c7ff65d5d3b348d49a8
BLAKE2b-256 f3656eb9f3f952b369ce471dd7380f6f5097bf1c9c87352cf3a56380b7feb04d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d070c3ab3a1b963c14692abe3e9956f62276a8f38799edd52e1cc87f1292ab7d
MD5 59f5785642ab901f724bc4453c2f244a
BLAKE2b-256 20a50b5f3e56cfae944e7b5a4feee56385d1be4cd8df539e9a24ba8ac26524ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87406de3fe6b0bd47143ef84654cb8c6f82fe2177ce34fe13c87332a1c141ab1
MD5 b7efe7fe0ff2632d7c099c43f5274f2c
BLAKE2b-256 0cf69ce35b28f009ee1f7f64d4a52043bc35c81d85d6e87d81ef4c0bb9f747c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf04119684a0ea72362b7a81a703976bdbecf3cec15ce4ff8506079fb0bb13e8
MD5 ff32d1a897ef2dd584cc755a745f3518
BLAKE2b-256 36b07b2dee8b562ddc0a4215c463f55472952d310f3b182b0e992b6407bd9cec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c43ac5852c2eb0b1a995085304e2e74088272cc45a7f69f2532202cbb4c0999
MD5 7da6fee4b8fc7ab830084e2ed13b6f66
BLAKE2b-256 746cd738399d549744ed489a0c48e2ebb4de8fb3d45904c3b55d01cc967edd1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c172190df54c3347cfc003f575c4e9e8e1697a965f6933884e17db8838e12f7a
MD5 43cda9799d8805ef7ec77559da2612d1
BLAKE2b-256 99409ffc4b551759d641950aeb4ed8cab1171c99a6b126ef527869dd0bc2aadc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57fc49161af42c094f96cbd9f1a3f22860fa099c4b71a932e76f406f98de6478
MD5 80b50e9514f62c031a9c5bfbb9b693dc
BLAKE2b-256 c24212738f8e09b5048df010c05e0c6012c7500315e47b9307f93ff8f5ff29fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 34929e50d5f1305d0fc1d125170fc1d77991cb5a70944dc3618063f1c5b287fa
MD5 f754a8f278b9b29ccb15e747c48f5ac4
BLAKE2b-256 a5d9ee3130a685795d9da207aeb6a37c39eb02553b313e92429ea9c80f00fbfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5fe9aaa0dc86de813bb332939dbd999f4d6b8d06e795a8550531417e4f3d18bb
MD5 9d50963a5254dbb26b5b400a2c7aacaa
BLAKE2b-256 611503c44bc0dc0fbfda2fb86f1799a4f1929bbc2c06371ed41ae802ba592a68

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 108.6 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.8rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 de343d94f0b35f4ede2f0a65a5eb966d027b3b097b58425683f51114db101ecd
MD5 5605657d4353524266845fc693651801
BLAKE2b-256 3a53df036158873134888da7a395aa2323c9af7c8d183f9752d90db1c56cb766

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a35b81b51a1c5b8c24400144a334391392216c3a0283be6c7bd62f5a12a8c4c
MD5 cd8b586c7e8b67a798f2fb2525f5db3f
BLAKE2b-256 0b552677bb3c2eda71295eb67113f969a58e41ccd0c0a324cfac8c69e69eaeb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e052d83d62ecdd3488cf5fcb2ee0f5f566513e07c7ff97b9b87823d9edf0a4dd
MD5 7c0a0e93f2aaa98a929d7d6feab36f5e
BLAKE2b-256 5b41cb7623c5dc26742b09a688dd3cda9e06f5315e769d75d8b364a27c83588f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 73075e3e55cbc0a18f97fc5c24ccbaa0d704c9c6ea77d75c476e131b790b3944
MD5 61aa33ccaa2750a65b4539a8a79bbbb4
BLAKE2b-256 8761b07e70449cd8366e01d5523e957e160127f5d8d220231bfd8fffae87c021

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c2b0e8868dc95b8aa619fa027ba2f19222900330d1dd4eb4246245b500cb7799
MD5 ad53ddbc2a4d3604a53c3527b3176735
BLAKE2b-256 c4a25e9a4e12f0b496cf569b04226156692a3ae3950e207c296b556dd22b103e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ebf051cfc058fc3100e8587dc13fc69ab6a88a4297c52221d87535f93a4a97d2
MD5 be52441a0abf690eebd0131c842c226d
BLAKE2b-256 a4a7a029da5dcf70ca63412cf463586b3bcd984260d42d430ca208579a7ae720

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2126bcbc9ddf92556133c0af7e0f6471a8c55d118392a28f2e334ce22720d50e
MD5 cf8d5e037fa226118f910810028fbf82
BLAKE2b-256 574726b74b1c4785ba49ab25caa16731b2b2a4c4686d05c25b8ac010ea934345

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 135fa8ce237f24acb0bb9bc6f1abf0b1e7b87ca8b1e8078fa1ea443de6df896b
MD5 1b4ecb5058cbbd9a837c431028f4880b
BLAKE2b-256 3f795c29624206a1fdf1389ea836108f46c59f0251adbcd0a6bad0014d26b1c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fdc0f92d49ec210d91a1d4d687c72169ad8ebfe572bea7125f867c45d340420
MD5 ad87346cb78060165ba968022295151f
BLAKE2b-256 1974f737b002afd0e7a15fe7d522924d346a219cdead793b3d9bea72d1959561

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7f6d79bd49649e8a54917baf2ab6dc00d54c9d0ec32d3b5a5bbe8fe8be1f81f
MD5 1f9d9ff4d6023e14ce9e5dc8dea3493e
BLAKE2b-256 9848cdfe826797952d89e3331e212f545ff61b5951f555d5c1231936e75af30c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51fd85ee1284781e9a85dd72c419d24383a079b05327944739378c500c5d7ac3
MD5 a4df5846b76008a2be222c3707b0d419
BLAKE2b-256 a0af15c3cd551c086d9383f2c81b99d76141621134dc0ffae8084147db7c829f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f6d8da51024d7ccdfb2a1dc7bc95327b7e2e395f49b9c01d45a0330c5137977
MD5 86b0ed5fa49ba136ff4c341ebba4df07
BLAKE2b-256 641d5f12b2b9584c95a4fb0ba41c78c07588c0532241cbfb2147397e94742a37

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d30f8f41771921661c6779b31ea6d88412bb9e71ffaea8de113b04fb574a72fd
MD5 7fe4b8aa84d8cdca050b5de61db74b63
BLAKE2b-256 ae3bb6830a1efcb093232195f8b9b2df291137f4483489ee30b48aaa5a38881d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78b85423a5d056a294c502e47215102aef07c3c0cb48190a61f046675676af3b
MD5 972b009eceea8b63eccb8f548e58fa03
BLAKE2b-256 ebc842d34209acd187512a2760d0ff6c93a5552985aea5f909942e1c2f799570

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 610338fd37fd403e0b39b459bb7c93c738f207a180b5a3f7505e9121de287e2e
MD5 c30221fa5ec84046360013b82ee8c7f6
BLAKE2b-256 3371033efa8167c328cde63ee306901cb3e5ce90e907dd9c6918bd60d68eaca7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f161366ff1070e44ea8eea03dc4b4cdc1db03a301ff4f3c352d63a7911446983
MD5 fdf84f2148595811ea0b12a0de363662
BLAKE2b-256 2c23013f095019dc43b72f65014329ef042684904062f935126d155acf274a37

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ccc37e4462f57aa3995f3a678a8b07ba20127a44af9066dadaa87943d22dd969
MD5 f9ce920f8f57aef0d27a4fdeb47b85fe
BLAKE2b-256 cb56b092ae3b65ac9f2bac0395d51c2fdc6e1be6a2c3f41adc48d1b17c640b91

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e52ac6b97c5997aefcea65d40bb0aac098a050d812a6fd6dc8f5c045b81990c4
MD5 1943c1dc5447095392d80bd9692ff8ff
BLAKE2b-256 4a02bc778a4cb53978852b4b46341591cb696cf0747b3901eef149315a581e66

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a8fcc14e3f34b774d3accc31bd852292700bfc5d737e25046db2ae6e2c8e2011
MD5 bd37572d9457416f041f2f0a8a3f8c8f
BLAKE2b-256 8a073755de60667ac06378bff92f0cd7ad2e2e96602e8eb0c377614b21fe1592

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c8560ad7c02a458e005f9023bdf134310c4d49b7ae40a8b5ebebb929d02735bb
MD5 f4c1c62e46deb78aaad4b32d0b19788a
BLAKE2b-256 cec7138d2450379ea9e00e98296b5e4211dd5394954b7346f909ecd00ee20f72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7315681798a0051d2e60e0c9e5c37e5c27d6211844e8ca9d1ee8564bda6241a
MD5 4f8319851488c746172d1f47659adae1
BLAKE2b-256 fe1479c5accf74e872c9cba338d7d4abf2f82877a1f1bac9b404409d7b397072

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4812c5161fe2b6102bd20ed9f691d288312e85e371586468a20294733f8352e9
MD5 997a4b4bc0fb69dc1481d6902cd75855
BLAKE2b-256 b379f5686c991aa054186c67a6e93958a41063f459c4ce657eda65d5e25782e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c722cd58bd5443b1dc68279e06107dbe1325a8b961dc4aff3afd7b90fa33d32
MD5 0bc9971d731799d479a0dff424677e90
BLAKE2b-256 c35a2cce7241cee2d049a0abd936d6ee73a9e6833435dff70e0fb33859fda88d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cd2405a48e0d52b3ee9d524ea566eaef7dc50c03a69e5eb47e110ee5e63d13e
MD5 866f5a63fd3bcafde34ce209d27e20fe
BLAKE2b-256 87e75a9d0c349ba2750d42d8161fc358d558b1fdfd492ccacd6319f782197b48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eff7500ee3ec2ab6b85a5f95ba78e1d7fd9429786a231ac3c1e0d724a9cb60fa
MD5 7865e02102beb2f43865232f58e70eeb
BLAKE2b-256 3a74839d68478c6e7ebada76079d7ab5856c8896067b1e1a762e4aae045c6a86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2082f6e2a5585add5218ccb1e742d59e2a54b34a440c1cc29a5e54873383417
MD5 ecbcdb10936716e7eeb5b0e3ea601f1e
BLAKE2b-256 0846dcc6d6990c5519a692f7121e96e5a806add118376e9ce9939ed49441ac90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ffbd1832725ed626b8454069292c56eb365c2af91942a9be39068cd3c3cb7e0
MD5 84e382677c09939409add60464755905
BLAKE2b-256 8ef83758fcbbb126480155b1f496f64b79977c691177b7a14cdcdb092d588489

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5acf87068f0f015287656d6a8c793022f4357f05bb2ee5cd97016b62e30538b1
MD5 9058701a9887622aa73e2cbe19b2c895
BLAKE2b-256 0f4b775bdd470c91f89d2cd097f37a492593235e4a84ada72a7fbd0231af57dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75c70f9a3b04a4229269dbb69d94e65d5a535204c5bb39cc26aa8835a3d9720a
MD5 7383d70aa275f4a1c51ee29938815a6b
BLAKE2b-256 3fb3213f0eb0366fa0cef045d90452ee6c624b12ba7c6602cc30702f6962ec90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e206df52f94d5694bd69faf16ac81c4d6c1199d75653205b1a639c94e9ab5ba4
MD5 a431186d4137a56ff275ede411d89e10
BLAKE2b-256 78a5b6ae90ef10f32cd7d3450d50e3cf834cec7eca5daa69bd7a112d79adf531

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b58e6ae930efff22717543e23fc4508d6f6a0c44311d367ae467497b252164e9
MD5 0af3fd09e45a7f39f16682c366dca798
BLAKE2b-256 224308a8c67bced70c8a41f1ce0c653f43ebee2c07228bc02eee27377e00cc7e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 98.9 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.8rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3dd35ff37b8da139430e1e09a312669be7a19fe34997adbb7c13c0439627cfc
MD5 5e56a2b65d4e81487da7b6207e0624be
BLAKE2b-256 560682b13c76f755b9f7e766be6b6cf0104287051bdb832ca5a5e4886635637c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7311eb49dc5d2d4ffc0dbd1c1613bbd2d57b0a6afe7e8b92e83e1e0a36dae8d
MD5 c0f013edfae6c7a292a3bb1c7e7b9b85
BLAKE2b-256 f4fa36371e186c13f76982ba094f16544dba84de9a681fac1623253c7484fc93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2eabe786f15bd3ce6c26e625393c6e21d13f28c2d8a71ad00fd29bb351cc1ee0
MD5 273ead2891b9e2a3b8221959d7822b14
BLAKE2b-256 52f9dce8d67766d069a6c926cf8ce0ac5b90cf8ba628d902a95c38fe4aa1b2a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f8282aaa3b87e342fe211edfbd662c5d4a4397628a4a77da58fbc1b0269555f
MD5 bb82ab8aed2730f715501dc2dbe0838b
BLAKE2b-256 bbb18f9e5b9c32db86ceca7fcd637add5af949ed3a58b12a1764953211858de8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29ef0819184635016a5b7505b9b55c0cd7f2b5c1ffd207db1a92fe7477763412
MD5 a2645e4c67804c6a1f35f86e1f9c9317
BLAKE2b-256 ac15119181cf8e70e5508d14e8ea9cd28cc02a7ed5a42c4492889985c0448f74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31543a3692a24329a476ad1e3c5d3c615799e4b89c701ccd72c4ef48a6a3c043
MD5 8b5ef28cc16f497789861320365172be
BLAKE2b-256 7d5090bff07c807793021cc2b6708f80ec4092a5fde64cc19f86ccb05fe43292

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b59c1780439f21d672e1a497a901ee1ee5ff593a7714e80d57ea19613a7b694
MD5 55edfd2953c09d87c5a7b59515f28f60
BLAKE2b-256 de0d2e8c8cbb719abc48a0cf8652dd2591ddb68ead6d0fa2c45ba70a0accc6e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c2bfa141ede91d3ce05437569960306c9fe3b36cf389641657ca6e935033401
MD5 30ababef339a5969262c31a078728200
BLAKE2b-256 2b80c8129450fff34e640cd9958ca1e93295d1b2f2c972c13620b6409f067a6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f8005b0baa823779b957ad4dcb1f26c3b920138ab08911f65dddfb2aa0fb8ad
MD5 2973dd3cb3d6c0afee5ac033589fac21
BLAKE2b-256 394f5be1e3509512499a74cf60680f653071f373a7b4c8e6848cb4fbf5197727

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f017242c6f0dbea30babbdeffe09a392e3b2cbf1bd3165f5848e1e75c78b53e
MD5 acae73fdfa045b83012866c7acfc3b34
BLAKE2b-256 626433cbbad34fe4defc5e50506256797bd9e646e34e2b605abbe9f9068e47ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9351e96cb9e67baa2aaa0103a568e64f972af0463682f498943d21739c9958e1
MD5 b9a53c23075b39e40d160770138b0db6
BLAKE2b-256 ab87145e6654910bc1fe0c3d76b6fc4932a0b653c941d869654af9becb128b34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bad2d84cbcae96e3b83540adeeb1e4b9483b05a375d41598a9d992acb5abfd3
MD5 2994aad7c3adf46c95c202e06b08afc2
BLAKE2b-256 17d0629090a6f4bf0d5925f5bc078ab5a720607b4c4144b333888c64f00bb390

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02ed46860d202173ba4290ecadbce14ec3fdf5427bd5ec60153e3d94536cde81
MD5 96668705d4538bb0f156271c1f78b53d
BLAKE2b-256 ef2ffd80e9b01b02f1d5e281222700a1c8f621a5a5ea086f19a5af7fe796dd93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a496dac98e24fb096b518d7a16a64992697c5c3906029f65bb38e849c64362b9
MD5 d25f445343b3db84f945c807c3dc8672
BLAKE2b-256 c81c0c095b4e888adeaaaaef2e39cf4fec9bf676d899ebfeb5857247afbd04af

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 109.4 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.8rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a2fcacc146d3a7f273b40d3054ba3629e90efd447db04470605efe613fc5d06
MD5 4f13e3312cf6bda0370fe802bb2a8f3d
BLAKE2b-256 a488844346d492f2ec3fcb536c05eb4615ba72314bc9ef3e00d56c188d7a5b9d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 55b893f572a98c30aeec4e77b22a834b2bd26272e529e80cdc925e5120de1ade
MD5 27b47adf31ff5b6b9b2e27320a221dd4
BLAKE2b-256 f7f532a6e8d78cfb16e94328dd3d3984a4725338f5118282da3e2896db273038

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b20687c8e02a37d47a5196d0ac36cedbaee11a7058504d4552b2bf23d6236c8
MD5 b778c81eece49071b1574f6f3a2a7fd1
BLAKE2b-256 987fdaf43fa02b8918cfe5f62ed07c29b759413d40f95ffc35907a168eb62d03

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a8299b6f27588c7c35a062118a2cb8c9aba478cf2e65bab1a564272346e6657e
MD5 fa983e0e5fb4cbc1a315d3cd1f290dbc
BLAKE2b-256 ca6c29f9b348401b9eb1c6dbbeddc931d2e1da8790d83310fca1d9c418f171af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ff648251604c3e1ccc82e56e19a38c40355e99435409d6dedd5a0fafc09b426
MD5 1a777fcc167b49f096501ff58d96ad92
BLAKE2b-256 b13b20dc4e6bc1cca82105003249648bc819a9f2f4e3ead77d0f85a95982fcb6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bd26d242481c2c275f169817b3f2b16c59a6bf6a80891a24d257061125a5f1c
MD5 26ebdf05cfac678473641bcc7f66be0c
BLAKE2b-256 470e0512c06afffaedaaf847e60cbf70c8e7b11af337f4b71ae18f02fa939e76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fdbe893ce549768af25b35c847e3e7dbf31525bd404ff2b48bda8903a17338b
MD5 6044d484fb55785fde45f03f54a0b863
BLAKE2b-256 55ea716b5afd4008ce10eb870bbfcd504e06aeb9aee63d17a719274b016d479e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a87a544a6d1357da881afc6e421cc37c1936ba29622b92118f1ea92580aa8cc2
MD5 2aa0573bce5155b10f4fc3066cf70dfa
BLAKE2b-256 74ec814774d2f277f732011c0f00d6d876cf19d7e938a576d7725ee5cb732cd0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c936cbfdbf2772cf662db836267b1fa8ee314ca5a22d6f0f6087872dacb7900
MD5 31308368ea509cecdde6a3aadd5d60ac
BLAKE2b-256 9719f9479e807eb50eed92b17669d93724630fa6a0197bd2ae2c1a0a7d8de8d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f67c9703fe4bce9fce84df735bd5ef40ef955a991ead0589dfe8411b71b6f8d
MD5 93a6937d84ddfb3733dd578b4e759c04
BLAKE2b-256 abe5783ea464757631cfcdc0d4051df8df5faa32a602129591c2da99ef149572

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 811e7f8b10b1c3239b0a1c58e503d77817114d50b98a588424fe173699889a02
MD5 74773b5a5f0bdfb43a20fd47327b350e
BLAKE2b-256 4c15a9728980560c76db59060b193712c62fd5e3ab8c280ffb71d72a0a225043

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75fa24b3de38c23f5cf515b0ea61de2009a24df85dda1a3ea5f831faa8d2ea49
MD5 f383e052fcc4f5d658e1ebde7079f4f5
BLAKE2b-256 9b432c496f732a6d7d1b3a6a2477674ec96c6ec619fd280c2ece7f944a62c735

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c35338dcce6ea8e65344aaab0984c04d7dd49f90b52255ee68d8dbaf21ae36
MD5 c07c169a7100ee1023d7628e1b4fc23c
BLAKE2b-256 f4affd7cddae7531faa0cb26073a009320d75ebba741b46ebc88be18778ec09a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d88d2efbbe92eba67b66f67ae10dfdb58a0e8838ac68288b82718beca6c33fb2
MD5 11ec4eb42182a3de4b7b51b5e7165587
BLAKE2b-256 020d8658947b61258d88630b424347411432bfe942e4f5faa1da04f4e44b336c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 da64bf985e4e79535e6470a15b4b5ee649e81809110681e3fddfadaca91f5ca9
MD5 a59204a8c7ce6eb50196ab6d8e9ba7d3
BLAKE2b-256 ce39c71526f3761c855385af640b8f9a225d4adc92afd0b2a0545771794f16d6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-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.8rc0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e7314923a52aec499330449221494e4a7a98b6ff40d10bdee7d91e69955464cc
MD5 8b3d0f7982c76a98220db8ccdaee1b57
BLAKE2b-256 94589c1a7595c69f37422e73008c78a3e1cd1915d4fcdc49cf71d252083a44c9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.8rc0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 99.9 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.8rc0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2c8bae124def27090b4de32d8f2eb45c8016c69e6a3e470b63a433a88dd19498
MD5 bd48a1b93aeae9dd0123d1eef928305a
BLAKE2b-256 996a5a8e382b3b036b9f43bb1d1591f1b10f8fffc2cf8e601cb8873ac01810ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85daf0567ea4ebbf7570f4dfc21827f76b061cb011413774c80f358b6984a662
MD5 f7d75e9671ccde4372982557f62630d4
BLAKE2b-256 2fe131a2390227a6342a75a312dd9dc200119af9189cf7054c1f58ddb582b8ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e4e9f7c7cdd98d6c3618ec117b2ed925d90b58bf8d491fc2c6b798825927982e
MD5 0d8010506457b68d081ba81bcab57e4a
BLAKE2b-256 05836ae723750125a9a2ef8454d6abc59450d30bd020467efbab78e17a960d2a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 824658893f68d1ab66f5b34f1837917063f09c584bcb86a11b36015937d8497c
MD5 5f73e7a7b5c97392f47921d38f77fdba
BLAKE2b-256 ffe0eef6b09b950de3170979affb17eea2b6e0475784267c7a19276dc16be749

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70c9d03dccc8ea47cb4619d67437f46e50d5edcdab208c7417691f67a9c91c9e
MD5 3888f583d14bb25e716b77fe593462fb
BLAKE2b-256 4443cb69f94fac8d16039d007ff8e07c9f10dbf438c37bdc1498a9833be18dcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 097a33638caf7f59863d338352a5618161580b9711934806033827d022836c0e
MD5 0058a3a98aa482d4a13607bd351d24aa
BLAKE2b-256 f73e66204cb1c5bdfbadf4a3bb291697640a4f1aea65757ebd1a04a4b9412b34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9da64c23d5783140221356d229f21330c859388ffe5ca7c82a3a0b6491080d72
MD5 f50216bfc6a73bb9b314ed075cd9fe7f
BLAKE2b-256 c657d0ec2e3fe31cced8a29b9643511567ed34175ec007e0b756c2aba9c183d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 701e1134f55deb8635684781643a33d00b8b4b3262c69293a815f4a7ac5c73b6
MD5 709f72c7b9771b98d7311556b721fdb3
BLAKE2b-256 e187b1cc0c26d2fa2743097e41b53ae356b68db9bbb73fb72335e5f3a79a7b18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3d465f314ed746833ac75abe414f5c162be219f29070a807838f8bfb4afa056
MD5 478358c823d20895f95c0d9fa60aa607
BLAKE2b-256 21da69928dd3efd7ad0122aca4b49d2712344ba8a0f2ad8032915184ff584d3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c4f2d8d7bd55d83b3f6dbd160195cc0de7929a28ded25c8400782e197baf76
MD5 11e9d362fd2e3737e4e90f2b0e1d0266
BLAKE2b-256 36e2b5e5df00bd188f761dfc2740a38ace84276e796565db2e939e5cfa287922

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65c9bfc7cdfefe8fd3f515741ae046bdc0c85322db11c919931748b94f5a268d
MD5 409f3ce206b1cebb44b9e24aa4902d44
BLAKE2b-256 912fae68fdeccacf67093d87bedcc61ee48d32bd0e59a5e36fafd928760e452b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dce59101d041c53d5e5efcbd9f3aa3c3d0aae7d444fe168ef7def6fc8f79e36
MD5 f62cdfd36dca34420ea81d161bc5aa0a
BLAKE2b-256 d8101fbdd1136dd88a4d1bb25c2984994dfd796de2c652ec263658c5e4a22562

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 090dc73807594126dd760a07427a6fd2071b7ef830d61c2ef4c730c5207725d6
MD5 aa13f04c593766f147c0e604bb2e8978
BLAKE2b-256 d9343143e4592669828f4c0d4a5de1472099e48eec29b14ca1ea5e9c32d1f03f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.8rc0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b0c2fbb255093df76219125d3cfee0ef621e131d5e4845e2ba13f6b600a8607e
MD5 32f81aa84b72f99bfc44983959faf963
BLAKE2b-256 a516666bdcc7ea3c63c918c0560d9dfbaddaaed57ba9c265471b8a3e6e70a79d

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