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.python.org/pypi/furl)

    The library has rich functionality but the furl object is mutable.

    I’m afraid to pass this object into foreign code: who knows if the code will modify my url in a terrible way while I just want to send URL with handy helpers for accessing URL properties.

    furl has other non-obvious tricky things but the main objection is mutability.

  • URLObject (https://pypi.python.org/pypi/URLObject)

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

    But the library doesn’t do any decode/encode transformations leaving the end user to cope with these gory details.

Source code

The project is hosted on GitHub

Please file an issue on the bug tracker if you have found a bug or have some suggestion in order to improve the library.

Discussion list

aio-libs google group: https://groups.google.com/forum/#!forum/aio-libs

Feel free to post your questions and ideas here.

Authors and License

The yarl package is written by Andrew Svetlov.

It’s Apache 2 licensed and freely available.

Changelog

1.9.9

(2024-09-04)

Bug fixes

  • Added missing type on yarl.URL.port() – by @bdraco.

    Related issues and pull requests on GitHub: #1097.


1.9.8

(2024-09-03)

Features

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

    Related issues and pull requests on GitHub: #1084.

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

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

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

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

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

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

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

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

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

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

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

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

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

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

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

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

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

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

    Related issues and pull requests on GitHub: #1033.

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

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

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

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

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

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

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

    Related issues and pull requests on GitHub: #981.

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

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

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

    – by @hroncok and @webknjaz

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

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

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

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

    Related issues and pull requests on GitHub: #1015.

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

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

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

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

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


1.9.4 (2023-12-06)

Bug fixes

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

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

Packaging updates and notes for downstreams

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

    The usage now looks as follows:

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

    (#963)

Contributor-facing changes

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

    This is primarily targeting maintainers. (#960)

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

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

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

    $ python -Im pip install -e .

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

    #961

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

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

    Here’s a usage example:

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

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

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

    $ python -Im pip install -e .

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

    #962

1.9.3 (2023-11-20)

Bug fixes

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

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

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

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

Packaging updates and notes for downstreams

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

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

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

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

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

    Here is how this can be done with pip:

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

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

    The same can be achieved via pypa/build:

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

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

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

Contributor-facing changes

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

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

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

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

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

1.9.2 (2023-04-25)

Bugfixes

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

1.9.1 (2023-04-21)

Bugfixes

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

1.9.0 (2023-04-19)

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

Features

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

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

Bugfixes

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

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

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

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

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

Misc

1.8.2 (2022-12-03)

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

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

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

Improved Documentation

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

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

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

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

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

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

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

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

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

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

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

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

1.6.1 (2020-10-12)

Features

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

  • Provide wheels for Python 3.9. #526

Bugfixes

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

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

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

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

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

Removal

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


1.6.0 (2020-09-23)

Features

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

Bugfixes

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

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

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

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

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

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

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

    #443

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

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

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

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

Bugfixes

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

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

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

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


1.4.2 (2019-12-05)

Features

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


1.4.1 (2019-11-29)

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

1.4.0 (2019-11-29)

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

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

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

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

  • Drop Python 3.5 support

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

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

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

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

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

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

  • Add URL.explicit_port property (#218)

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

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

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

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

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

1.1.1 (2018-02-17)

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

1.1.0 (2018-01-21)

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

1.0.0 (2018-01-15)

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

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

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

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

  • Don’t recode IP zone (#144)

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

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

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

0.17.0 (2017-12-30)

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

0.16.0 (2017-12-07)

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

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

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

0.14.1 (2017-11-13)

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

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

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

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

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

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

  • Process passwords without user names (#95)

0.12.0 (2017-06-26)

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

  • Enable type annotation checks

0.11.0 (2017-06-26)

  • Normalize path (#86)

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

0.10.3 (2017-06-13)

  • Prevent double URL arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#73)

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

0.10.0 (2017-03-14)

  • Added URL.build class method (#58)

  • Added path_qs attribute (#42)

0.9.8 (2017-02-16)

  • Do not quote : in path

0.9.7 (2017-02-16)

  • Load from pickle without _cache (#56)

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

0.9.6 (2017-02-15)

  • Revert backward incompatible change (BaseURL)

0.9.5 (2017-02-14)

  • Fix BaseURL rich comparison support

0.9.4 (2017-02-14)

  • Use BaseURL

0.9.3 (2017-02-14)

  • Added BaseURL

0.9.2 (2017-02-08)

  • Remove debug print

0.9.1 (2017-02-07)

  • Do not lose tail chars (#45)

0.9.0 (2017-02-07)

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

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

  • Fix core dumps (#41)

  • tmpbuf - compiling error (#43)

  • Added URL.update_path() method

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

0.8.1 (2016-12-03)

  • Fix broken aiohttp: revert back quote / unquote.

0.8.0 (2016-12-03)

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

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

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

0.7.1 (2016-11-18)

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

0.7.0 (2016-11-07)

  • Accept int as value for .with_query()

0.6.0 (2016-11-07)

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

  • Properly unquote non-UTF8 strings (#19)

0.5.3 (2016-11-02)

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

0.5.2 (2016-11-02)

  • Inline _encode class method

0.5.1 (2016-11-02)

  • Make URL construction faster by removing extra classmethod calls

0.5.0 (2016-11-02)

  • Add Cython optimization for quoting/unquoting

  • Provide binary wheels

0.4.3 (2016-09-29)

  • Fix typing stubs

0.4.2 (2016-09-29)

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

0.4.1 (2016-09-28)

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

0.4.0 (2016-09-27)

  • Introduce relative() (#16)

0.3.2 (2016-09-27)

  • Typo fixes #15

0.3.1 (2016-09-26)

  • Support sequence of pairs as with_query() parameter

0.3.0 (2016-09-26)

  • Introduce is_default_port()

0.2.1 (2016-09-26)

0.2.0 (2016-09-18)

  • Avoid doubling slashes when joining paths (#13)

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

0.1.4 (2016-09-09)

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

0.1.3 (2016-09-07)

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

  • Allow None for with_query() and with_fragment()

0.1.2 (2016-09-07)

  • Fix links, tune docs theme.

0.1.1 (2016-09-06)

  • Update README, old version used obsolete API

0.1.0 (2016-09-06)

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

0.0.1 (2016-08-30)

  • The first release.

Release history Release notifications | RSS feed

This version

1.9.9

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

Uploaded Source

Built Distributions

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

Uploaded Python 3

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

yarl-1.9.9-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.9-cp313-cp313-musllinux_1_2_s390x.whl (519.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (109.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9-cp312-cp312-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

yarl-1.9.9-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.9-cp312-cp312-musllinux_1_2_s390x.whl (539.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp312-cp312-macosx_11_0_arm64.whl (110.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9-cp311-cp311-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

yarl-1.9.9-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.9-cp311-cp311-musllinux_1_2_s390x.whl (537.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp311-cp311-macosx_11_0_arm64.whl (110.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9-cp310-cp310-win_amd64.whl (108.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

yarl-1.9.9-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.9-cp310-cp310-musllinux_1_2_s390x.whl (491.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp310-cp310-macosx_11_0_arm64.whl (110.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9-cp39-cp39-win_amd64.whl (109.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

yarl-1.9.9-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.9-cp39-cp39-musllinux_1_2_s390x.whl (499.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp39-cp39-macosx_11_0_arm64.whl (112.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9-cp38-cp38-win_amd64.whl (109.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

yarl-1.9.9-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.9-cp38-cp38-musllinux_1_2_s390x.whl (510.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.9.9-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.9-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.9-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.9-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.9-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.9-cp38-cp38-macosx_11_0_arm64.whl (112.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.9-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.9-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.9.tar.gz.

File metadata

  • Download URL: yarl-1.9.9.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.9.tar.gz
Algorithm Hash digest
SHA256 d58a26cbc785a0fb6ad2e733422631c7f45c364a40dbd0cabb9f0dfcdbb4940b
MD5 cd964ca17693d165aad2e3a62292d02c
BLAKE2b-256 656683c99ba8c134f1e0e40df559614f4f9272360e1e9c549003e8c5ff3e4fc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-py3-none-any.whl
Algorithm Hash digest
SHA256 4384fc34c0b1f6d71ddac126652285d4aaf8c6172eb3734c7e1bdc634635b7d9
MD5 3f7c0a62be41be002b0245716ae2ef88
BLAKE2b-256 b7e36d05a021b0acf5e13ecca64be04bd31be63c6131cce31200ace130eacf92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e476b86f9eff02f09193fd2deda16089725d3aeba609158000e0d2b8d5fec3be
MD5 e4a3970ba70611495852f8af4b044327
BLAKE2b-256 0021cceea28bffdb4a20982d3dde2629b1164deabed355fa986de628f16488f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0ad6085a23808109318c2fde9538bce88850a44c42e7e1ca421ec2c3e5d15ffa
MD5 5b0f956484a51f9bb03e731061e37167
BLAKE2b-256 bf93c65aa6782e1f4d4755714ce82bb3fc0ab08dbb37779befd19cf29f44ac62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 604c18c279f3b1959ff94bcda60ab52eb4ec825df5e1388f589930ba61506420
MD5 df892fbe8328db1e2b130c956765ea8f
BLAKE2b-256 9a321cdeacac3d18f50a8b5efac68d3c667c92df4f2b52b06439cfffe1839b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fbc505f9ad1c2d60b1ced4fb8f75ff95afbfa671b276a1f1ca0a56d3d06cf32e
MD5 c576f53ba3faf4fe56bdd962ae2b0682
BLAKE2b-256 832bb2429fed6c6bb2073074a054e13837fbcb3caee82b123136aae1261ca5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1384e4dcb659abc5adbb2f9d0fe9aa6a059fdfa5b87f46106ad54be98a272530
MD5 353336a2edeb5c2dfb95e5cb5d6b954a
BLAKE2b-256 bd58543ccb797cd1216eab26a7068a268209e4b74add15283262f8f5a7396080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7eb3fd1854f87555fc4f44c59c375b4775e088ddc50870c02f633ff03105be9
MD5 8abd139a1444e801e9bb0f9e8c95616f
BLAKE2b-256 4eb47b29f3e29c45e3df85e684cf5808582d371d1c5336568679588271768204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fe175c07ba7a5afcc26d484541440649c3b72d688b6c07b03f0bcacbd2cf3b5
MD5 5337c45bac5de700bc3b56efb750e94a
BLAKE2b-256 e496a987fa922b3293161e7d9f96410468c00b149decedd6217cae24bcf3b06d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 827ab00f66fbdafd2a6f9a45ec3c4a8fe9ce54d60b327aa68aef7af5f3edf35e
MD5 e04ed0f9be73ca5d7ad122243798dad0
BLAKE2b-256 f77bdf49364601b5ed3bd0b515c7f80b0138940686a0e805fc14455409393a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 392c8e83d5028697c14762bce46d544dc01cbcf20ded20872045aae3a195c636
MD5 8b5bb9a299275087249ea93cf0f88123
BLAKE2b-256 f42f748b6ae377395020ebd4b27b6b2dc89ca62984936dbee72abbdad80df49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d84d43d03a0714f4d7eff664eed4a353549c1b393fcc1316f553092a761bd90
MD5 29970e345dc974d968eedbe944bd7424
BLAKE2b-256 fa35e137df71af1811d15e6f6256034a485d9daef2a44a2d9276c1b886494403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b6dfd1f25a5ef1e6d074be97a87f3b0e3b6e2ecd18b7d8ae658e0008b44b6f5
MD5 0a74d1d9a2935072d50197e756594894
BLAKE2b-256 a7fa217a11c6b19ae37745a73d4c6039332c24a0b6023be10911169d67c725c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac9f79aac6d7044b90bf9f01bb133be96f21cef5369cdf68456b49adb00a838e
MD5 202668ee085966c7a612eb88158666c7
BLAKE2b-256 e8653ff94b1c37f0b4202fb8d30bf94953026120deed3391fd4b540a5ba13ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b727ab129e6d516c4743f28cbca0ebf7445ec4164a903370b59bc37fd0e2b87c
MD5 3948d122101ebc3a9441db9a2c48b756
BLAKE2b-256 5babb5fc6c36290c968d6f53f7e520f00a2b649d953c7cc2fcea1015cab1469d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ae01f51e3ff817b2f18eea194f3e57dd2d70fbaccea41f72bbe66769584aefe
MD5 e074dc323d984075ee8fa36de8a93bfa
BLAKE2b-256 7015dbd84517f1d04504ad804f369401cec4c055138e392a738eda5347b294fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dea263b77d6a7ec70a24cd684cf92337359ab2fd83ce99b9911935162573a5b6
MD5 d337384a79b56d06b63dd23cdb4f0e2e
BLAKE2b-256 c86d8bfb7898eb8c80c8bf8e8cc1514332815032a32027b21d8808a054cf3a6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 99139694b62e499e547540462efc66d62355620ef23e3f1b003f3473c6726f72
MD5 24e41882be55d5ad222fd7edf15edcb2
BLAKE2b-256 4c1e722d490a057146d7711cf6c5401a7a8de955718e1cfb30fcb0d3eb86406b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 249e1abdb978eb29b40c5956c4c4e9fd5bf6f594cee7b937122462722fdfd661
MD5 a13da2003ea170ecf658538dc2fc0760
BLAKE2b-256 e4007ff5c8e75b44bd80b63a9fed450b2040615afa19e3569a13eada709e4f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 995c7d7b9c802a27c5c0e24bb2c5e4811c6d14b21644b8f02ffc613d7b7b8297
MD5 9d2aaa3c055ddea7ea251fca26e684b5
BLAKE2b-256 7af1fcdafd6485d468c30ef05c619266306f0093256e506dde381c6c6fb3fb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 573981f4b16ccfef83847b1409588c1d7533767321452c310d9b12289965c062
MD5 70fd57b87f8ffc3df9ddf3097055d50a
BLAKE2b-256 486c3a5b0f0fe2ef6aa49731f902b3b12b5335bf93cea8a900db9656eb7007ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d61b203da3141c6e3504e361588c7921ccb5f2ee2978db1e1b627411a629b339
MD5 45a08d44f5bda3ff8234b3e4cdcf9d1b
BLAKE2b-256 0d4458da0b40b4a37c3b7485fc4a92e267914a63d891e980b1fd745fa16ed502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70f1048e64993142a4d6e7546b0930f399f9c4ccc381b6622b1cb2eba06a848b
MD5 980fbb36c2494522bc8ed45fbe67cf40
BLAKE2b-256 8149fe5b8f26ea18730ef39ff4f273f1be490893d4840689f0cbd9ed091ac557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98ce91e549e23aa548c497e2c49af6a6534d35eab5029e262b6658191c3e5ec2
MD5 b0d9ef66ed37b345f5bdf4a7f96cb309
BLAKE2b-256 c3aff383536206fddd72e8cbe6e04ce4ca9a597f889c00e253da4b2607eb9302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 161e19878551954b44852d4ba437ef9d74445e72a9fd5aef44897d0d8d3b316d
MD5 ea4e00b5d84f88cc8502f5f85bdd06b0
BLAKE2b-256 e1cb7b428d67f9f7960b067e7ce2b393b5d1dd0fdbcb649ea0af5fe9f5432f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9654036bb0c1b65aecbb352f556d29662ae91753acfeac5d63e3ac034bfd084
MD5 6b10dfe3df75a5d6e97295a47a9efe71
BLAKE2b-256 4900be8f2dbe52c4385cb8006e2d4564e68b45b5787d018c216ccc317a5e184a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd82d4553f67b22d149fe1f20185c6a2a8927d9727d0cac47e317f1190c5d96b
MD5 fc1845de472cff7174f8312320a30c60
BLAKE2b-256 7dba53f651d0935be0e002ff6ebfb4457625d34a835eb45dfca663dc27bb65ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ed54f985bf3fd9dd282dcdd1ab4026e6b9bd4cbbcdd95cef5aa7f588bbf558b
MD5 1f93e72f7f158fa88260af46bfda885c
BLAKE2b-256 8923d3ce45c0a5d7004390b7c2adbd48199c1c2a0b07fdbc8c846d7cd33539f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7387809ddc87819c6e8c5168f1fe1249684e62aea1f253e34282348e3b52af9c
MD5 974e1bd813e2aafdc6edbb06feb3c8f5
BLAKE2b-256 39d73d1556cb2f61b8dae4e29e84cba7d2063aed6bb2da722c8c41a561fb70ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ce6d710df44165fa78c56ee2665b927e6f9d11f3e7dd79befb1c41579890ef8
MD5 9cb3bda03475f0bb06458f69b9170ca4
BLAKE2b-256 b5a0efc5a2a323eeabe5f38d31b8af5721d9927f4725009b5929d98897ed5b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d03619326737a50e495cd60e04bc43110e4a34f55f65e3953813dc078c6fe561
MD5 3a8bb5b08ec9cd1afc444526afef126f
BLAKE2b-256 093a5da5c6541e650fa412a953f43a4d9cf7206e2f72bfe805f5032a2939d607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 af4d94a2c2ee22f72bb936e210cedfa05096cb54ded3d1123efb90e2e2290f4e
MD5 e0750beaf7c9943e21b4890b3ddb8b69
BLAKE2b-256 efff0d42aa8dbb35595048aeb2edca896e840313b12133b0d35c6bba430469d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec7ff70bff03dfb1a9abdf47c050d57c2fc13e6218d67ea09fa15abfb87ba26f
MD5 cbe22cb75c263a23bb7087aa27ed96cf
BLAKE2b-256 04246a42a811c4be24cf51f7af8a30f977edd89b763cb5cba23024dc8d8eeee8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 943001da123754a510b8118a46d57c73fe00ac63099ba0cd63ff580002704dd8
MD5 4c1fc38b9e226bcaffb767e3fed860fa
BLAKE2b-256 04fb12e7d425aa51e607cfed870679e6b2494f4c9709ada548be34a0c66d6107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47d31e691ec9a909538b4ebbae8b1170ccccee68cc223803b0322c6807ebb169
MD5 6a0da4b0c1b371e8b2f63ce8f495da0c
BLAKE2b-256 d403a8b7748e66a8b8939abdff1c4040f11cea14b0aa196f147dcc10ac4087dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 28ba2f36cace7e89c70a330bd0e40618e58fd72c71183221b50e7a58ea95d50a
MD5 0526eb370edef171897313ee9bfac393
BLAKE2b-256 faacffa2108ddcb4f70cd98a9172cdca5841fc8c02e3b447e73c3b8c55a7c8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e12e4972c710c591271d092e6565e6fb668dd957eedec244001ef5d3e6ac394d
MD5 b260e0776e8e2518ddd3d1b4a25808c5
BLAKE2b-256 ac110824fcebeb531bd68f31d5fd05212e1ed47da22ecf56c36f6c97b5838058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5991b36f2028190c8c3f1a4e8e9890ee371ec61662facd16d935cd9c1bf96040
MD5 a67f1666572c9d0c3c57e99264006c6d
BLAKE2b-256 d18f2f595bfc45be72f1d625577973245416ac2431bb18e56a6944ce84f0471f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f806c990da324686d2ea037f61079692f099876362654b88facf56022b41452
MD5 e1f3d0f1a4fb6d33c8dc2f1e8bfac3c2
BLAKE2b-256 fef42ffbeae50b1d760428d13d6af2d1e6168cb28637963e513227b086b60a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ef72a7ac3833c8b17ba007b61eb569082c2c29ce84d18ddf4b360b76ca6412
MD5 79d8793f385f94e12ce5ee935f7ec571
BLAKE2b-256 d516d5d76e40e31f1d7b287029569fc7f00821f790bc9d54b70127c859e2f520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f7e260c6e025a0c74f1ad77b1840d1c0ee784b9e8dfbeb72c696f333eab565a
MD5 39d98c33a2d6294165013aafc3315132
BLAKE2b-256 e7cbf918a13f8cde93802aade4cd3bf4d633b47479af894ca52b57858e844a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d1982613016380b32e54ddec0ab937cdfc799d3f6c1c06c37144033219277ef
MD5 0b9f1e186c8db6c089e2ed61a772de07
BLAKE2b-256 4d499fe993cf0e7a0ae0be17e0c8c4a0bebea04d4c7da1131b89c0999fbccdbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6cf7f3eadcd6604d64eed954e7334187b97e19ccfb885d2f511093757dc5623
MD5 6f63196de854075cba95b16d1e8d00fa
BLAKE2b-256 ce037a29d7cd586dbe557b99273269977b8380f0e472389b1b304354d801479b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e6dbc044f5d98160bf9adb89b88cfe8bca410d1a7c40033e2e7a82b66a71276
MD5 3393e5ef8f1c162f0357e5103998cdce
BLAKE2b-256 2dd494385dc1ed55ffc1e05f83c4b3a46f235db4223a8d1f6a74702f242962c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb9b53b33cd653fef934e6567c5d23ca5eefb1e412a6aa8be180586001609087
MD5 44cf2968bc1becf502b97d35938d5818
BLAKE2b-256 357384083941baaeba4e8de0f8f3cf4f0ddfcb0328dbbb895150fdc3fe5aec93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e3cb4420b07a9f5d96d14b20fea67596a96ca4983bb55337f8587f83981e8ad
MD5 0f51a93d549871de72abb50db24506f2
BLAKE2b-256 24c76cd06703dd58ee26e9da353f4a5efbe31a7a58bd9c930a151e8201a36e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a4990a054911d92be8e8370e399df6cd7d8e6f9c005a3752e35da36825cc114a
MD5 78c8bbaa6ed74881497d55c1f955a16d
BLAKE2b-256 2a384a63b336deab65500a576ec9440fc98610a0bd3c975c32d44cc726a6146f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca3e332a01f9bca2ad3a7f51e4d86c97967cc92df7247ad806d88b62a52bf594
MD5 73d98d3e044f1a8d5a9c1c052b30af12
BLAKE2b-256 ffd836ac547bf8b2f69284e6168e5b8e40e53e42d17ac044d4d705414385b949

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2843c48fc52da7536bf43480ed04de4a15381ed689417179d14c10f75c6f814e
MD5 d45ba3063850fddf155e4969c3b439d4
BLAKE2b-256 9b9171c0d2927b10188f4417ce0c552b285172e51499753108bf4980ae05de02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f03ae9b83cafe414b6d36a02767e1d311e524fec7ed3afadfd1ed22d05a5cfd
MD5 29d86640675dcc9294ad3d7d20ee860b
BLAKE2b-256 7e1b83ee680d4fc92249703bea3393dd6d513d722b2b25babd446fc8aa2e970a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7f01cc7aa0de27dd75a9e07467b5e55fcceb7e6982d10e823d1846ea5b68069c
MD5 413b300af62b6ed08e3817fadec483a3
BLAKE2b-256 fa9db234858ac6a76849527f218bff775afcab11bcefbb9978cac5885d2b2efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fd5c078f5df104869e16e5d48b30190839f55b2cf6fee0bc5a0aa8ae9012250f
MD5 21c8cbee747b3460dfed408e354296eb
BLAKE2b-256 be74d7d427c0360f55a0abc80e39cb0801b9c13c08fed6545df36592bbde5488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0a5f76bbb15a03dbe23a6ba5e7a4c3129611351fed24144397db65612aa77c3
MD5 3870063fbfa02d236f294b9528606bf9
BLAKE2b-256 532b6b0b9a86598a366a8b796fc2b17e75b0c2cfdae2d7161b2a15c8ebfc9cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cc4a506a27e24158505767ee4a0ccb011afd0fc26fdc00b6cf1ad568b402ed8
MD5 773a6fa3ca82f19fc5d49ba7c249826d
BLAKE2b-256 d080f51e59a0358703220611d6cf7f7a7bd0d2ede847987d16d7eecb567cc3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c37b94f821cfaa62c78f27235bc6854cc42513209365c0aeb01348135e8d339
MD5 97b75dc866bceaea92fa6a6e0f2d9789
BLAKE2b-256 c4f9e88a14477aca18512ac9e5277e9c369b445d301138d75e5414368b4070dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 759fe2045c03e6bf4a0224335626348a0e474d6499778b4483d0830e6450469c
MD5 dbf55678db9b62b462923bff7bcbc546
BLAKE2b-256 a5fab86e86f72f0a80813880ba999201c2f1fe8a3511f9e613702dc285767b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4c1344979375c3fa4385583b2f6d633745b35c03fd9be0932fc57d367e1c6f4
MD5 3ad447c727ba60d3d6582e3a87136b04
BLAKE2b-256 e200fafebb21582d14a6e903baaee1cffeeb73fc8800c01a26e4ac2f6e636723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef6961a23410832cd4174a21e6af9581e43ee3934396875402c6c9b033aa8dc9
MD5 1b0885eb249209171373e377d6f2eb63
BLAKE2b-256 3d78fe48cca7238748bbb4bb09cc4baabdce46960a4c842310c2b1af5451ea6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fac0e265c7b6ad795dabb59a66b954238cc42e4698fcc23d6b8e0a8bbaf9e99
MD5 cfb512cff6c496cf69e63f5b4bef6477
BLAKE2b-256 33ec6bcb24b1ad948d34bab1eb397966227775e8d6c0cf480ef320bd363aad99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ca7fb99d852370e270c88728e2e3edeebf67733b734af3835f87e8be700b88
MD5 d3c02b30d7d540b444c71dee4eeded5c
BLAKE2b-256 9cd8793f78bb148028186d5b6e5837803f37bc82cf5333724b97f00eddceb299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bbf66d0f0179762d1a2c06e80d2c114cef8432c2874b1446bdae314608e8fbf
MD5 7069ba252e61b2de9509ba64ac5c2893
BLAKE2b-256 92263cef2c0695b6c127acea597097ead09d556bd0fd24350345c065f23c552a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 133b755d23181d2cf580e50710deae62fd6cb8ecb57884d5d22cc1a80939cdd8
MD5 8cea6a95d93047366d224c43a3383db0
BLAKE2b-256 ec84ad548b8e5dbdeaa5d5b087d1c50778aa650b34d061af0bae32ad6e308ed8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f83424adbf4c5bda78f7963f01253b756c2b2d6a0949ca838a838840dea2437
MD5 bdd6b265717529a59face26bea1b74c1
BLAKE2b-256 bc8e4c624d9419b3cdfe689692931e5699e6efc9ed12a6ee2dab4548984f08a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 98efdcdbaf954ae8e084be1345ffd038a27c8f7c842fb7642b58d160752b4823
MD5 de1802a47a0c36da9bf009d40e123f7b
BLAKE2b-256 6ba4b7ddbaf8d4b8e121e77418d6906873720f733820aebe7e1beb3d59462313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cf8b89b2a29a4fe98469f98c8c597bb1a308f1c9392fce0930cfc282b8142b9
MD5 9710d3aa73395eadf16efb34059ea674
BLAKE2b-256 a6bfe6b86356afc86596b2ec06eeffd2c8e8cb45c922a6f8e3352717594335d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 018dd5f6a8371dd4abf553bd996e673f5173d9f8a71566897edeaf279346f55e
MD5 5b91fb8dc11341b26ed89e3478c7dfed
BLAKE2b-256 c7ba55dc9cb24db17416152267e85abae5b184965d96d1b54ee30e002b741e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f398b3f1cb58ab1fb96af1e767fb85f0a56d50e455496175bf008276fba273d2
MD5 9ba65727459735b89e88f13810e5c705
BLAKE2b-256 8e108d0fad19e76794156cb22b881097d4813d35181937811f3c27b8707e69d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24178f95ccd0bb6c740b90d980c4a48535a2fd4912c2dda93e252b8b2d9f7877
MD5 4529cdc3dcc4ebea1425fe05653fcffd
BLAKE2b-256 273b0497e2b9392c265274233addb331d5ec068babfb82ae2e5b9c418f14ef7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01feeab5fece9eceffab2796da37b51d0832e80258cccb32a5be4a05385278df
MD5 efce42da18350e15e90dba25d44ffc62
BLAKE2b-256 75d8d59d0b82c9b27a90b329c8d466ab7ed355fdd6202b58906fe2f4463173a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9ae5ca05a0201bc3db217042664f349b3e81db45e774f10924d09b60cfea3de
MD5 ab6500b1f4c9879b16ba9ccaac8df428
BLAKE2b-256 a66e2b61361979c6d0ff494e2d0e8366b0ad27131efb0464bbeba1c5d76502d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e319c258048e1d1e68f2e5054f4c5043f59605f2b9bbb36452be879dfe4bf3ae
MD5 5f1f5d909f1057ea56a06c3394ed9c20
BLAKE2b-256 df0fd39cf2ba4c79a98e38e4c9689342fdec2ddf0424fa8d852ad2c14d7ee4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 785450c11aceda6a3b5be8022dccf17dfb03b20b4ee5489b1d0ddbac862ab404
MD5 b453b6fdeac90eeef24af9ea02abd9c1
BLAKE2b-256 447b4e591963f5fa395d123efb2cdb002910b7791da574f35b82f76f24a66bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0bc7076693614e2ece788a64c2fad3e5f874ace2ac4f871bcc35709fe552ec1
MD5 a66ace895423fe681d4440592cee0d43
BLAKE2b-256 a28376663e7e7a79f0fb403e44bbee458bd0554ad3e8850478914f04b47bb28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8766bbda365a5e33d395ceaa7e94b82ccf844f401309f7106c13c20248bb7f42
MD5 2df8d7b6def33fcaf162d42a69883de4
BLAKE2b-256 f6f69ce48e81d4dc7130b06f935137c28d33da2c47bfc24636dd5830e337481d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41b1645a5695b6802c545b6696a736738f6935167bc7fe8a886a4aeb4bc57004
MD5 89f874823d3965e5614fcd8b967c7318
BLAKE2b-256 419cd218371abbd113f1b36df9a9f8f2ee3e683f832de159c09d3367e1494d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2010da427b6dc6383e953ecc6c5002e51ce3a8f33ba8cd26f9ebc0541c1323be
MD5 d75a13d4d5ddbbaead5ece4e5d90e4fe
BLAKE2b-256 0fbee8828ff65dbc57dac08cd989939ee1896fdd3fd1b91a2f51680662bc54d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ea9bd8bb9ad6e340e052b6f5af9ce3d6e50416e304b0a4b6ed8378b304acf401
MD5 212c69cbaad09f4d138e1a494ec26a4c
BLAKE2b-256 ed372a4a9da24c54eb4c37f47c531df1145d5990014dc350d5994eab0b5f857c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 93a33f4d0bfb4d64ae462af5962d5f6442f0bf973a8b7af77cfb89db59a59abe
MD5 e3df8772ca739779b57a7ae656360ea8
BLAKE2b-256 c348b3336f53e32a4ea02b2a1f48683b179edf689d5ead580f56d410a3140fc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.9-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.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7815dec325ce59320e2331dec2506859e8148de880c2350bab4955567d6fe569
MD5 e6eac1dd5c15fbcd4715a78fc7e29641
BLAKE2b-256 44e5602118fef97b4ea4910b3501845c073f94fd8759aded5851bf9579946134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19c4ca114cf6b4ff261e43cae7358a57673e1c6aceceeee488b922ee9d8c66e8
MD5 bc3d65ea6f8a133fe9c4312aa799e482
BLAKE2b-256 94baf1e2fcd823d1aa2aa5674281624ddc18671d65a18a75e767aebfdc62ed41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5ccbc555cc577ebe4520d3c803ebc6ffd7cba29e306e05c3f6768d1bd14a59ba
MD5 160b315ac3c81cf5b652fc7cf846ffe2
BLAKE2b-256 a5e87642e8c3f160f138b916de8af26f9ad47795722aa88ebb2af9df29b5d10e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cafcdb8580e570091086af9c8166fd8bafcc0f8eb88df0c86ee40f74e8b47b9a
MD5 653a8720b76a45f776f180a81d22ba07
BLAKE2b-256 d6a5f250b1440230dc0d9ba6fd8449dab5b757bcd999e4a95f86490eaab8fd8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76814a708dedddd09cfb2ea3aa750b10cc2dcd67ef342d6125ff145241e29e52
MD5 571ae13dba41168eca6c4f3d5aaf0509
BLAKE2b-256 471193793e4b3c705710c3ce2533e34b75e5968e2fd2aac14c73264b4cb1f9f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 305386e05778c71ff67226788dd1d174c4f5b4b8f0886508d743eec56d2b7980
MD5 f2fe5059350d940901cd262721c328fd
BLAKE2b-256 5efc7a870f88128983b56d75c1637c8201a849c03f7955cf65556519b21cff85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9686f8a0185a20e67d8d80df558d479d1fe93a79807f6275a7a9b3c33c4ae38e
MD5 549da95041eb601b0a24c04aa17d51c0
BLAKE2b-256 9f5949ef21750630c7fbf7d9f0bb3ea6a99668d84d802edd2050e9e32ecb6968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8ad1ba32966ccec8781f22ef612d4a8e807e8e9c140a792e7d224a41ee30813
MD5 40cb435c5d9aab2879df98030206c153
BLAKE2b-256 f5e0473aabf2efa54ab4c109957a7d94f86672c51bdce449969ca1884a79d2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad1d40f2fff7214ba352f915a10c3bfc07f4b69693be35e3a00271160a487d1b
MD5 2486f44bf2cd3102cc57105ff1a0c201
BLAKE2b-256 09cb90337c449b1b3292b947b2ebef465794efa3ba8d3cd576c46aef9d41a265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d00068b634194e754c6782478d3f882db66be5ecb6a75141c49f1515d317f94
MD5 39256b2e25d98fff0cb1be365dcc44af
BLAKE2b-256 41a01edf1384a35148c2526224c9e03a683c0dc8787d84754af4125836854605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 835a0a3c8f883501e93a60144ba8e228c420ef5afc196d73583699ee475e0cfa
MD5 3d020f7cce7621f1946f95dd2a292e71
BLAKE2b-256 eb704d7384f7a200cde38cba2d0fce3ecdecb7aeb134d49c31933e11c206213d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0295083cd8cd2084c9be79f71be3bd957794aeca0beae2c73207d3d588a0cc16
MD5 cace7e00aa8946bfff91f44211ab969d
BLAKE2b-256 2b70f91a604f1a45dd3155c2916827b7c1c684a5b447e1838afb4fae2d69472d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf840a2b20d2215bd5de6af24f41c9532731db0e9a4a311105e066815a6fddd2
MD5 907e094cde401bc4c3ad174cd22ed9b0
BLAKE2b-256 5095c65d67cf28ccc6bb822748bf635b5cc59ac0dc26722eb166e711daf71844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.9-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aefb612d7543fb9857134fc43b4cfda4a923bfcca9b06d1c6e74606f184f2a4c
MD5 99193885a7ab01d7d1cafe4637e7ae6a
BLAKE2b-256 b4ea10fcacb2288d04dc54703653ff0587b694b468b9ec832cf2f79900cf9f9e

See more details on using hashes here.

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