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

(2024-09-06)

Bug fixes

  • Fixed joining a path when the existing path was empty – by @bdraco.

    A regression in URL.join()() was introduced in #1082.

    Related issues and pull requests on GitHub: #1118.

Features

  • Added URL.without_query_params()() method, to drop some parameters from query string – by @hongquan.

    Related issues and pull requests on GitHub: #774, #898, #1010.

  • The previously protected types _SimpleQuery, _QueryVariable, and _Query are now available for use externally as SimpleQuery, QueryVariable, and Query – by @bdraco.

    Related issues and pull requests on GitHub: #1050, #1113.

Contributor-facing changes

  • Replaced all ~typing.Optional with ~typing.Union – by @bdraco.

    Related issues and pull requests on GitHub: #1095.

Miscellaneous internal changes

  • Significantly improved performance of parsing the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1112.

  • Added internal types to the cache to prevent future refactoring errors – by @bdraco.

    Related issues and pull requests on GitHub: #1117.


1.9.11

(2024-09-04)

Bug fixes

  • Fixed a TypeError with MultiDictProxy and Python 3.8 – by @bdraco.

    Related issues and pull requests on GitHub: #1084, #1105, #1107.

Miscellaneous internal changes

  • Improved performance of encoding hosts – by @bdraco.

    Previously, the library would unconditionally try to parse a host as an IP Address. The library now avoids trying to parse a host as an IP Address if the string is not in one of the formats described in 3986#section-3.2.2.

    Related issues and pull requests on GitHub: #1104.


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

Uploaded Source

Built Distributions

yarl-1.10.0-py3-none-any.whl (37.6 kB view details)

Uploaded Python 3

