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/%D0%BF%D1%83%D1%82%D1%8C')

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

>>> url.path
'/путь'

>>> url.raw_path
'/%D0%BF%D1%83%D1%82%D1%8C'

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=

Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.

Dependencies

YARL requires multidict library.

API documentation

The documentation is located at https://yarl.aio-libs.org.

Why isn’t boolean supported by the URL query API?

There is no standard for boolean representation of boolean values.

Some systems prefer true/false, others like yes/no, on/off, Y/N, 1/0, etc.

yarl cannot make an unambiguous decision on how to serialize bool values because it is specific to how the end-user’s application is built and would be different for different apps. The library doesn’t accept booleans in the API; a user should convert bools into strings using own preferred translation protocol.

Comparison with other URL libraries

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

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

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

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

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

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

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

Source code

The project is hosted on GitHub

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

The library uses Azure Pipelines for Continuous Integration.

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.

1.9.3 (2023-11-20)

Bug fixes

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

  • Started accepting string subclasses in __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 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)

  • Replaced the packaging is replaced from an old-fashioned setup.py to an in-tree 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=

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

    The same can be achieved via pypa/build:

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

    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 __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.3.tar.gz (135.6 kB view details)

Uploaded Source

Built Distributions

yarl-1.9.3-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

yarl-1.9.3-cp312-cp312-win_amd64.whl (75.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

yarl-1.9.3-cp312-cp312-win32.whl (69.4 kB view details)

Uploaded CPython 3.12 Windows x86

yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl (332.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl (330.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl (312.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl (322.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (310.0 kB view details)

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

yarl-1.9.3-cp312-cp312-macosx_11_0_arm64.whl (78.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

yarl-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

yarl-1.9.3-cp312-cp312-macosx_10_9_universal2.whl (128.8 kB view details)

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

yarl-1.9.3-cp311-cp311-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.3-cp311-cp311-win32.whl (69.6 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl (325.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl (334.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl (334.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl (317.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl (323.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (315.8 kB view details)

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

yarl-1.9.3-cp311-cp311-macosx_11_0_arm64.whl (80.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.3-cp311-cp311-macosx_10_9_universal2.whl (132.1 kB view details)

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

yarl-1.9.3-cp310-cp310-win_amd64.whl (75.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.3-cp310-cp310-win32.whl (69.4 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl (303.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl (310.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl (310.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl (294.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl (300.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (290.3 kB view details)

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

yarl-1.9.3-cp310-cp310-macosx_11_0_arm64.whl (78.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl (80.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.3-cp310-cp310-macosx_10_9_universal2.whl (128.3 kB view details)

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

yarl-1.9.3-cp39-cp39-win_amd64.whl (76.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.3-cp39-cp39-win32.whl (70.0 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl (305.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl (313.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl (313.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl (297.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl (302.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (294.2 kB view details)

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

yarl-1.9.3-cp39-cp39-macosx_11_0_arm64.whl (81.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.3-cp39-cp39-macosx_10_9_universal2.whl (133.2 kB view details)

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

yarl-1.9.3-cp38-cp38-win_amd64.whl (76.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.3-cp38-cp38-win32.whl (70.0 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl (324.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl (324.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl (308.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl (314.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (297.3 kB view details)

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

yarl-1.9.3-cp38-cp38-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.3-cp38-cp38-macosx_10_9_universal2.whl (133.5 kB view details)

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

yarl-1.9.3-cp37-cp37m-win_amd64.whl (76.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.9.3-cp37-cp37m-win32.whl (70.0 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl (295.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (296.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl (282.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl (287.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (293.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (279.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl (82.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: yarl-1.9.3.tar.gz
  • Upload date:
  • Size: 135.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3.tar.gz
Algorithm Hash digest
SHA256 4a14907b597ec55740f63e52d7fee0e9ee09d5b9d57a4f399a7423268e457b57
MD5 7fb7bc39e59b9ea050355508dd4b47bd
BLAKE2b-256 caf72af788563995eeec32b920c0640a6bc54777c89c780030a7754f95166b7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-py3-none-any.whl
Algorithm Hash digest
SHA256 271d63396460b6607b588555ea27a1a02b717ca2e3f2cf53bdde4013d7790929
MD5 bcd3d9129013572a6637e7d66f347b29
BLAKE2b-256 7b583b83e1f92c992fb273fbef64809078572b527591713ea49f198a5e9a06fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4472fe53ebf541113e533971bd8c32728debc4c6d8cc177f2bff31d011ec17e
MD5 7524c67a690b5fb1a67968af88179a5e
BLAKE2b-256 25a1770782ec81e07a57701d39a88c9bf1148570664da1d7e394e57dc8c611aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 96758e56dceb8a70f8a5cff1e452daaeff07d1cc9f11e9b0c951330f0a2396a7
MD5 5e7861a81a36585a99e15ed9f380c473
BLAKE2b-256 e63dc9625da780ddb6d0aa25bc0d02ef02be67b855abfd47146fe0eed21e5bde

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cccdc02e46d2bd7cb5f38f8cc3d9db0d24951abd082b2f242c9e9f59c0ab2af3
MD5 c273ff250e762c85bf712e8676289d67
BLAKE2b-256 a9fae554331c3669e5081656c581455fc364e6cf8eec57a2223099bbe14f2fd7

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 88d2c3cc4b2f46d1ba73d81c51ec0e486f59cc51165ea4f789677f91a303a9a7
MD5 702e565e64ec0681e333d75b6f3ed166
BLAKE2b-256 04a0c3dd50fb8167639163ff73f031cd73d2ae694672dd4d4cc1d32921d79c2c

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3cfa4dbe17b2e6fca1414e9c3bcc216f6930cb18ea7646e7d0d52792ac196808
MD5 9cf1b76e0e0320fd547b449fbee66aab
BLAKE2b-256 cb946c61b0c96a8c7d5d5caca55b9ca4431a40eb98e3ccbc068a46dd57b06f9c

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44e91a669c43f03964f672c5a234ae0d7a4d49c9b85d1baa93dec28afa28ffbd
MD5 bd7d3bf0a8d9f4ada00ac4f992747d04
BLAKE2b-256 c46d4b5cbb9a50a0b72f335ae8fe1f3ad4f0133aa3f3769333b2889b9c5a3e89

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 79e1df60f7c2b148722fb6cafebffe1acd95fd8b5fd77795f56247edaf326752
MD5 d8d3100ae8c12c515ca48575de212c7d
BLAKE2b-256 62472daa27f4c7dbc8969211a0ed0524fc8a6604f29ed3e6ff8e6f42a487dbe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c86d0d0919952d05df880a1889a4f0aeb6868e98961c090e335671dea5c0361
MD5 6b04027f898edabfa4ca58cc44996338
BLAKE2b-256 1ab178f142828d4bd97fc35616d8601d79fbce72adf44bf6eb7a750a1fcd15ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e741bd48e6a417bdfbae02e088f60018286d6c141639359fb8df017a3b69415a
MD5 8b80f4c592e8870ba2d54e4ea7f90517
BLAKE2b-256 9c0c089a5686f1f35c31675b61fd5a76f8bebacb569fa19385b17aa3c13a2522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa4643635f26052401750bd54db911b6342eb1a9ac3e74f0f8b58a25d61dfe41
MD5 b34d75eb7e27e5483ed463c34bce2d4b
BLAKE2b-256 76aa35b8f0225fde8509305fcaef56ac44b015e922530d43d111af05b37fddb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd49a908cb6d387fc26acee8b7d9fcc9bbf8e1aca890c0b2fdfd706057546080
MD5 958b1ec61d3c43241fc23bc467b313a0
BLAKE2b-256 09b199ab6e04453fd6135051c3f8c63d70f841a11de12dc181669183fe98accb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d5434b34100b504aabae75f0622ebb85defffe7b64ad8f52b8b30ec6ef6e4b9
MD5 682ec9af78e93c40d6fa803c0f0c6f7e
BLAKE2b-256 69d52d92ebe3fdd22601c658c95365e44c87aeeb2a8bdbff4b49b4eadca4cdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6f034386e5550b5dc8ded90b5e2ff7db21f0f5c7de37b6efc5dac046eb19c10
MD5 65208c908fa7e9ce810349cd9595b78d
BLAKE2b-256 2d8d3ab786266d427bb4018977316ad6900166ca9befbad39ee28c45730a7654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4b1efb11a8acd13246ffb0bee888dd0e8eb057f8bf30112e3e21e421eb82d4a
MD5 bbe7251f70eb1340c090b1e70023da41
BLAKE2b-256 0836d3100bff1d47780418449d0d8bad8b41d5bada7bd5c5529b9a58e0ac2414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dd318e6b75ca80bff0b22b302f83a8ee41c62b8ac662ddb49f67ec97e799885d
MD5 e7dc0229a7c29b8adbcbddc0f0bb6157
BLAKE2b-256 9947f7c0a170fda7e0e3dc684660e548c365736fc5d3f545e8a26e6607e6719e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 75.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f7271d6bd8838c49ba8ae647fc06469137e1c161a7ef97d778b72904d9b68696
MD5 a1f8572938451f0e37e30a70b1b0576c
BLAKE2b-256 26f057d1e1d3d2c7a34cf2d565ddbfe0b593f7d9b9c3cac6a541f4d7ed311fa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 69.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29beac86f33d6c7ab1d79bd0213aa7aed2d2f555386856bb3056d5fdd9dab279
MD5 cd35c4b278e5e464c21d40cb4df7daa1
BLAKE2b-256 6cf666c14137e3fc9439485baf489fe6449884c16c5b96da3f079f4f2a2d3ff7

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b61e64b06c3640feab73fa4ff9cb64bd8182de52e5dc13038e01cfe674ebc321
MD5 d1879d814e0cd592d25d395c8cf9abea
BLAKE2b-256 c8f2720e4abff6b00db848cee94aab6905c1a3dfde28ecc1e34dc5190d8f7fbf

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4d6d74a97e898c1c2df80339aa423234ad9ea2052f66366cef1e80448798c13d
MD5 1bbbb8cdbfc632b7c16fea632324af96
BLAKE2b-256 e4ea5a32e7021e0560b219bc8db5bd039d74bf52ba6ed778c65a2fcfd77e0280

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4003f380dac50328c85e85416aca6985536812c082387255c35292cb4b41707e
MD5 8274d88fcd3a44e0cf45a884f6b32a8f
BLAKE2b-256 1ce2abdaaa4354d704aa4d439d95ae08c0f601915277164638ff42114becb03a

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1d93461e2cf76c4796355494f15ffcb50a3c198cc2d601ad8d6a96219a10c363
MD5 3e907b7f5036e5c8626e813ad8680d4c
BLAKE2b-256 a729bd5b1e91763dd06a6df0ea5a29b1eee45a04564d45158d4591005343a489

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0b8c06afcf2bac5a50b37f64efbde978b7f9dc88842ce9729c020dc71fae4ce
MD5 76a07c002998a0efaa3d84ff29fc904b
BLAKE2b-256 2835a9ffc72b9b502ba58ac33b5ad2d50e50f124b6b156d3a480fe62ae8033bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72a57b41a0920b9a220125081c1e191b88a4cdec13bf9d0649e382a822705c65
MD5 2eeff7418ee95949a2023115a8927616
BLAKE2b-256 508b5ed41713edda564d9df1e5e34a4ec7048d3606682b1de893842ae1b1dbed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c757f64afe53a422e45e3e399e1e3cf82b7a2f244796ce80d8ca53e16a49b9f
MD5 8c8e408823f7f3c1a343d6082e4b6862
BLAKE2b-256 b1f2cb4709595f00cbcfd6c8eef6effe9ddd4e6e01d7d531ff030721d73dd21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe34befb8c765b8ce562f0200afda3578f8abb159c76de3ab354c80b72244c41
MD5 fbed1636c4223ef45abc9913fb4feac8
BLAKE2b-256 208de368cfbd4e0c8b99b07ecda502f3e0e551c57da86bbf8fb5e808913daef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26a1a8443091c7fbc17b84a0d9f38de34b8423b459fb853e6c8cdfab0eacf613
MD5 221f700cf06a6991bcc70bd1cea836b2
BLAKE2b-256 f072c05717170d7d388939d03eb5438cb7e4c2a8fdad6aa51544be5450932621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 632c7aeb99df718765adf58eacb9acb9cbc555e075da849c1378ef4d18bf536a
MD5 18174586a456ee684828e659a70998a6
BLAKE2b-256 777f3b4f834028770725fcd663ed84bd252fe9a1ca164733f52c065c76f2ec41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d81657b23e0edb84b37167e98aefb04ae16cbc5352770057893bd222cdc6e45f
MD5 b861cd3a1e0488c0f820fd157df7f8b2
BLAKE2b-256 f2aeeaa7de48498db74aa19f4b6490821a5f91cfbae9f0561e7417fbb9b10af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73cc83f918b69110813a7d95024266072d987b903a623ecae673d1e71579d566
MD5 91c6c967a01f583c6e4c77dc872a8532
BLAKE2b-256 78edb23d64e00e8fcd4aa7bb591ba9134d1e946b8af11f7024aec8e30062181e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d61a0ca95503867d4d627517bcfdc28a8468c3f1b0b06c626f30dd759d3999fd
MD5 b6dfd9d65c99ebb89a16f3248556d021
BLAKE2b-256 f71dd50638a516de5a885f94af55e4ccf80a6e41242978fa3b28de1c3b2bbc22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 75.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf7a4e8de7f1092829caef66fd90eaf3710bc5efd322a816d5677b7664893c93
MD5 0aab904f36444ca0b38c4fe12129d1dd
BLAKE2b-256 8c807ba7e187c55125af0a89741ea7a1be9fa305620742e8580e730029e817d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 69.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d34c4f80956227f2686ddea5b3585e109c2733e2d4ef12eb1b8b4e84f09a2ab6
MD5 bd2b70b4ea82d05c9ebfcee9711deb76
BLAKE2b-256 2ab755c0a849fa439ffc07ace8dabfab320326ca65ecd3ace87ecf79ba3493a9

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9df9a0d4c5624790a0dea2e02e3b1b3c69aed14bcb8650e19606d9df3719e87d
MD5 825c0bc61fd96587e91c1cef383d796b
BLAKE2b-256 c5d2d989e8d08a49a677442571f94d25973de12b9b0a99702fb91f3d073957dc

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c405d482c320a88ab53dcbd98d6d6f32ada074f2d965d6e9bf2d823158fa97de
MD5 2c36d4a7219613d272bfc2b37bd15ab4
BLAKE2b-256 1b66e79251e6f31c78f1b596968a51da4178b01c86b1fc5275371f74206c25b9

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dd952b9c64f3b21aedd09b8fe958e4931864dba69926d8a90c90d36ac4e28c9a
MD5 01d056316e26cd30c20682cc90d5636c
BLAKE2b-256 da8f9b350278b1a727cf711948ef35b880f8c70b38eb1f1f15e429f3d86f2c6f

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b8bc5b87a65a4e64bc83385c05145ea901b613d0d3a434d434b55511b6ab0067
MD5 fdcbb4029902d6026e3549da4e950932
BLAKE2b-256 9c834458d84eb88efa48826702afd5b45acee3ec860d58271da7974e029a5a5b

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 721ee3fc292f0d069a04016ef2c3a25595d48c5b8ddc6029be46f6158d129c92
MD5 ba2c49a099136043e07dd55a36822818
BLAKE2b-256 52d77e350b00d3fde62e126b1a0444645f400782a9a9ac6f4a827bfff7ae0622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5f3faeb8100a43adf3e7925d556801d14b5816a0ac9e75e22948e787feec642
MD5 0dc78638b23853d1d70cefb77a6b139f
BLAKE2b-256 b6b244b31699e27f82c577143d062a2b58cbe0c6e7a0828d13c0ffd10891ad40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0f17d1df951336a02afc8270c03c0c6e60d1f9996fcbd43a4ce6be81de0bd9d
MD5 6cb7989471152be9b05efd4300a870ac
BLAKE2b-256 5fab51b416674635e1006ac89d5ba42d1a37e0184d8fe04b7f0bfcb117df94ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e36021db54b8a0475805acc1d6c4bca5d9f52c3825ad29ae2d398a9d530ddb88
MD5 c2c7eea87624a4958a44243744e27b83
BLAKE2b-256 82664e76fc7b034003794d808b755e178cd8a983ce55913e31c4f3ad1e741552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc94441bcf9cb8c59f51f23193316afefbf3ff858460cb47b5758bf66a14d130
MD5 e71f0df59313140476da2888d0465ff6
BLAKE2b-256 46baa34c3fb1eeedcf87c2ae88f29cf360e2db47c007c59b5f318ea59b584a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aed37db837ecb5962469fad448aaae0f0ee94ffce2062cf2eb9aed13328b5196
MD5 a55c5128195201ea5a46a41f42187317
BLAKE2b-256 921fcb8db371844bea90555b452239cb9163bddb20dcb438db6995ceab17d41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 525cd69eff44833b01f8ef39aa33a9cc53a99ff7f9d76a6ef6a9fb758f54d0ff
MD5 b7ac21a89cf1e46be32c3afd7c9fc17b
BLAKE2b-256 b1ff0806e82dd5da1d6f0f41786d8cfda20b384c91a59efcce89101bf9ee51bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a5211de242754b5e612557bca701f39f8b1a9408dff73c6db623f22d20f470e
MD5 815ee753985bd6476d7b4405d4bf0356
BLAKE2b-256 82cb1b8d1e245749155bc0deeae83ce9061c7a35c2ce7a4d9ada740f1151db0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 32435d134414e01d937cd9d6cc56e8413a8d4741dea36af5840c7750f04d16ab
MD5 963496634bdf144cae746977a68753aa
BLAKE2b-256 cdb15cea505c3f85a9419cb5fc78ea15bc3a607789a787550f56d4e3266c46da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 76.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d92d897cb4b4bf915fbeb5e604c7911021a8456f0964f3b8ebbe7f9188b9eabb
MD5 51e42bb9042ac1b9fcf463482b0bc578
BLAKE2b-256 8bd344103fb90e5b9d53cf141bc080f4141c7594f4238be3569581258bd6fff3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2a16ef5fa2382af83bef4a18c1b3bcb4284c4732906aa69422cf09df9c59f1f
MD5 9e0e70b72287368f1360be6a246c1f73
BLAKE2b-256 669a9e8b424719dcacf715b36227d8082cfb5bfcb010a1a43964de99fb861a23

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d350388ba1129bc867c6af1cd17da2b197dff0d2801036d2d7d83c2d771a682
MD5 a76d3f7adfcf1cb5f19f2379dd4b4b00
BLAKE2b-256 5a201a5acf2a873443c27efab14b62b60a750300e83899d93895b2dff7cb65e3

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0ab5baaea8450f4a3e241ef17e3d129b2143e38a685036b075976b9c415ea3eb
MD5 542e4efdd8af536c10cdab342d9a03ff
BLAKE2b-256 7129639abdc2a6894c602250c9496caf1c227881afc3d43048f57045747ca12d

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 af52725c7c39b0ee655befbbab5b9a1b209e01bb39128dce0db226a10014aacc
MD5 074c37db5c46a630b69c868f57688f61
BLAKE2b-256 342addfafda8707f4ed88c248bca8c8ed7ccbad8cac77bdbcad4fe5bbc8f4a43

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 297.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e0e7e83f31e23c5d00ff618045ddc5e916f9e613d33c5a5823bc0b0a0feb522f
MD5 a9fc53e470c9b338c2f47e79fa34bb43
BLAKE2b-256 a1697e9e9ad02dee02d37da92fe5222f46e07f720c39ee632b37603b0a54aeea

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca6b66f69e30f6e180d52f14d91ac854b8119553b524e0e28d5291a724f0f423
MD5 67e9eb8842f5e857f4d5e1e9ae05e3b4
BLAKE2b-256 431d85b2a40566cf201178c5bb36be80f2a94348314b9c5c0619b430aca8e9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 778df71c8d0c8c9f1b378624b26431ca80041660d7be7c3f724b2c7a6e65d0d6
MD5 0887f86b10e11b4eb58a5f8ae952f215
BLAKE2b-256 293cad22e0e531de4c773faa10baa21dd6676d0735b29681cd90c23507ce0e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d155a092bf0ebf4a9f6f3b7a650dc5d9a5bbb585ef83a52ed36ba46f55cc39d
MD5 56041ea36a1cb8b37e24fd2d5d96653a
BLAKE2b-256 9ae61a6c5db4a4a0a9e1b2d8c4ae59b7521453b7b02e352257763a56e13346f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8535e111a064f3bdd94c0ed443105934d6f005adad68dd13ce50a488a0ad1bf3
MD5 b0e22ff931defcd62a93b3e653d56933
BLAKE2b-256 b32f29392d80323ef7b5b10c2fb0c2c01ced0ba1184ed202c5f12ad0b51a153e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe8080b4f25dfc44a86bedd14bc4f9d469dfc6456e6f3c5d9077e81a5fedfba7
MD5 9281534ae62154d2dd9cd4cdba36c363
BLAKE2b-256 33793a81b66f8831b481b568be45d6ddce624c11ea5a2b43501962e23cf40496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9f9cafaf031c34d95c1528c16b2fa07b710e6056b3c4e2e34e9317072da5d1a
MD5 9dcedaad42691d0ef927909a0fcc4797
BLAKE2b-256 e203e6239565380e2e79ccf3d9d661a6500950528e08637b5914f32d4d4e0044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff34cb09a332832d1cf38acd0f604c068665192c6107a439a92abfd8acf90fe2
MD5 fca97a4900ff520195bbe7f17833310b
BLAKE2b-256 57de7eac1659d02eeabfa9311d7c2eb57853b8ec2a6a5196dd0f2d4af5907c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7831566595fe88ba17ea80e4b61c0eb599f84c85acaa14bf04dd90319a45b90
MD5 c03d4d341586f38b14796c5e11e08ea7
BLAKE2b-256 31d4f7c6a0bb9b8f3c491790bdb522ebccf0e7de0dce95f0e075125dd3bc45fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f3c8822bc8fb4a347a192dd6a28a25d7f0ea3262e826d7d4ef9cc99cd06d07e
MD5 18bbf7512317c15f7ec1060beb1892da
BLAKE2b-256 4ae89f0a882d2f1f59cce0f35d337e8c0d15af6fd61f6e413621451fd20b3997

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 76.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6465d36381af057d0fab4e0f24ef0e80ba61f03fe43e6eeccbe0056e74aadc70
MD5 770fd75c07cbc0dc6622c4e38ccd9b27
BLAKE2b-256 61dfc94ae0837331e8b273b2b2042264dd6dc1d7a666958974af20741a399837

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.9.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a2538806be846ea25e90c28786136932ec385c7ff3bc1148e45125984783dc6
MD5 54ed7caeb6bffe8f61cd9d5403360335
BLAKE2b-256 56909a5948b515afda0d09eb92996558719f69fca97477a3918fb685459f1343

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f74b015c99a5eac5ae589de27a1201418a5d9d460e89ccb3366015c6153e60a
MD5 86894c8d824230f78eb2e9a7e0013fca
BLAKE2b-256 87b2fa30fdcb4ede079032cc3ea1bd208249b80a7dd91ddb91bdb1e8a9e191a5

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4ce77d289f8d40905c054b63f29851ecbfd026ef4ba5c371a158cfe6f623663e
MD5 d6f37e4a2f5dc54743e8659ba6898a64
BLAKE2b-256 257ffca18a215ac3158696c30ec3ca74b9b0f11c6f00985bc408b58d0bcb7621

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7217234b10c64b52cc39a8d82550342ae2e45be34f5bff02b890b8c452eb48d7
MD5 3d06e45de402e1c898c0f6e6fe7665ba
BLAKE2b-256 a7a502cf50c9e2c35c7002dedfe26137853f11b26ce8eab85a6caab5977dc628

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 308.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c25ec06e4241e162f5d1f57c370f4078797ade95c9208bd0c60f484834f09c96
MD5 4f9419415103abeb9032fcb59a691d79
BLAKE2b-256 996a854762d5a30ac6d27d42d329a3696dd922f8cc033bf1f2d1cf7ff0b739b7

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6280353940f7e5e2efaaabd686193e61351e966cc02f401761c4d87f48c89ea4
MD5 219676a1b309b6773a188d18a1008b6c
BLAKE2b-256 e68bfb9e8ece6c5ee6617a0381e8321336c8ab34f78a53b06d163b695661771a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e73db54c967eb75037c178a54445c5a4e7461b5203b27c45ef656a81787c0c1b
MD5 260afb8f11f93324a945cc97e6e611db
BLAKE2b-256 08ea2af03dbc232ed09f12316df63ec9820dc97c263a632df446c3e1e38f9091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfd77e8e5cafba3fb584e0f4b935a59216f352b73d4987be3af51f43a862c403
MD5 55e9cd4108206fd1c0ea19fecd874f88
BLAKE2b-256 717c8befca50d8c376d1b1de0bcaaa50fc7f8ce850de6b6b86074251aafec53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53ec65f7eee8655bebb1f6f1607760d123c3c115a324b443df4f916383482a67
MD5 7d2b9ba4146932e4b94c6465b0b67f3f
BLAKE2b-256 d48186f8eca6188cb8007e4c2b0351da8f5057526a0f539217c94c770124a5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8d51817cf4b8d545963ec65ff06c1b92e5765aa98831678d0e2240b6e9fd281
MD5 22a3fabf6465ba18ab2eb1e1634c5d35
BLAKE2b-256 5e1f0678215345371ed4932c7272e1ad2811ad4c11aec9340c61eca41befee0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09c19e5f4404574fcfb736efecf75844ffe8610606f3fccc35a1515b8b6712c4
MD5 42c82bb78711e085e0edcd3eba1e8552
BLAKE2b-256 f97c82402bc01f41347a1c38b8dd7869b29c164f071e1d1d34f2eb3da4fc5777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dc72e891672343b99db6d497024bf8b985537ad6c393359dc5227ef653b2f17
MD5 084b1969d06f2a4b55fd6d3f85f1860d
BLAKE2b-256 bd53c4f7d909fc50b3c412c42edd1e85fd8ee55603adf27f486a6eeb60eb577b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a172c3d5447b7da1680a1a2d6ecdf6f87a319d21d52729f45ec938a7006d5d8
MD5 64471303e9f7b3a310486bf21fabc33c
BLAKE2b-256 8946edeb4c21fa2b0a90a9792cde16e8e6402d7ac068f1b9a1feb4fb876204a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bb72d2a94481e7dc7a0c522673db288f31849800d6ce2435317376a345728225
MD5 7b0094f5407c7b2e528e8148a1035bc7
BLAKE2b-256 98ff66b961c85ab82ff6fa51def4bf813a6e7ebcb130fb96b026451eb0f4e91a

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: yarl-1.9.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 76.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2dad8166d41ebd1f76ce107cf6a31e39801aee3844a54a90af23278b072f1ccf
MD5 a3fab1c9185d95a1bc1bb63d49f59da6
BLAKE2b-256 219b9780c88057914ea6bf34296894d256eaba8dda07bf52eb8bedf82cc92dc3

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: yarl-1.9.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 70.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 946db4511b2d815979d733ac6a961f47e20a29c297be0d55b6d4b77ee4b298f6
MD5 f2762abca8c5a2d81715fa86f1116ead
BLAKE2b-256 4550e6d08a6b95720b0068af1abaf384880c3629cc33ffffedb7bacb373cc655

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1a0a4f3aaa18580038cfa52a7183c8ffbbe7d727fe581300817efc1e96d1b0e9
MD5 e605e860908a6ac23b9476bda1469e34
BLAKE2b-256 ed91e103dddd89dd36582d7143506955118adacc6a3019f36434817733fba890

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 66a6dbf6ca7d2db03cc61cafe1ee6be838ce0fbc97781881a22a58a7c5efef42
MD5 297742091b94b058779789c2c2960d4e
BLAKE2b-256 13ff2b5dae30134055e16c4c3483cbc1170f2cce2bd61eb525407c2c5c349427

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7eaf13af79950142ab2bbb8362f8d8d935be9aaf8df1df89c86c3231e4ff238a
MD5 3b3412f9289d817814e4b540288a97e4
BLAKE2b-256 40c8cc405f0fc9d36c184f0214bf5cf107af441893f5267650fbc7a33ace1666

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8f18a7832ff85dfcd77871fe677b169b1bc60c021978c90c3bb14f727596e0ae
MD5 1169e033118aea196c548ed0a746d427
BLAKE2b-256 fb14fb9381ef0c37a46e774f0f79164c148c248ad378d2cf1b468e233c4cb124

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 28a108cb92ce6cf867690a962372996ca332d8cda0210c5ad487fe996e76b8bb
MD5 4229fad00128965b0ede1bdddc5c3fc9
BLAKE2b-256 50f609607be0e3b36e518b7090ec43d73d68d227f92533e61f06541b279c99a8

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc391e3941045fd0987c77484b2799adffd08e4b6735c4ee5f054366a2e1551d
MD5 76abb7d154cbe0ebb37857c05f4d7234
BLAKE2b-256 3e595db6972534855d21c4194dc6d57b0ad8aa88298bf43c8b1aa941ae338fc4

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 828235a2a169160ee73a2fcfb8a000709edf09d7511fccf203465c3d5acc59e4
MD5 288142251d01d82f1a56c1bb49488bca
BLAKE2b-256 9e505b60928cb0f2575d8e72118cafc8f592801dadf986cf557f8daf9c64d24b

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dab30b21bd6fb17c3f4684868c7e6a9e8468078db00f599fb1c14e324b10fca
MD5 f9f7fc3c6bcf27750114831876a33288
BLAKE2b-256 8ebb7b82f9af61bf3cb10377bd186c2369bdf3d41d93aa2c3b907252795c820e

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c99ddaddb2fbe04953b84d1651149a0d85214780e4d0ee824e610ab549d98d92
MD5 e8b4f9d146dec1e497b1c833fa3f25b6
BLAKE2b-256 47a130597a5c4c8b1cb909ced9bcf4beae6acb9adbbeba2dc458ab2fa91d9fdc

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51382c72dd5377861b573bd55dcf680df54cea84147c8648b15ac507fbef984d
MD5 ed7710af8a6fb3a548d12c9db10415b9
BLAKE2b-256 e2c071b6fe65a0a3480b82702d42db444f18da3decaec5e4c1cc12372f3e26b5

See more details on using hashes here.

File details

Details for the file yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 126638ab961633f0940a06e1c9d59919003ef212a15869708dcb7305f91a6732
MD5 f803fd6229d1323cbf6f2b5edbc0619c
BLAKE2b-256 fab80423f3fdc67bc73cee06ec439c9630c25e637ae65a9927ba076797f61c00

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page