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

(2024-09-04)

Bug fixes

  • 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

    This change initially appeared in 1.9.5 but was reverted in 1.9.6 to resolve a problem with query string handling.

    Related issues and pull requests on GitHub: #1039, #1082.

Features

  • Added ~yarl.URL.absolute which is now preferred over URL.is_absolute() – by @bdraco.

    Related issues and pull requests on GitHub: #1100.


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

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

Uploaded Source

Built Distributions

yarl-1.9.10-py3-none-any.whl (36.0 kB view details)

Uploaded Python 3

yarl-1.9.10-cp313-cp313-win_amd64.whl (491.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.9.10-cp313-cp313-win32.whl (483.8 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.9.10-cp313-cp313-musllinux_1_2_x86_64.whl (510.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp313-cp313-musllinux_1_2_s390x.whl (520.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl (509.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp313-cp313-musllinux_1_2_i686.whl (493.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.9.10-cp313-cp313-musllinux_1_2_aarch64.whl (491.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (502.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (486.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (471.4 kB view details)

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

yarl-1.9.10-cp313-cp313-macosx_11_0_arm64.whl (110.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.9.10-cp313-cp313-macosx_10_13_x86_64.whl (112.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.9.10-cp313-cp313-macosx_10_13_universal2.whl (186.4 kB view details)

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

yarl-1.9.10-cp312-cp312-win_amd64.whl (109.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.9.10-cp312-cp312-win32.whl (99.4 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.9.10-cp312-cp312-musllinux_1_2_x86_64.whl (525.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp312-cp312-musllinux_1_2_s390x.whl (540.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl (529.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp312-cp312-musllinux_1_2_i686.whl (506.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.9.10-cp312-cp312-musllinux_1_2_aarch64.whl (506.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (521.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (488.2 kB view details)

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

yarl-1.9.10-cp312-cp312-macosx_11_0_arm64.whl (111.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.10-cp312-cp312-macosx_10_9_x86_64.whl (113.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.10-cp312-cp312-macosx_10_9_universal2.whl (189.5 kB view details)

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

yarl-1.9.10-cp311-cp311-win_amd64.whl (109.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.10-cp311-cp311-win32.whl (99.5 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.10-cp311-cp311-musllinux_1_2_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp311-cp311-musllinux_1_2_s390x.whl (538.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl (534.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp311-cp311-musllinux_1_2_i686.whl (502.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.9.10-cp311-cp311-musllinux_1_2_aarch64.whl (504.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (526.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (489.9 kB view details)

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

yarl-1.9.10-cp311-cp311-macosx_11_0_arm64.whl (111.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.10-cp311-cp311-macosx_10_9_x86_64.whl (113.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.10-cp311-cp311-macosx_10_9_universal2.whl (189.1 kB view details)

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

yarl-1.9.10-cp310-cp310-win_amd64.whl (108.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.10-cp310-cp310-win32.whl (99.6 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.10-cp310-cp310-musllinux_1_2_x86_64.whl (477.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp310-cp310-musllinux_1_2_s390x.whl (491.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl (491.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp310-cp310-musllinux_1_2_i686.whl (466.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.9.10-cp310-cp310-musllinux_1_2_aarch64.whl (463.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (481.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (486.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (462.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (451.5 kB view details)

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

yarl-1.9.10-cp310-cp310-macosx_11_0_arm64.whl (111.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.10-cp310-cp310-macosx_10_9_x86_64.whl (113.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.10-cp310-cp310-macosx_10_9_universal2.whl (188.9 kB view details)

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

yarl-1.9.10-cp39-cp39-win_amd64.whl (110.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.10-cp39-cp39-win32.whl (100.6 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.10-cp39-cp39-musllinux_1_2_x86_64.whl (486.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp39-cp39-musllinux_1_2_s390x.whl (499.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp39-cp39-musllinux_1_2_ppc64le.whl (500.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp39-cp39-musllinux_1_2_i686.whl (473.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.9.10-cp39-cp39-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (468.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (458.1 kB view details)

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

yarl-1.9.10-cp39-cp39-macosx_11_0_arm64.whl (112.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.10-cp39-cp39-macosx_10_9_x86_64.whl (114.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.10-cp39-cp39-macosx_10_9_universal2.whl (191.7 kB view details)

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

yarl-1.9.10-cp38-cp38-win_amd64.whl (110.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.10-cp38-cp38-win32.whl (100.6 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.10-cp38-cp38-musllinux_1_2_x86_64.whl (489.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.9.10-cp38-cp38-musllinux_1_2_s390x.whl (510.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.9.10-cp38-cp38-musllinux_1_2_ppc64le.whl (507.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.9.10-cp38-cp38-musllinux_1_2_i686.whl (476.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.9.10-cp38-cp38-musllinux_1_2_aarch64.whl (472.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (470.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (461.2 kB view details)

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

yarl-1.9.10-cp38-cp38-macosx_11_0_arm64.whl (113.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.10-cp38-cp38-macosx_10_9_x86_64.whl (115.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.10-cp38-cp38-macosx_10_9_universal2.whl (192.8 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.9.10.tar.gz
  • Upload date:
  • Size: 155.6 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.10.tar.gz
Algorithm Hash digest
SHA256 f3a76bd93dfb1fffc48123ed266fa085fdfce5766ff61231da3f07c0e3367056
MD5 f5b5ca532a8ce04d1980b8cb38026e0a
BLAKE2b-256 8e3a0e8ed85c3fe2bd84bded117ad8c5d9baac0e54974ad1df43a42e229dbffe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-py3-none-any.whl
  • Upload date:
  • Size: 36.0 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.10-py3-none-any.whl
Algorithm Hash digest
SHA256 6367b8f2e885e0357dd8449a94f6d67480d1b2b7265eb0e54f2b226258f13b4c
MD5 f6b916c9902cf2abbd7ba97325a56d08
BLAKE2b-256 918003470d5990a26f71d1b17c5b34bd3ec27b4bf8bd4d1e04a6a08522703ad1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 491.8 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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a24180a47b0aacdd51403a22b2149627edc5f01cc851fe0dac7a279b6ce123d
MD5 2eb301d8454fa314edf34cabc497f949
BLAKE2b-256 fa8d545192bfca330b3449c6885d93c52484fb08ea4119a0e146ff2b44c47adb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 483.8 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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a0f8e00f618d9e217c080ec87220da519c817a03a3138fe4cead992ec9b5d98b
MD5 7065e916bbd9fad969fda109b3228b35
BLAKE2b-256 024a1467689b170a69b0b10d23d8806e9a6c6357b31d8a106342c2d45cfd8f7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc1ef802088a9a5351e3f00bdd2c504dda5c65d515b8ad72497d6802d6273b71
MD5 ee5f8f886a7f3e8506f6496c1b5f9efc
BLAKE2b-256 8d923942ada8a4d001c466af9cf0bd98b7ff8c734040cdfce38d42f527704ee7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4a80685a0355d12f2cc73fa07f070496802518f0a3d935754d2fecf4ecce9c3b
MD5 b6818cf2b5b0bc4b2757d2b88f8ed4ea
BLAKE2b-256 9d8c1a5413053d629ef98c76e7c47db2bb34785fa10c75db9c49880f2c59d633

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c494cd77b080312ad881bf42ef90d27130a1cfc4d37dadbc2a8aaf03dd026443
MD5 f1b2869591aad5f77f9a03c620e70221
BLAKE2b-256 f6c03eaa9825f2a3efdac43d09dbb50f70cb50a94c8a5c0cff2522ff714a17e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a490845e0ded093ec503a90e236ea2cbd4e5873ec345a616f30f357a87e266d
MD5 b02ab463ddd9f69e599183914f31e2bd
BLAKE2b-256 96ec34edc7537a7b92735d3bd394b6f64b6255d36c6965076b5e13aee3324b7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a5bd28e12bb85f2d8480097c4670bc5cf5f72c23613b0edbea8534d3b007c00
MD5 45a3f3c719ff4adf0660896f2d5fb0b8
BLAKE2b-256 bd93346d732aba3ed4a65b663f245802db185761194036e56e5dbf72a42c1ec7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 562ea9c21d2563af2cf062ceaf4530f6e8ce58e89a243df2eeae933781ea6864
MD5 0dc029df0f4d440d77e539e88e05ec93
BLAKE2b-256 30b5afff93ee09c8e0d948da9f0dc2714744d23648f19c5ebeaded07059128c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ebf1191e47e31405e210e0926d44b110237104f8deca54735b40cb5a2b5f348
MD5 16efd811b5b3b8cc2e2d98f46f19cd25
BLAKE2b-256 3730ba52ad7d4e06ee0a57757a691b97b86f739dc2852527d112d600909ce8e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c47923aada4a2cd85daa810c241f1ba05454f386054946244131ab801920f468
MD5 d10b7d367547c0ba745a16088d0b283f
BLAKE2b-256 69ab4a311fafe715a5fed2c13e696ff6fd8c030502863430ae7f26e016c3414e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baa990d9bcdaf96160347852833bbf5b738ae1d21ce4d676af540984ebdc2b9a
MD5 27191b19734aadac422bdfafdb56ba80
BLAKE2b-256 06ccd68657ebf52629116b8c83ece01c2de2232658b1e2e61fca7cc5b3e90355

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 251d8e6ede8e1f1b6bad8da23d685ab8f79ee8647aabf7b0dc4619c6eb6d433b
MD5 7730b45e3e81d67e278c4ce915bef8c9
BLAKE2b-256 424430a12df7517f681d807527c4c9c4f57198169238fb0d61a0f98260227ec2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee2758c6db892ea27675e6b394a215d7bc88346e4a0952e6f2f789c71ab2d467
MD5 68d386039f98ee8e8409045bfa416fab
BLAKE2b-256 6715455ba0a9b39ad9f2959f10d134a8250c36c60650f9b6b316d644dcb00a46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8318c8ec736dde091e02079ac82a4e3a9d67f6dfd23074dcc1f09b0517ed7660
MD5 90b9e6b11211633d0b20faf69a720db1
BLAKE2b-256 176146b85ce91448549808bed5f5a27b7c0b5d936df5f654e7b930cdb067391d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0efb49c6637197749fa5f7cfb21d8922b82c61d063a7f88227fb5c81c5ea35e7
MD5 226f3b7e0fb374a3c94fe79eed1a5eb3
BLAKE2b-256 85d46f720d327a22c6277638b868075cefdd46d0d4eb5ef47c3dec1d38bbd68b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 109.2 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 77832ed01e7587ebd56fc160a88ba677b9d706d368f78c73404aa04b9f69cbbb
MD5 0ff8e98e460b2b3714b35771606c4e7a
BLAKE2b-256 4da52811a61aa9f5ea43f562969806002f3f70171271f4ffe69bfe762d2b8feb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 99.4 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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 99cbaf5b5072293de38432260eaddc46c84a1008eb48e05366c703680d67c32b
MD5 6e022f9d6de28392c81ba986597d2a79
BLAKE2b-256 ca6e1655a3cc0931c0d04316252e448dc9ef9e0ed9a7bf47a97ed807012320b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c0720f01f94c8d792ed8653a8bde7de143e5d6917ea86dcf51de9d3ba0e3ed
MD5 ed5475b7059b9b57524d0824ec40b6ca
BLAKE2b-256 a4f3c01bfe92cb065c46ab06597c86388b9244d5c0bc731d45d6de5049050f11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0fbafb51e453c325660e7f4eb9e827b268bace2d5a924bcff0247c7d10ddd8d3
MD5 cd82a541c1b4f76203b727631180450c
BLAKE2b-256 2ae52fde8b4c2f1106059afa8c64e9943057a2a9b72f5c014c4f3c9879b09e07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b9384298eba7f7c411c8289311f80075f6a2221690cbd57347239d45bb54f149
MD5 2c61e8d5b729706db6d3f595a9458849
BLAKE2b-256 9752653d4dfcb83e6485b49261237f049a24a63eeebe0c473462e258eba26aef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf4104176a918df0abab01044cb243096b68c707c8da83c57d137530c4289b7e
MD5 a116d3a33bccbe39c73623ba4d090b54
BLAKE2b-256 29b3189bef1fd898c161c1355480944880d16ba64f1581b67e15bf58aef79104

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b33cdb0b98daf968b02f9ed0d729af480d2117c4f8ad307893dc4777ffd8ff8
MD5 0288c4e47140ac6edc0f76d07a413bbc
BLAKE2b-256 2c594b0946ed1946c77b8851c573c5980a2d4282e16bddf3011978de35097b6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 338931f1358501d70d99ed1185b126f627cdce29862a868690ebaa0a1056f6c9
MD5 4e53b16f689c184abd243de8c9e267bf
BLAKE2b-256 f774d35fec6d8b9b2ddd127fea70660189dae160c8523bb0e98570b525c666b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2920c39ddf5f710b6f70d9b6fe178dcd4c3bd0aeb7265d3fcdd97d55b944d664
MD5 f21ec4f74ded47ee9ff50d2d65019ea5
BLAKE2b-256 b676ce2050f50948e200131c5f66ca885669b8b361107fc7fea24c92144557bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1142ad33527aac79209dd9ebf53f2536e01efc728b883605e66bf7688a6b74a
MD5 47543c40e99ca0453d5f855be5f3f4fe
BLAKE2b-256 aebc0c203708e157f7b48e2c9f7737637190e29d8fc84e84722e0acc9153e0bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 400bb873f7e1697830ef276a21d53cd63761b36a726fb9753cd00e7e00547449
MD5 03f3a3ee5ab334d6c12e457cf3a22a4e
BLAKE2b-256 16b2577711a37dcc3872cd3681deb3498bb6f2e6e58a365a037adf49daba54ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d5ffbb8e6ba4cd7c5f9237f3543e2a3878eb2b45cb51579a0f83b3affcdd52d
MD5 8acb65815408888cec27f13678f1e263
BLAKE2b-256 743840c2d4adab6b060a5862a9021f5cbc202babcd5f45a10a1b158639dda453

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec2c1eafd7b5f869fd40831509edebc85489678d8949c61e967f4688630098e1
MD5 35561535d12e87d6a8adfbcbdd1bb0a1
BLAKE2b-256 6f0d2b215bf72d637a3aefe2c9af7001aecc250310faa635706bd310e509a5df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78f1cc410fe6862726bef485a34f16aec24c6a4e1e1342ed2e3718cd3fe7c9ea
MD5 26092caace3752182db88eeb16213ff7
BLAKE2b-256 d7c3f5aff356697841b64a090d390112ddbd824db439e70bf622d5d8ab26201b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 49cf15f65b86b48fd1403d14452d2f213475e763e5b4a67ece1e114f8b5c89ad
MD5 8d0a21af74af099715bebe9f56347e3c
BLAKE2b-256 51615611c54e669766c9e5719298459ba721dc3bb3543e9dc56355f7e255aefb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 109.2 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c48beaecf7edd647e6688ad08bf0b89c88cfe18ea3d9077399e8fc08c9796276
MD5 32d5ba96781226acfc81c49ccc7d7ae2
BLAKE2b-256 1103d9b6fb3f78842ef7094eaf0a9ecfdb342001855d36ecfe35f649916d0b33

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 99.5 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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47ab8355ab667b908cf2a2bdd4edc8b27770fe327f915eafc440c5ea68a3df9c
MD5 3cbdae4abdd7c414e07fe38f02831901
BLAKE2b-256 f46ae563845248024858d0815960d9c72cb0fc78bff033559f5bda640516ee38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30f7b462b498fc1b109d319b77abb63cf74f71546e54785c92a62cfa296148de
MD5 203475e4989868aae821009a64ce47db
BLAKE2b-256 250d5339c59acd7ef8724547e21564cb19977985619d216553a63b22a2c51850

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6366324f622c81b7c806f0a93372fe68e85828fe70e5728be2fe2e1f618d498
MD5 6bd1ee0e063d01016416d4578d34afd4
BLAKE2b-256 0afe7bbb2d6090c5523fb0bb3a50ddf45b7a4537f87790803a837b36e8ffb17a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ba0926703e64a8125054bbbba5d9dd8399465f298cd48338497506684221569
MD5 0f467b4a3d35027341d66e43989967a1
BLAKE2b-256 63ac5f12c33f3765ab066951df873e8c1eb17034ed43d1a14efed353c0500afd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c34c0b6f43f5b3107bd2e881e622585101c53c2c53e694ab9948e5252369628c
MD5 75e77236490d1f671e0eb75defb1afe9
BLAKE2b-256 85fd897435fe394159b25a6975064dcd2be09b3d388f54d89cab2722e65cb8ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 197b01e0dab3beb349a7f7be2cfb0f69979fab128f4fbef0fb655b898c22bc71
MD5 df586c1f192faf11bb00fe22ae408911
BLAKE2b-256 1e615c953b0abd66965a28d39f9eacaf527c251988ccb697b3bcaee27ffacb1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6812f3b67111561226016af7edc5cbd340d455176edbc30e7c9d2c6b70eaae24
MD5 c1d8afa800bb70922aa82f13f6efd367
BLAKE2b-256 17ba8e2acb7947ba4ab0424bbd63800d43810e4f7468f2d2f405a1ccc0ec3160

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ceba7b6ee24db0db6db329d5fe1ed1b8e95225e0343bf2390e66042c661a3c6
MD5 12e7494f4b1d3bdbdf4da68f630bb678
BLAKE2b-256 ec4741bbfb282e57fae77353e419b8d032b4c14bd4a1f806a3c60717de0c735a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb52a9d5286c300c34630f58d4403412bda1cebc4a7881b462a23f8cc5d2476e
MD5 543fc68c2869341faa74374f77eabc3b
BLAKE2b-256 8cc8d00553d3328ce90f0844274d3bee6d6a46696776b75d22b1da4c87bbd479

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f749ae3f9c3d4fbe42fe24bcd7ce81e785683fd144415540598a6f3769c8f52
MD5 cd12e0e2f3dd8e35769f0259d4d029cb
BLAKE2b-256 b6218ad9af68abc318ce5e9f30d04161b22fc9aedaea8ced5595d291e46075c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca7c4ef061b3e47514476ea40970df13a3db8c94db876adc95e3609767ed53b5
MD5 5e9f491074f57480c4fc28b4f18e232b
BLAKE2b-256 16439b05a21c776a9745cb6dad251ab1313e869c012836018e161929eaad71a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f56bd2bdeeb2416cc45236ce10898dc19932d4cc21fd37aa2da0e281112cde16
MD5 fd618ab6e7a8d6fe03de42e4cf8674a2
BLAKE2b-256 29f28a377ede62deca3ca18f567cdce2724529ae31e14403a2f5aeb341bbfb14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 437e969848de7bbb2e34abc93db6ccf307ba4acec708e40b710b17f15e691d30
MD5 9488add26ff4bdf5358469a523c03550
BLAKE2b-256 a58af5581db038b18d165c60c2861d4c9e75a458c49b9a1f7a49cb260a0113c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 411df3ba2b58097e472468dd8a8a45696bb2fb4d8d98249d7ace6571c05a91c3
MD5 ff0966b055b4d67795ca915c774ba615
BLAKE2b-256 970064999aefa7000e92907a713ad7dd6a61ea3baf8c542f5b2e8df41bde83ad

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 108.9 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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 742651d2e53e535ef93cfd338a9d3faaeb5cecb4e216904d4b08ef2b7971f9ac
MD5 019c8fea87f4c3c37b7216ccdc7e6b05
BLAKE2b-256 aae6788469f7179380f232667b6d6b9c494bdbad7e5564caa09c27a3309f8780

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 99.6 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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5be05d6c8980e6ef818a7a789b49a4fd2253068cfd6dff8291030ea1b6002922
MD5 610938132aeed26d1d9bffe3aa9799b0
BLAKE2b-256 b28e11505b8944d183d45dcdc3dc764c4bb6bfdc12ade66c000af946d2527e6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83bb7b9d1d02442b0d6218f6cf4fc748aca6f1a077f1ffef1f73d8adf44f359a
MD5 856dcd08cd8b2f2f730aa35c2068a86d
BLAKE2b-256 3a13cb94367628f37b8837122e96cfc7258bd4879ceea290a57a3c2bd2ab1fda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4f0da5a07def830dacd610675f1821702f252f6b3f8d5a1d5a282bc874497f4c
MD5 f45a1dd269466b46554e49bbaf6357fe
BLAKE2b-256 09f685234f3044692773668124c77d19dd32c10f4d7a26c9eb92236a04a59b58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1f2b93e00243d8d0cedf82c0eaaa5cde27e0e4040013387085a0362ea8068f8d
MD5 b87ddd681cf6c30bb75f6a9ac45e4f8c
BLAKE2b-256 a913b211d59c0d982252731f82d902bce28e0063b1708ea49b0fedce7dd5500d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07354c6cf182fe130ae0392f54d76f864a105134bef88f71f98365d323be7115
MD5 70d13eacabc77957c00e1b3f15205bd3
BLAKE2b-256 987c722e6e9e938468a8a9193be9c3c9bc03734c6a895c6830275bc452419a22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30c9956ea776067dff46aa988899f1218b217469ec6a447d9d0021bd4653ce28
MD5 aae44b96e8d1a046fee7b256dbd057e3
BLAKE2b-256 ab225a261e9fdec7fa94bdd787c9fedb1d4bbd439d9306b65bd1e8e7500ccf59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1045aca1d48c9f614cdcebce5345cd4e8be0b856b608aaa2fcb67ea3c816ff9a
MD5 9d601aa4a00b77f4601ed792be3c2b42
BLAKE2b-256 aaeb7b5b4cd6f360cc742f0c4c183eaff7fe073b32c00fa1cff7311d6b4ce8b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7979df841db760b2ea957a7a05cbcbb29132adafdba4c4e713f7bac9f6c6e1c
MD5 47828055e2a7624c9e04d09f281713ae
BLAKE2b-256 7a8e4491c02bc96617b68481382521f1cf13e01014a4a9a1ad8398094079dfd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 116c1fa600f0afabdb312bf1b95767098c03d5550bae5c648b63aa2a95a84f6c
MD5 d584bf1ec4bdbf20031f333b67019bb8
BLAKE2b-256 007edbe67a202562385164f369394b8144f0a1c5a8c1c4f3936448d10c401a88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b6f7a9e88643d1ccfe7c51eb904c5cf357b85dbe5de6c562724533e4794c45f
MD5 41754d992d7b04c82cbacd606e489460
BLAKE2b-256 17d7a15892532d92cd677d9cff842ef6e299e2f339f6e1be0895fc4c1230453d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec055bf02fe03b6bb06966b80b79ddfc26501a8bcf7213d2c8a4c1a09d6ad6a3
MD5 f36b97056bd4aeb591039165416f2f1b
BLAKE2b-256 e449539a9ccb20fcd16fb91d4d7b3f0a3f8811d6ff0cebf107fa90d96153aa13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 592cb002e7b4a52313d6bcd8196b1f8b9e0b86e3bcac374e3c95375a59cf9456
MD5 7c566215215b1a40fc1d4b61239c7e28
BLAKE2b-256 cd4c150695cd1b95f18cd417c4a311d994365384787386fe5b67df7118280d01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b37f1400f0e6d86cadcfc701c149c6cd8aa8c851cab38813d3d0cb9e1f8e5014
MD5 61117c7c846d484f424f554c7f776918
BLAKE2b-256 f5afdebd9eb53392e36fc7dae400a7e70a94e21dee630958476c1e5416d87786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31cc725911654fe77b4a21b79c4ba08d71bd9074a4cf1f8fcc1aca6b9ece5b29
MD5 5c8bc04130bcb84a25546fdd7845e9a6
BLAKE2b-256 61463bac3e2159190b6ae8de9b69a2fcf67bd2552a3e263e46e6abbb178ea9c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 110.1 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 453784dbe38495749ea3ac00eb96c358d52a360fd54a8e8a901f38b22227c302
MD5 ca25fa451a5e67a38e30b72ecfa1f41a
BLAKE2b-256 19d15496425b74a91549f4e63355f53f804eaf1fb9c251aa8f8f34a1480ed203

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 100.6 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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 410657b3267d5b95a84b1bbdfae03a58fb18b144f3f8e17505bf5df3b7440953
MD5 8c1ea0842b78c70696f54746bcc07077
BLAKE2b-256 1f471ffee84e444f19edee4d3265d0d6fc0e1ff948449154acf94bd1682bec55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bed9ff4834fed52ad8d4716ab1846b2445ed3341f5d376905ea02bb5d3d861df
MD5 479f73c667581b78eaca4ee7b7468379
BLAKE2b-256 f0fc4c4bc0eac3d4436fb00f6800a48f4481c013a6dcd627741ba2363ae529a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dccfee37fb7cda974627de852e88770a5618b4975a269a2ca076b860990b4a8c
MD5 48e239822383e704e263fce93c593483
BLAKE2b-256 964915a9d4bf766f00919d3387e02bb430da50b8e8f04991f6c48054a1bb1b04

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 df831cca0bb7af9494f7e9008a8099c7dda35bb1e540a00fd695889458cde945
MD5 d217d535e779463a4753fa13cae0458d
BLAKE2b-256 c29c1e65ebb18126e16c192e17983aa0a2bde09c70fc0d54df4526ee5cb97789

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7a83d465037cae9a578dbc73b271aaa772e5b18412b1034a4187e3cd3246930
MD5 1081c6d6d199f23f3856330036bf0781
BLAKE2b-256 f3d9e90a64fb773c66a078a3f33997711e9e7c3da3c47f03ab91261ec5c52be9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe487b0399a850c8adf4158972331345541961b8aa17a35f050d6c3707c95965
MD5 e4df6fa8ee2eb27d379f53270f4472db
BLAKE2b-256 9fc03895effb34f063bdb47e955f42d97c2d9dbb9bb697e552b1ae2f518d7354

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bb09fbd303586c96110cac521d6236e12b97d555f0cf5b086d59eaf643c7d75
MD5 35a7fd245c23031230673927fe69a5ee
BLAKE2b-256 c35d7f513b72806a096acdad436ef0326e4168ab786adec73ccb53088686fdaa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d56c0498efc6bd13e9f25a0e67fee5544ae70f776983ac7c01a39694695eb0e2
MD5 567ee616ddb18efa70c2558499f8d965
BLAKE2b-256 2010e6f15f11da25aad1b9e6b6a326ad23dad2f49ef4c745d328f62c5b0de0cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e7190a70a7067da2af6dc325032f07544bfc9fbca4ae471e76e8ace18cf408c
MD5 aefc66d1a15fd1d30c12d722c5dc59a0
BLAKE2b-256 3d7acb72953f11a631746815ee28b42d8638bfa5e915ef0f4386dc0250065e78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f40c88d185300b6d177e08f4b8359354e1ba10b564b2bcd9a14ac3fdb679e2f9
MD5 b892cb3966105df62d3ab19a5645472f
BLAKE2b-256 a1da55d20e121175231d9858a97dac2c7346a25931a21208409ef54107499726

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 892b37b4abaed283c01240a732a384fc239e875b39f3e9c774482e50451142eb
MD5 3ff310f33d496e10b562213708524210
BLAKE2b-256 26ee3cfc46ce91104a609194259c3d670a9e0ceb10e4dc636c2bbf4998f6efba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dd3be4068df64d952dc4488511fcda0809af99596639b5e4cd8f5b797d7f8ce
MD5 52fa2df4712dfe9f7230e349fdef089a
BLAKE2b-256 e9dc30c465c4315dd9ccb97e4e23fb8f7da0357af29245bf55bd2477162471f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a638b73d4037b4f9e52514fec402ca97c98ef7af16909dd5c06254f23d2018e
MD5 1f07c6221a722c2b85e6820a21175ffa
BLAKE2b-256 6b3b0547048bd79ab93dcade3438e4bbb8f5c32037add7f08eb0577e88a666d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 604f8d0e045f7788011b0b44e19f04ce62a3329e6af08a3382b8ec8070798aef
MD5 ceed1b74476f4d315da60b351c74958f
BLAKE2b-256 00116c9bb3ab0b3d5cdfbb49454d141266ccffb6efd849f315e78c1fcde369d3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 110.4 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.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8aafa5ee1970027c11aee1c99999142e76de769bcca8f5364e06eee739d05e5b
MD5 111e587524dd009abb6f6619e29da40a
BLAKE2b-256 e85215c94a00e0d36ffef141c43ed834b5d4c3317f0aa8da2dbc1ef68948ea3e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 100.6 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.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a8ab1274030afb9f802fad41ce143a0971788509e47d187fad4560873938d308
MD5 1b9b2c6e06246443222cc93f39e57d33
BLAKE2b-256 d5ca8f2e7ee91bb8592dfaffa89851aa930503f2c3c31d716f8a1620ae881416

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9d3826d3294cffb30598ecbf7660a45b42add21588a3cbb297f26141cd3ba41
MD5 401f0f12e37955ecbbc30e988f1b9674
BLAKE2b-256 7e691648edab2cfd7509bb9405e2f7a8c13b393e88e8856c1b98e135017513db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 075261df1a9b28753d8af133b4fef97931a6f85515615241e76d73a655a0fdae
MD5 373e9d6f772f439816bdc61192fe1c99
BLAKE2b-256 18ad62df5494d62d09a6601a5e75aee984ac4e2151951f6cbfc5bef38c05ab32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 642c387a51b99a18c99a7b781cd8c0ceaca0c6f956e2a01ccc1d624386021d86
MD5 e5cff896a5a99a0fad3f67426b71887f
BLAKE2b-256 f6e5530e835614bf2d797e4fc39c6928e220c8e674a487b3789510b3fcce8c68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17745e92cc05aa28284e62a1938fd8e83ece4cddd0be44bf8b69bd0445b1d6ac
MD5 7c62fbcb7054bbe1a03a9ec533e49c43
BLAKE2b-256 ec8b3e567b9c5b92e9ca9f059c8d7fafe31e00bae88f45079077019462d69bee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bb04a89b7efdb9fb215e007b3dca30819a23757633f0ef24da19729a278d168
MD5 9711f8734c987b13f82d516842166b16
BLAKE2b-256 d4ca4d4068b442c2beec22aaaaff7f2bb5070ca3a60822eeea3839332d21d2b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b43880f6d6fad721786c62d74da7738d4c373d1dd321d9c2984a351b070a1d70
MD5 c5dafb27942989e9b3ce3dd544e95ac3
BLAKE2b-256 627a23529edd0a6e0e59d2167844c4df585227df838278dcc12c03adf631f7e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57021bc580ef6c8ef4eb9a7d4a26687da1a74cdce858696fb54bacadf4bc6ca8
MD5 4130532b935e957626a6b12a9ec2c6ce
BLAKE2b-256 d21d9c96ced5b36096a7a408a3c4e1a00b28f846905b35641bde98e4a241de0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecb9486e7d1c3a27318ac43aa0b364c5066c08858622fb054dde74e357f279a4
MD5 da2b80e36c18486dd2a3f8b79b3d7710
BLAKE2b-256 0426a94041bfffaa1f1213906e6b6d4773a5d23036ccdd20affe3a12c5196d6d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aecbd90de8abfee55d67f7ae665452696f290ef74008dd505abeb40ba2be03d
MD5 b1754a11075ea5eb819ab0c4b2152099
BLAKE2b-256 438c342bed48a608e51a1555d1cea0aa51e00dfd480e8283288eaa71c675bc06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cba3210cb4116b184d717db123484181bdfa07bccfc2dfd24718bfcafaee3509
MD5 45db1fc1a14559f57ad80d02b93a774a
BLAKE2b-256 8dc86c13983148ed5b9e7f94dbc59026b9a658b37a6cedec629e8ba02b8f0991

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 160d0a21abcd776d8589eb291bfe4c66f5aa754bda43f9346c561519aedb7f90
MD5 84828263a6f2ec2369f67b0efcc5f9d2
BLAKE2b-256 39633b3ecc5422002a8a8979d00ed0599abdce0fb2b3bb2cf4ed6d26e54289bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0aa36416f7d2b984adff86f3e087ee402053c2a050ae232ff103177dff0f517e
MD5 a90a8f533db52f83bd1247c20735817c
BLAKE2b-256 ec70d95f7c36b7dac0f6008556b60215a08338015b4e428dcf84d9f59ba3f1e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.10-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f6871d7f3ed5410274cad801f1669ee4e66cd647bd53dbde7151deabe19f4ed
MD5 aa6402f0bb2a81c481f910950eaab29e
BLAKE2b-256 14d6b80ecbfe7fee47e795094773dc6471fb1dbef0adb0c93d9c2cfdeb4c1b35

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