yarl-1.10.0-cp313-cp313-win_amd64.whl (493.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

yarl-1.10.0-cp313-cp313-win32.whl (485.4 kB view details)

Uploaded CPython 3.13 Windows x86

yarl-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (512.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp313-cp313-musllinux_1_2_s390x.whl (521.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl (511.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp313-cp313-musllinux_1_2_i686.whl (494.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

yarl-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (492.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (504.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (503.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (488.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (473.0 kB view details)

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

yarl-1.10.0-cp313-cp313-macosx_11_0_arm64.whl (111.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

yarl-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl (113.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

yarl-1.10.0-cp313-cp313-macosx_10_13_universal2.whl (188.0 kB view details)

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

yarl-1.10.0-cp312-cp312-win_amd64.whl (110.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.10.0-cp312-cp312-win32.whl (101.0 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp312-cp312-musllinux_1_2_s390x.whl (542.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl (530.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp312-cp312-musllinux_1_2_i686.whl (507.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

yarl-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (508.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (489.8 kB view details)

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

yarl-1.10.0-cp312-cp312-macosx_11_0_arm64.whl (113.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl (115.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.10.0-cp312-cp312-macosx_10_9_universal2.whl (191.1 kB view details)

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

yarl-1.10.0-cp311-cp311-win_amd64.whl (110.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.10.0-cp311-cp311-win32.whl (101.1 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (521.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp311-cp311-musllinux_1_2_s390x.whl (539.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl (536.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp311-cp311-musllinux_1_2_i686.whl (504.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

yarl-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (506.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (510.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (522.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (527.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (491.5 kB view details)

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

yarl-1.10.0-cp311-cp311-macosx_11_0_arm64.whl (113.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl (114.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.10.0-cp311-cp311-macosx_10_9_universal2.whl (190.6 kB view details)

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

yarl-1.10.0-cp310-cp310-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.10.0-cp310-cp310-win32.whl (101.2 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (479.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp310-cp310-musllinux_1_2_s390x.whl (493.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl (493.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp310-cp310-musllinux_1_2_i686.whl (468.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

yarl-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (464.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (482.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (463.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (453.0 kB view details)

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

yarl-1.10.0-cp310-cp310-macosx_11_0_arm64.whl (112.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl (115.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.10.0-cp310-cp310-macosx_10_9_universal2.whl (190.5 kB view details)

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

yarl-1.10.0-cp39-cp39-win_amd64.whl (111.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.10.0-cp39-cp39-win32.whl (102.2 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp39-cp39-musllinux_1_2_s390x.whl (501.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl (501.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp39-cp39-musllinux_1_2_i686.whl (475.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

yarl-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl (473.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (490.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (497.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (469.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (459.6 kB view details)

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

yarl-1.10.0-cp39-cp39-macosx_11_0_arm64.whl (114.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl (116.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.10.0-cp39-cp39-macosx_10_9_universal2.whl (193.3 kB view details)

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

yarl-1.10.0-cp38-cp38-win_amd64.whl (112.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.10.0-cp38-cp38-win32.whl (102.2 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl (490.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

yarl-1.10.0-cp38-cp38-musllinux_1_2_s390x.whl (512.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

yarl-1.10.0-cp38-cp38-musllinux_1_2_ppc64le.whl (508.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

yarl-1.10.0-cp38-cp38-musllinux_1_2_i686.whl (477.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

yarl-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl (474.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

yarl-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (472.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (462.8 kB view details)

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

yarl-1.10.0-cp38-cp38-macosx_11_0_arm64.whl (114.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl (117.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.10.0-cp38-cp38-macosx_10_9_universal2.whl (194.4 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.10.0.tar.gz
  • Upload date:
  • Size: 158.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.10.0.tar.gz
Algorithm Hash digest
SHA256 3bf10a395adac62177ba8ea738617e8de6cbb1cea6aa5d5dd2accde704fc8195
MD5 7133f66a4b6d358c7552934dfc2dfeb1
BLAKE2b-256 bac4e874aafc3e83526526846c9e17c9cb15fdc12a5163f46b1fbca6a895505b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-py3-none-any.whl
  • Upload date:
  • Size: 37.6 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.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 99eaa7d53f509ba1c2fea8fdfec15ba3cd36caca31d57ec6665073b148b5f260
MD5 6c87d3b78cdf4ab574f6abb51380d50a
BLAKE2b-256 b3a0ca48053eaa934969c53932dd1e11db7dac3085a1a3dadf5cefe48514ca20

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 493.4 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.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 493ad061ee025c5ed3a60893cd70204eead1b3f60ccc90682e752f95b845bd46
MD5 b5e7851ac3ea4b2144a147a2429561c7
BLAKE2b-256 c74644fa666c18847f3029febd28f37459363576dfc6a961da30f07e2354c625

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 485.4 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.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 687131ee4d045f3d58128ca28f5047ec902f7760545c39bbe003cc737c5a02b5
MD5 e91ed1daa941605130c5a5e1adecac92
BLAKE2b-256 10d4c4191aa35128eb76341d8a3b4efd948148c30ce28b679995595d879d66f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90fd64ce00f594db02f603efa502521c440fa1afcf6266be82eb31f19d2d9561
MD5 4b6882663272e49c2ebf0b50218a6cea
BLAKE2b-256 633a1c0c53e83cfec2e35e246dba1e8af0c9aab777af05aeb6c7c9723e9be723

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1824bfb932d8100e5c94f4f98c078f23ebc6f6fa93acc3d95408762089c54a06
MD5 d93e85544d5f27b0306b62de0a616b5d
BLAKE2b-256 b8d12db6005d380a48acd8fe6b5aa4ba8261ff95f7d07a10a733ef957148d757

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a80cdb3c15c15b33ecdb080546dcb022789b0084ca66ad41ffa0fe09857fca11
MD5 8917192a753a01f0768b9c79a11373db
BLAKE2b-256 e81ef5de9ee40943067c90fab3d39c9c2fca8ad9db9bc46f6d79ae9847018e26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99e7459ee86a3b81e57777afd3825b8b1acaac8a99f9c0bd02415d80eb3c371b
MD5 d0135a6efa4061c7ea5201f4f478f8fc
BLAKE2b-256 9ecf83a0066b65012181a11fe56462300600c2d2f83754972f439bf526462bcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 637dd0f55d1781d4634c23994101c509e455b5ab61af9086b5763b7eca9359aa
MD5 069cf19f81a7a7e0cb81423ee8c768bf
BLAKE2b-256 1a8a4fce6eefe164425ed68f73b345f1032f72b3aa03675bb69c8a4f3ec087b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 030d41d48217b180c5a176e59c49d212d54d89f6f53640fa4c1a1766492aec27
MD5 3e51d94e540a09d882a2760b66d9505a
BLAKE2b-256 f71e448701eece2a077f6531ecd97a836cfe8c4d27ab104e671702b72ea125c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c77a3c10af4aaf8891578fe492ef0990c65cf7005dd371f5ea8007b420958bf6
MD5 66d5a072f0325e3939ab36e13c7c98e1
BLAKE2b-256 58936d30fb9cbc440c3c8936700943afd649045ce70eea24292ce10ac6334218

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 183136dc5d5411872e7529c924189a2e26fac5a7f9769cf13ef854d1d653ad36
MD5 647fcf1756131824f2021cbdca25803c
BLAKE2b-256 82bbd97349f96cb80b7970825bddbedc0a629e9cfa7a5fa974096d98c1de8349

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d7bd531d7eec4aa7ef8a99fef91962eeea5158a53af0ec507c476ddf8ebc29c
MD5 2408fbff4373017f1b86c7b0d473bed1
BLAKE2b-256 4a84e862bd7199c6f519599c829e98ce6f3f7db666409eefb03e27e784b2f146

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f4f43ba30d604ba391bc7fe2dd104d6b87b62b0de4bbde79e362524b8a1eb75
MD5 9dc8446e7e334c52873ff40c514f07b8
BLAKE2b-256 c9b7710fb1d9482a6cbcb31ed0309d7031c22c61339de0742daccea40d9a550c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05b07e6e0f715eaae9d927a302d9220724392f3c0b4e7f8dfa174bf2e1b8433e
MD5 731350461c45efb0e6d2833fa3b7d7c8
BLAKE2b-256 40cea6b48c74c75ba621998e454de86693010a6cd76669e7f60850e60501c4d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0b3bf343b4ef9ec600d75363eb9b48ab3bd53b53d4e1c5a9fbf0cfe7ba73a47f
MD5 f42bbe89d532f5fb4384ab8f6ba100a4
BLAKE2b-256 99297f9c693d4c08d15bec1bdda4f6f9caf16cde402688e1235ee3cdddf256d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0e0aea8319fdc1ac340236e58b0b7dc763621bce6ce98124a9d58104cafd0aaa
MD5 97b98e8c4cfa92c00c3d46e4d925b665
BLAKE2b-256 a78e2a2c087c21d9c8d5360744484f3dbe72efbc0e4ccdf1376e9963aae39669

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 110.8 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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c6214071f653d21bb7b43f7ee519afcbf7084263bb43408f4939d14558290db
MD5 d6e81cefcc43951057084022bd7e6a0d
BLAKE2b-256 20b77fd73ba1de32c590cc6acc76b08303b8f7209c23f8798647118ad5c67dfe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 101.0 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.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 762a196612c2aba4197cd271da65fe08308f7ddf130dc63842c7a76d774b6a2c
MD5 81876bd3731f55c098721cc26da93a60
BLAKE2b-256 fc6583c3322054ce180c1188eff8d06873ca95f9861e0666684411c6df8a4f39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32e79d5ae975f7c2cc29f7104691fc9be5ee3724f24e1a7254d72f6219672108
MD5 6c516a88608de2ad0714cd9f0ad0b60a
BLAKE2b-256 a847824549e3324b93710b9a9f01371e5dd84bb59f436f84da61bff70ba785ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5d0c9e1dcc92d46ca89608fe4763fc2362f1e81c19a922c67dbc0f20951466e4
MD5 817c4ca2926309abbdc8f2659b9a678b
BLAKE2b-256 493ea7a910e620d35bb57a8a3ba9005c325686ed1937a82ed81c8070ccfc58bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8e69b55965a47dd6c79e578abd7d85637b1bb4a7565436630826bdb28aa9b7ad
MD5 3227dc341a85db2866c6c96a6d37a4bd
BLAKE2b-256 24a7f2499b8c469db5c5ccd46abc9308cbeac3dd56441493a4115e225fde1962

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dff84623e7098cf9bfbb5187f9883051af652b0ce08b9f7084cc8630b87b6457
MD5 e14ed1f9f958f6afeae23d9e14b7b017
BLAKE2b-256 7d105094a129682884c0e8113c5dddff33fba64507d3625306133cc9062c4b51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30dde3a8b88c80a4f049eb4dd240d2a02e89174da6be2525541f949bf9fa38ab
MD5 1c061a91ccdd9a0957fa6704d8d09fd6
BLAKE2b-256 7d92659da2932fc94af1a8a021ed89baa7fb65b1526645dcad704d02200a79ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cece693380c1c4a606cdcaa0c54eda8f72cfe1ba83f5149b9023bb955e8fa8e
MD5 c45851cf10aa1830336e77d8e5b22fcf
BLAKE2b-256 19aac4c96064c7a1138f9c44be1a58fb5c34f3c4719009fb1cc2b5a0b4ec28c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be199fed28861d72df917e355287ad6835555d8210e7f8203060561f24d7d842
MD5 5680d21a92a5c95374923a65636ae6e1
BLAKE2b-256 b48dd6a66decb7ff430ca517c9fec6df97a949f6d76b409799ab16cd85c0ec51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b922c32a1cff62bc43d408d1a8745abeed0a705793f2253c622bf3521922198
MD5 87e97e4ec5c8fae4fd1323e648bc940e
BLAKE2b-256 8ad16156613f2162135c00f12c625f08862e0a111ce6bf2470b63b865352badc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23057a004bc9735008eb2a04b6ce94c6c06219cdf2b193997fd3ae6039eb3196
MD5 447122dae566de4fa745eeac631df860
BLAKE2b-256 7a7b79d9bbb39bd203fd5cca497027369c57d492672f40f5d61770f9363eaacb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff8e803d8ca170e632fb3b4df1bfd29ba29be8edc3e9306c5ffa5fadea234a4f
MD5 57b8d997bf10db7374ca32cabd08aad5
BLAKE2b-256 4d4a12490758b4ed9efd68ea6010f3eb6c295cec4ca409c7764b37d0ab0c3145

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e91ed5f6818e1e3806eaeb7b14d9e17b90340f23089451ea59a89a29499d760
MD5 cdec94a4d04b21e61a8cb6cc6f3f44ba
BLAKE2b-256 091cca96bec78cf8643395e89876d4ae85877e452deca247194059cc638064ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf733c835ebbd52bd78a52b919205e0f06d8571f71976a0259e5bcc20d0a2f44
MD5 c067ff5593bd219e53f67b52bfdc1ebe
BLAKE2b-256 9c1e1e67639a64dc6abe8398a420436b7bc8fe24f1cb42943a916380072a3bcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6bc602c7413e1b5223bc988947125998cb54d6184de45a871985daacc23e6c8c
MD5 002062193486e31f66567995230cac3b
BLAKE2b-256 5125608346ae4ef6605ea88d553dfe5a149f3c66c5dffa3cb16b248a6fa6043b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 110.8 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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 190e70d2f9f16f1c9d666c103d635c9ed4bf8de7803e9fa0495eec405a3e96a8
MD5 7601dae935129ff4313a1f2ed542619b
BLAKE2b-256 59551bbae7e2ae480ac6767fdff441d8c4e025187da23abf242d965604033c55

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 101.1 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.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6026a6ef14d038a38ca9d81422db4b6bb7d5da94f9d08f21e0ad9ebd9c4bc3bb
MD5 3dc508c78639f5cdaa72a55556855dbb
BLAKE2b-256 e9102631df8c035dbdc7fd2ad4037b5772e209c0afd7b64577fa3e00b13b9def

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b6d0d7522b514f054b359409817af4c5ed76fa4fe42d8bd1ed12956804cf595
MD5 260ef801992ab07842b5b6b0ba3c426d
BLAKE2b-256 3432a62581ef6b7987ba9c40701f4dc92d45011df86b60d21d9e0e6da9467011

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 183dd37bb5471e8017ab8a998c1ea070b4a0b08a97a7c4e20e0c7ccbe8ebb999
MD5 0b4cebacac6e302751d384697e316107
BLAKE2b-256 89e79ef036882707de342d31df7e38764d2f39fee259c3f9d14373e81d0565f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b80246bdee036381636e73ef0f19b032912064622b0e5ee44f6960fd11df12aa
MD5 2079c3672360f6890bcec0d123f7e469
BLAKE2b-256 968f35ee34fdaf5b2a9474e4f112e77520a05f1f7543a9321ea894fe0dd86e7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18b7ce6d8c35da8e16dcc8de124a80e250fc8c73f8c02663acf2485c874f1972
MD5 bbb50f5c6ac75210dc413e8ea0558977
BLAKE2b-256 1cd9a915c05f774dbab69617004805a199a539f2ad8657e9effd9b28928919b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f6ac063a4e9bbd4f6cc88cc621516a44d6aec66862ea8399ba063374e4b12c7
MD5 bf6809c97db9742218d5962d45ae3278
BLAKE2b-256 c7becc4b4fc907cbe6af3f80062f676d94a27aa7029ced7a706263f896ea85a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 012c506b2c23be4500fb97509aa7e6a575996fb317b80667fa26899d456e2aaf
MD5 ccc05774af8180898a83dc4edefddf68
BLAKE2b-256 1e9415e89daf896dbec59f218bc6302ce243b7098500a5890a58e87d99bff453

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 315e8853d0ea46aabdce01f1f248fff7b9743de89b555c5f0487f54ac84beae8
MD5 54a50736cf0b0ad037b4d7a50a693115
BLAKE2b-256 f707584b95e8995dfdbf4eed32d2968290ad8f993de9bd335ddc90ac897aafe6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 293f7c2b30d015de3f1441c4ee764963b86636fde881b4d6093498d1e8711f69
MD5 082218c6dee1be2e888bba5e0aff9d94
BLAKE2b-256 ae148923ca9b9a7a295ebcea4566196eca4916a66ebbad91e7191e13a89a3691

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 348ad53acd41caa489df7db352d620c982ab069855d9635dda73d685bbbc3636
MD5 500090ab9a5d37bbcd392897d3d5192a
BLAKE2b-256 e7e4b9c11018560a9351c9f769fa2cc2837e23e251805c549de6d69b582b6dc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f769c2708c31227c5349c3e4c668c8b4b2e25af3e7263723f2ef33e8e3906a0
MD5 43cf7d9d59e7fe5d455daf88644fd278
BLAKE2b-256 8ba60fef10ce24324c0396c7ba1d3b107cdf36ce39f81a32c66ff6a4435101f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4d13071c5b99974cfe2f94c749ecc4baf882f7c4b6e4c40ca3d15d1b7e81f24
MD5 ba27f4df1e1826ae150a475921b33e01
BLAKE2b-256 cb5078aefa70d0c179744d26c462c44fe7e863439e71a0fcc3483d3829b749fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc66927f6362ed613a483c22618f88f014994ccbd0b7a25ec1ebc8c472d4b40a
MD5 1a7c3e23f37f363e13bb117ac2b1d38b
BLAKE2b-256 c85407b64ffc7abf551ca61f1bfe4e236a70adedc74568ece87834f9985b96d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 308d1cce071b5b500e3d95636bbf15dfdb8e87ed081b893555658a7f9869a156
MD5 9ea01cdedffb85263a23537e432eeec4
BLAKE2b-256 1c950f4f8e50836e848d37a3e7eb508efd123396084a80ba3b802648b1063dc9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 110.5 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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 48a48261f8d610b0e15fed033e74798763bc2f8f2c0d769a2a0732511af71f1e
MD5 17f6591e01774cfa2a13676bbba332af
BLAKE2b-256 9a65b81e771366cfa96281a351a7e042cfc60e173e5dcccc53370e684c2d3a4e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.2 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.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ef7ce61958b3c7b2e2e0927c52d35cf367c5ee410e06e1337ecc83a90c23b95
MD5 72fb9c6c87d626db3011c5c6ac7833d4
BLAKE2b-256 f29eb62a8fb1ffde9005057c98522d28e776871a88c0f2efed72a3bacaa0786c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff45a655ca51e1cb778abbb586083fddb7d896332f47bb3b03bc75e30c25649f
MD5 b95a7e31d06379f1df9caa16e354ef00
BLAKE2b-256 291190fe1b6d4ac2f1eab0702d00bee914a2d28cef329a19b50d5a5957b5e572

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a9d8c4be5658834dc688072239d220631ad4b71ff79a5f3d17fb653f16d10759
MD5 5faf50c1e9c0cc9aec9e590eec6e8857
BLAKE2b-256 dad755dde38c38b8d8fa4db3869b208485cffbd4d52c5a5f91c2f46ae7539e68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4cca9ba00be4bb8a051c4007b60fc91d6c9728c8b70c86cee4c24be9d641002f
MD5 84589a976450ec3cc77927b3fcbb7b16
BLAKE2b-256 9d8b8595c48563ac7f60ec7bd3451d8a1ccfd3fc1c827a5231d455062eef961f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f3372f9ae1d1f001826b77d0b29d4220e84f6c5f53915e71a825cdd02600065
MD5 91a8d3778429cb6a332648b2961bbbb5
BLAKE2b-256 1eef90887cd65b0c3f26980b283c65c9b7942cfec80ec38442c5407315c8cb27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 534b8bc181dca1691cf491c263e084af678a8fb6b6181687c788027d8c317026
MD5 9974e4d418a9312ae54eb7ebb9026bdb
BLAKE2b-256 82e2bf491e7f488fdf8ec0a854d27cfd235c5328eae92d8d1f0fe0a2848b02e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88173836a25b7e5dce989eeee3b92d8ef5cdf512830d4155c6212de98e616f70
MD5 e94d75eb71366077e29a76772338f161
BLAKE2b-256 6755a30572263e33e91d450de17666c30f198e2440aded531ef30a25269cbb6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11f7f8a72b3e26c533fa7ffa7a8068f4e3aad7b67c5cf7b17ea8c79fc81d9830
MD5 ccbe2c8327e916a3c271c0ee6f0a040b
BLAKE2b-256 f3142cc913f74ca4815cccaf807b84f70e70e514488e2d7a16cdab8de76ca793

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36d12d78b8b0d46099d413c8689b5510ad9ce5e443363d1c37b6ac5b3d7cbdfb
MD5 8d442f606294d33cc0a09f86126d7a2b
BLAKE2b-256 93171b4de996c77a259f8795f0d813787daa5f98d71c71c716865c38f278338b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5527d32506c11150ca87f33820057dc284e2a01a87f0238555cada247a8b278
MD5 d399d56c7b03da34becf76e18f93918d
BLAKE2b-256 8175643512c1fbb8198ec4f7df8dbd5c81aa07d8d23c9a04c89a9052a88e8d49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c382e189af10070bcb39caa9406b9cc47b26c1d2257979f11fe03a38be09fea9
MD5 1ed351de0c49fe4ce5db8492e84fc4db
BLAKE2b-256 42fde75e3565dca38fe2f1db2b5e9c5c5611df3fd4d084afa3a66b443d085ec7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044b76d069e69c6b0246f071ebac0576f89c772f806d66ef51e662bd015d03c7
MD5 20688f3334279ffb9a3f64eef76d2630
BLAKE2b-256 739a20570d1aa10766ff0bffd28ea7fe4fcbbbed471b68d02091c61dc8fb453d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4657fd290d556a5f3018d07c7b7deadcb622760c0125277d10a11471c340054
MD5 7562d8ea4d862eb168125a3ab8837c66
BLAKE2b-256 2a54941324b681ef4e7aea38e6c49321b7a7ece666d930b14b07d5ceba99d08a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1718c0bca5a61edac7a57dcc11856cb01bde13a9360a3cb6baf384b89cfc0b40
MD5 efc9825e2605c0a1af036e7e75a87ad1
BLAKE2b-256 7704f28fe9bb7459e44420edf6a49d99b42c54fdad800303e6e32da6c495186d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 111.7 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 52d1ae09b0764017e330bb5bf9af760c0168c564225085bb806f687bccffda8a
MD5 b3ceb0b21cbf23c840d9dec45e37a7a9
BLAKE2b-256 93677870e6994142da18e2eb8ec90e43878f4da91d9b45b5e3f3396223412073

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 102.2 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.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 96422a3322b4d954f4c52403a2fc129ad118c151ee60a717847fb46a8480d1e1
MD5 110df8cbce73cbacf3328c8b70e654e9
BLAKE2b-256 e9eee78bd19fb98d3dc42d7b6f1b859696bd97b3b5e5d75aaf8b0056d88b512c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b46c603bee1f2dd407b8358c2afc9b0472a22ccca528f114e1f4cd30dfecd22
MD5 25e20d2fad517df7a6bd9e9186c109c8
BLAKE2b-256 3463aa2b353bcda93a95b7c077d2903a0a9ded06c1b1f3432c4bb668ce976ae3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e8da33665ecc64cd3e593098adb449f9c65b4e3bc6338e75ad592da15453d898
MD5 bbe50303604c4187d26538111b4f82e6
BLAKE2b-256 a7ef66b7d16a3975bc711b5f3a2683733fcd85f3dc0d582c8f845baa0521b943

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d2366e2f987f69752f0588d2035321aaf24272693d75f7f6bb7e8a0f48f7ccdd
MD5 42e8206c289158d357a81379c394c690
BLAKE2b-256 cf402ec1bcb16040e1be0fea8e276669e3279ab08c561c7294c36a64a9bfae05

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa1aeb99408be0ca774c5126977eb085fedda6dd7d9198ce4ceb2d06a44325c7
MD5 3087059506e99e989cc0b5a1ae7d99a1
BLAKE2b-256 3c25f4cd8a86a387eae19f7613fde16f155ed26b0015f1d4e52ba72bbd474e6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32d2e46848dea122484317485129f080220aa84aeb6a9572ad9015107cebeb07
MD5 3be27cd1be7c0505086dd4b5d3b8960f
BLAKE2b-256 a048598d747fa709d43618898e47085694a369e6bf1aba175ae8012095e0cbd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a162cf04fd1e8d81025ec651d14cac4f6e0ca73a3c0a9482de8691b944e3098a
MD5 8e3efe8aa0360638728ecfb96b0e8b7b
BLAKE2b-256 e28ee6c626ffcfa470a0bb4315aff55cae3ab27b9ac6e9aec0a0c7e35915faef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1eafa7317063de4bc310716cdd9026c13f00b1629e649079a6908c3aafdf5046
MD5 e57e6364af636412e0feb11d82ab4168
BLAKE2b-256 3d282dac9be62f973e00f0757db5d081d5a10b29b97b42ca2fccd78e4917a011

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af5b52bfbbd5eb208cf1afe23c5ada443929e9b9d79e9fbc66cacc07e4e39748
MD5 482b9972f781286bfdd0d339f03021f9
BLAKE2b-256 9b87a57af3bc9a81fe354ea643e389559403bbdfe83f58c52e3c2049e7468f1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3352c69dc235850d6bf8ddad915931f00dcab208ac4248b9af46175204c2f5f9
MD5 171e0c885ab66de2985e3f5a3f94b4a7
BLAKE2b-256 376ac3276d25306a4c781df5908de3e2d46b8492d3c60f260c3274b9023fec44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 179b1df5e9cd99234ea65e63d5bfc6dd524b2c3b6cf68a14b94ccbe01ab37ddd
MD5 55abe7def620d93bb252e1b5538e3f64
BLAKE2b-256 89f90f2c5ffc2fa4a2b6dcb66d77dd8a744203cb23ce8bc6ab34eb14b438d531

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc544248b5263e1c0f61332ccf35e37404b54213f77ed17457f857f40af51452
MD5 701085d514d63fa4865f5338463c8022
BLAKE2b-256 70538b798aad06ee7fd1d6ec5efc4491782f5d401db3679e61258051be0250c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eeb6a40c5ae2616fd38c1e039c6dd50031bbfbc2acacfd7b70a5d64fafc70901
MD5 356916dbb5e95a6ee6b052b4513b390c
BLAKE2b-256 4fa0fdb4e014edd9a0ba4184b0ac11315e1a5ed551e045bb531d2c7a6ac9bc20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 18bc4600eed1907762c1816bb16ac63bc52912e53b5e9a353eb0935a78e95496
MD5 aedde85a9bc1af2d13ed89f020d118e3
BLAKE2b-256 cb9ca2859e0caae3379e70774ba9402f76c85cc7572ada6bf73189dfb5e1b4f1

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 112.0 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.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 347011ad09a8f9be3d41fe2d7d611c3a4de4d49aa77bcb9a8c03c7a82fc45248
MD5 fbdfa20ba9a035e8b52183c2bb869fd4
BLAKE2b-256 0cf58a386b5530601b3bb8c5d2c8985a5aedd187e105f1d1bd619a597f09a55d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 102.2 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.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1ea30675fbf0ad6795c100da677ef6a8960a7db05ac5293f02a23c2230203c89
MD5 c6216db358950260edfbcf927f78063d
BLAKE2b-256 b0b8181910f2650d978c1083a6558315eba68135db91799be7696c6625ecccda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b453b3dbc1ed4c2907632d05b378123f3fb411cad05d8d96de7d95104ef11c70
MD5 b7a08d8ae3d2c63c165486729c5da9bd
BLAKE2b-256 7e924864bf320af55ddd3a922a76d56ef8c2c809f41c22405376e8a7de84a3d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a8d6a0e2b5617b5c15c59db25f20ba429f1fea810f2c09fbf93067cb21ab085
MD5 609cd2a4ff12d73c841ae23481133b08
BLAKE2b-256 0706f14b683f16692a085be2600f7b47f772994aab20c24ee6e8f63d9605baad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 beda87b63c08fb4df8cc5353eeefe68efe12aa4f5284958bd1466b14c85e508e
MD5 c812178f654751b7cd637a52226ab28c
BLAKE2b-256 2520fb8ca6e9d324d50765faaa39ac5d5d3662428b9f39016408e7258ac02f9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c46454fafa31f7241083a0dd21814f63e0fcb4ae49662dc7e286fd6a5160ea1
MD5 e084d5c076649077abba811911cec4d1
BLAKE2b-256 54441b69c8de6bbeefd36d0e14a708fc6af1bb384450f250d5270371e6e1fc2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8e24b9a4afdffab399191a9f0b0e80eabc7b7fdb9f2dbccdeb8e4d28e5c57bb
MD5 f502212bae42f40aab7b5829e8c1f138
BLAKE2b-256 ff716115ec3d626278aab27837efdcf07bab72f56643752a4f5976952ff936ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 273baee8a8af5989d5aab51c740e65bc2b1fc6619b9dd192cd16a3fae51100be
MD5 69e5310605032c6f1d2c8c326528b6f3
BLAKE2b-256 bfb3dbc9e2e8fa563a947ee19bc5bf04917dd0a9b26e5351ec53d6fad78ed880

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6eec21d8c3aa932c5a89480b58fa877e9c48092ab838ccc76788cbc917ceec0d
MD5 efa41e8ff39d88d8fcb93b72692a7b43
BLAKE2b-256 03b14cea7dc1edb1106ddb78cb32666612b8adcdf9b7e4ac73879c8813627a4d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54a4b5e6a060d46cad6a3cf340f4cb268e6fbc89c589d82a2da58f7db47c47c8
MD5 7e4f77b8b02938428600b87c1ef3a0f6
BLAKE2b-256 1bdd73e40e56b85097c4b279672deeaaf1087cee31a09b6119281ed8c25c5ce0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca42a9281807fdf8fba86e671d8fdd76f92e9302a6d332957f2bae51c774f8a7
MD5 61aa07e51ad1ec4620034d81646bcc8d
BLAKE2b-256 e50d1908f124fe4512e034f07720a1bb29ca8ac08ab20550ab02d8b5e9aad428

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1bf63ba496cd4f12d30e916d9a52daa6c91433fedd9cd0d99fef3e13232836f
MD5 d22648b7a106536fadccd18b5e19c7a5
BLAKE2b-256 5ea833e234694d18bde6325e6fcb4af6867806ab60b183625d82f608a6ce15c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3576ed2c51f8525d4ff5c3279247aacff9540bb43b292c4a37a8e6c6e1691adb
MD5 4333de60d3a922c1892501a691cac576
BLAKE2b-256 98bfee2e56616f940692a4d39b9fece8b3d4e44c3c93a37d9c08a54c929afa6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f64f8681671624f539eea5564518bc924524c25eb90ab24a7eddc2d872e668e
MD5 7c091701e9afc717e8531010cc382217
BLAKE2b-256 6ab1b2bb31086ea378c12a2b3f68e8ea4e8ee0f75ad43a11e452e4eefcf2ba75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.10.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd65588273d19f8483bc8f32a6fcf602e94a9a7ba287a1725977bd9527cd6c0c
MD5 c3cd431a75abb9d67cae2099a21752ff
BLAKE2b-256 ddbb26fbb2890163ae7d5c5ec67d3777ec0b631544932f63ee526f59131fe8b5

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