Skip to main content

Yet another URL library

Project description

yarl

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 Chat on Gitter

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.readthedocs.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 setting the YARL_NO_EXTENSIONS environment variable to a non-empty value, e.g.:

$ YARL_NO_EXTENSIONS=1 pip install yarl

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

Changelog

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 (?P=rendered_text). (#665)

  • Fixed broken external references to (?P=rendered_text) 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 msg 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 ; char in value param (#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 args unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behaviour (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behaviour (#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 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.

Project details


Release history Release notifications | RSS feed

This version

1.8.2

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

yarl-1.8.2-cp311-cp311-win_amd64.whl (55.3 kB view details)

Uploaded CPython 3.11Windows x86-64

yarl-1.8.2-cp311-cp311-win32.whl (51.8 kB view details)

Uploaded CPython 3.11Windows x86

yarl-1.8.2-cp311-cp311-musllinux_1_1_x86_64.whl (246.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

yarl-1.8.2-cp311-cp311-musllinux_1_1_s390x.whl (256.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

yarl-1.8.2-cp311-cp311-musllinux_1_1_ppc64le.whl (252.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

yarl-1.8.2-cp311-cp311-musllinux_1_1_i686.whl (239.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

yarl-1.8.2-cp311-cp311-musllinux_1_1_aarch64.whl (243.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

yarl-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

yarl-1.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

yarl-1.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (282.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

yarl-1.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

yarl-1.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (265.8 kB view details)

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

yarl-1.8.2-cp311-cp311-macosx_11_0_arm64.whl (56.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yarl-1.8.2-cp311-cp311-macosx_10_9_x86_64.whl (59.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.8.2-cp311-cp311-macosx_10_9_universal2.whl (92.8 kB view details)

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

yarl-1.8.2-cp310-cp310-win_amd64.whl (56.1 kB view details)

Uploaded CPython 3.10Windows x86-64

yarl-1.8.2-cp310-cp310-win32.whl (52.5 kB view details)

Uploaded CPython 3.10Windows x86

yarl-1.8.2-cp310-cp310-musllinux_1_1_x86_64.whl (248.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

yarl-1.8.2-cp310-cp310-musllinux_1_1_s390x.whl (252.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

yarl-1.8.2-cp310-cp310-musllinux_1_1_ppc64le.whl (249.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

yarl-1.8.2-cp310-cp310-musllinux_1_1_i686.whl (243.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

yarl-1.8.2-cp310-cp310-musllinux_1_1_aarch64.whl (241.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

yarl-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

yarl-1.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (265.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

yarl-1.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (266.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

yarl-1.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (257.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

yarl-1.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (254.2 kB view details)

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

yarl-1.8.2-cp310-cp310-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yarl-1.8.2-cp310-cp310-macosx_10_9_x86_64.whl (61.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.8.2-cp310-cp310-macosx_10_9_universal2.whl (95.6 kB view details)

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

yarl-1.8.2-cp39-cp39-win_amd64.whl (56.8 kB view details)

Uploaded CPython 3.9Windows x86-64

yarl-1.8.2-cp39-cp39-win32.whl (53.0 kB view details)

Uploaded CPython 3.9Windows x86

yarl-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl (255.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

yarl-1.8.2-cp39-cp39-musllinux_1_1_s390x.whl (261.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

yarl-1.8.2-cp39-cp39-musllinux_1_1_ppc64le.whl (259.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

yarl-1.8.2-cp39-cp39-musllinux_1_1_i686.whl (250.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

yarl-1.8.2-cp39-cp39-musllinux_1_1_aarch64.whl (251.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

yarl-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

yarl-1.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

yarl-1.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (271.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

yarl-1.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

yarl-1.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (256.9 kB view details)

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

yarl-1.8.2-cp39-cp39-macosx_11_0_arm64.whl (57.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yarl-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl (61.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

yarl-1.8.2-cp39-cp39-macosx_10_9_universal2.whl (95.6 kB view details)

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

yarl-1.8.2-cp38-cp38-win_amd64.whl (56.9 kB view details)

Uploaded CPython 3.8Windows x86-64

yarl-1.8.2-cp38-cp38-win32.whl (53.1 kB view details)

Uploaded CPython 3.8Windows x86

yarl-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl (263.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

yarl-1.8.2-cp38-cp38-musllinux_1_1_s390x.whl (271.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

yarl-1.8.2-cp38-cp38-musllinux_1_1_ppc64le.whl (269.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

yarl-1.8.2-cp38-cp38-musllinux_1_1_i686.whl (260.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

yarl-1.8.2-cp38-cp38-musllinux_1_1_aarch64.whl (260.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

yarl-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (262.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

yarl-1.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

yarl-1.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (270.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

yarl-1.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

yarl-1.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (254.5 kB view details)

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

yarl-1.8.2-cp38-cp38-macosx_11_0_arm64.whl (57.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

yarl-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl (60.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

yarl-1.8.2-cp38-cp38-macosx_10_9_universal2.whl (95.0 kB view details)

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

yarl-1.8.2-cp37-cp37m-win_amd64.whl (56.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

yarl-1.8.2-cp37-cp37m-win32.whl (52.7 kB view details)

Uploaded CPython 3.7mWindows x86

yarl-1.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl (233.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

yarl-1.8.2-cp37-cp37m-musllinux_1_1_s390x.whl (238.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

yarl-1.8.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (237.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

yarl-1.8.2-cp37-cp37m-musllinux_1_1_i686.whl (229.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

yarl-1.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl (230.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

yarl-1.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

yarl-1.8.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (236.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

yarl-1.8.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (238.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

yarl-1.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

yarl-1.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (225.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

yarl-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: yarl-1.8.2.tar.gz
  • Upload date:
  • Size: 172.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2.tar.gz
Algorithm Hash digest
SHA256 49d43402c6e3013ad0978602bf6bf5328535c48d192304b91b97a3c6790b1562
MD5 57c82725b9f4895eecee45faf5e61a54
BLAKE2b-256 c41e1b204050c601d5cd82b45d5c8f439cb6f744a2ce0c0a6f83be0ddf0dc7b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 55.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8c46d3d89902c393a1d1e243ac847e0442d0196bbd81aecc94fcebbc2fd5857c
MD5 ad2cd900a8b23146199532fe3926e9d1
BLAKE2b-256 8859fd28cddd2fe1806cde775c61b43dfe824b672bef1d214383fd86ead3db93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 51.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fb742dcdd5eec9f26b61224c23baea46c9055cf16f62475e11b9b15dfd5c117b
MD5 e60115e60c0778f84f49a4391fc7db71
BLAKE2b-256 11eac5487522577f3b029a39da71bbe81d7b13303894bde26c88046b2a180e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d88056a04860a98341a0cf53e950e3ac9f4e51d1b6f61a53b0609df342cc8b2
MD5 b4ad4476769db83a1d3b8f8f6333510d
BLAKE2b-256 7f13a4b6ffff8f3278c020d6b7c42fee53133f6165d347db94bdd9ae394ba4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 75c16b2a900b3536dfc7014905a128a2bea8fb01f9ee26d2d7d8db0a08e7cb2c
MD5 25b734aee7375490f4fb9b8c4bdfc4d4
BLAKE2b-256 5f3c59d045a4094f11dea659b69bfca8338803f6cb161da5b039d35cb415a84d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e7fd20d6576c10306dea2d6a5765f46f0ac5d6f53436217913e952d19237efc4
MD5 f1ecc209c34a52f184df69d82d2714aa
BLAKE2b-256 c61c4a992306ad86a8ae5a1fb4745bd76c590e7bcdb01ce2203dfd38dc830dfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 239.6 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4d04acba75c72e6eb90745447d69f84e6c9056390f7a9724605ca9c56b4afcc6
MD5 775e87c145caa4b972e922e3edaaf23e
BLAKE2b-256 52e47bcabff7bc7b8421bef266bc955367f586d48667eb0a6ae812852feb51e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c15163b6125db87c8f53c98baa5e785782078fbd2dbeaa04c6141935eb6dab7a
MD5 69700898dc854902ddb55fa1c55d57a8
BLAKE2b-256 9bd27813ebb6fe192e568c78ba56658f7a26caeceff6302a96808512f5ee40fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42430ff511571940d51e75cf42f1e4dbdded477e71c1b7a17f4da76c1da8ea76
MD5 b4005b04e49241873a8fd1117d310d86
BLAKE2b-256 7c9a6f2039a5578f2af2d36f22173abf22c957970e908617b90e12552f7dfc9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2305517e332a862ef75be8fad3606ea10108662bc6fe08509d5ca99503ac2aee
MD5 621ac92bbb1ade796b5f4a5bca3df65d
BLAKE2b-256 cb8291f74496b653ac9a6220ee499510377c03a4ff768c5bd945f6759b23ebb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 388a45dc77198b2460eac0aca1efd6a7c09e976ee768b0d5109173e521a19daf
MD5 3fc0484b590de550ce77894b3f875b87
BLAKE2b-256 c0fd2f7a640dc157cc2d111114106e3036a69ba3408460d38580f681377c122d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0978f29222e649c351b173da2b9b4665ad1feb8d1daa9d971eb90df08702668a
MD5 46cac56c5f7bbe1d39012b0284e80238
BLAKE2b-256 20239ed12660f860962f179bca719b1d8a895c572c5dbb75098d35d074d35703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3150078118f62371375e1e69b13b48288e44f6691c1069340081c3fd12c94d5b
MD5 7411e08b7c2ee8d5f463d5af73e03a3f
BLAKE2b-256 ba85f9e3350daa31161d1f4dfb10e195951df4ac22d8f201603cf894b37510c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77e913b846a6b9c5f767b14dc1e759e5aff05502fe73079f6f4176359d832581
MD5 18e743ccf707ec0303d84e26b69666bb
BLAKE2b-256 e6d35f5b39db2c8c09f6923418c9329a04fe6f68825f27d2cb9776871d75ddc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f37db05c6051eff17bc832914fe46869f8849de5b92dc4a3466cd63095d23dfd
MD5 9ae57ca84b43e25713393423837cfcb1
BLAKE2b-256 caf32ef9870409b3ea57a5890e4e49b6bfd6e347a45fe92f6b2e9567abfefb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a1fca9588f360036242f379bfea2b8b44cae2721859b1c56d033adfd5893634
MD5 dedeb9ade5d179685225c3d073ef30a8
BLAKE2b-256 0251c33498373d2e0ff5d7f3e76038b7057003927d481405780d22f140906b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 56.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24ad1d10c9db1953291f56b5fe76203977f1ed05f82d09ec97acb623a7976574
MD5 7baf25661d0dee46160731a25c75ded7
BLAKE2b-256 5e816691d7dd1c6ca607a4d6804557e6e0bf43dd52ad8ae2bf8bdca2e5cce54d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 52.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b05df9ea7496df11b710081bd90ecc3a3db6adb4fee36f6a411e7bc91a18aa42
MD5 328b3031792338833c3c0d381602cc6e
BLAKE2b-256 3eda942a19605c385e887a0ed784429d95a608a54cd0aa8dc9b44396bc8b57f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfa2bbca929aa742b5084fd4663dd4b87c191c844326fcb21c3afd2d11497f80
MD5 d636b53158b8f632650929638b4e7214
BLAKE2b-256 0604add788ffdf590fd8d7aa93bd0add24d369fbf864548adf80bab8c8587bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 63243b21c6e28ec2375f932a10ce7eda65139b5b854c0f6b82ed945ba526bff3
MD5 c50b40f8c22746363b16d478c98623ba
BLAKE2b-256 dec2bdfaa94701e9f1dbd0dfd0454bcb56cf49669ba4591361161fbc5a5ef455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 df60a94d332158b444301c7f569659c926168e4d4aad2cfbf4bce0e8fb8be826
MD5 7cf721e785eaf99687bbdf4a3baaa77f
BLAKE2b-256 d350a9a7e280bb94def4a7497d27dd0c9fc87c6feb2ef9cf7639df15b2d0a1e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 243.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 74dece2bfc60f0f70907c34b857ee98f2c6dd0f75185db133770cd67300d505f
MD5 2bf7471ed572de1b2483f032e519e54a
BLAKE2b-256 bac28760e6df148cb9d092894decfd9fcf07593bfff26f6716f992d5a1ca7a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bf071f797aec5b96abfc735ab97da9fd8f8768b43ce2abd85356a3127909d146
MD5 33af7482b393b06851d308567442b72d
BLAKE2b-256 c6dc50fe7fdcf3d27828a5922aaa1c4cbdf2d03827cd5ca6ace2757289e5ee18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c4fcfa71e2c6a3cb568cf81aadc12768b9995323186a10827beccf5fa23d4f8
MD5 3c056b51cd2440ff4f8e41fe6b146ea5
BLAKE2b-256 b5e06ea3832faed10de6a06cd407c660e6978d5538fe7489e934fb9967c8bb8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de986979bbd87272fe557e0a8fcb66fd40ae2ddfe28a8b1ce4eae22681728fef
MD5 6582942750743d6e3ca5589b13995ea8
BLAKE2b-256 df8e6163228567a53797d5468d39ec6d9133fa78aeb3490ff6a979730e056209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10b08293cda921157f1e7c2790999d903b3fd28cd5c208cf8826b3b508026996
MD5 982704a16dfd08a4338bff72801f6a6f
BLAKE2b-256 cf4c4d0d1a5c50fab50ae368b9a8af1e1e6437fe1dc28ff8a04a06a90136af63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58a3c13d1c3005dbbac5c9f0d3210b60220a65a999b1833aa46bd6677c69b08e
MD5 61affe2d90ccc48de8046292bb6bec5f
BLAKE2b-256 bed8fcf074e9c246a0d22241f94d474794c876c073a3191d1608a64492d7ea4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae4d7ff1049f36accde9e1ef7301912a751e5bae0a9d142459646114c70ecba6
MD5 c3df52cc7e7cbc76ee81e26f889159f6
BLAKE2b-256 b9bd42b39f09ed7b26ed810900f513cd579d5918e3ca39de22f5c5f401a7c102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fc056e35fa6fba63248d93ff6e672c096f95f7836938241ebc8260e062832fe
MD5 017f6481a6dba02f333efa08bf9b7d73
BLAKE2b-256 0d8890457ba43e9d4424ee58a1adfa04c717569ab31456480958576ac3e8cfff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47d49ac96156f0928f002e2424299b2c91d9db73e08c4cd6742923a086f1c863
MD5 e308e637de9d452ddb796fe80e9e1ee8
BLAKE2b-256 4237d8eae7ce26f39d0115375e3b654714c550933ffefa4d07104f85d0d37b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bb81f753c815f6b8e2ddd2eef3c855cf7da193b82396ac013c661aaa6cc6b0a5
MD5 a10c73f3aa866857620918ebd2e6411c
BLAKE2b-256 886f6ed536b68a754fe337f6d8b7686d6c28d7474c5326087eb76dd1a9975675

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 56.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6604711362f2dbf7160df21c416f81fac0de6dbcf0b5445a2ef25478ecc4c778
MD5 4957a9ed18718ad4068faa14a3460290
BLAKE2b-256 994fe756d7569e3999bd7493be53a66b2e59caa97c70fec4f6fd17ea3315c0ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 53.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb6d48d80a41f68de41212f3dfd1a9d9898d7841c8f7ce6696cf2fd9cb57ef83
MD5 3bee8c6c42130972343afb9b61211632
BLAKE2b-256 149c80ccfc199679bea8fa6982a49c88ac54a1ec0c8c033bede70fa84fcd13ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 255.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d617c241c8c3ad5c4e78a08429fa49e4b04bedfc507b34b4d8dceb83b4af3588
MD5 2bb3e6c2f4cb6499925269cafba6fcc4
BLAKE2b-256 c829388508ba25f7cf777fac774c01cfb4ebf805efa3a567c4e2da570983e13a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 261.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e59399dda559688461762800d7fb34d9e8a6a7444fd76ec33220a926c8be1516
MD5 69890fe41f01fb2f98eab1d9a01448f3
BLAKE2b-256 5c2c8a41574a0afd95f4b4e8eb3477361ec3515ca8daddba441b49c2be70b7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 48dd18adcf98ea9cd721a25313aef49d70d413a999d7d89df44f469edfb38a06
MD5 1546dc38f482f0c847102c5c4b38bfaa
BLAKE2b-256 b853ceec5140e3cb51c904bb87fca5cf6a3ba5d98b0ea13991dd21833d90662e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.8.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 97209cc91189b48e7cfe777237c04af8e7cc51eb369004e061809bcdf4e55220
MD5 79b93d480c66ef6f9735e8307e80f208
BLAKE2b-256 c24d2d0cd4867b4699291479f329c8cfd3943edafe5ba7c250c31f7a65af2196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44ceac0450e648de86da8e42674f9b7077d763ea80c8ceb9d1c3e41f0f0a9951
MD5 d320165c9a58781a2b77e2443de0828a
BLAKE2b-256 97bbc03ef39330f6d302863746c80094f566e5ff9949bc267062d4dcdc8e2264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ef8fb25e52663a1c85d608f6dd72e19bd390e2ecaf29c17fb08f730226e3a08
MD5 2bbcf343a3fa04f34c05d23cd9513fbf
BLAKE2b-256 534a379701b5373a47b49d2a590fd2a7f8502fb4f7da79eb187ee3f25e8fd84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da65c3f263729e47351261351b8679c6429151ef9649bba08ef2528ff2c423b2
MD5 8f863f2596dc2d318a9ee19eb34e74b5
BLAKE2b-256 214747ef6563db61f6ecf9b23ac1b76682ec92b94cdd41fe645525411c127608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3edac5d74bb3209c418805bda77f973117836e1de7c000e9755e572c1f7850d0
MD5 c2b6575d475393d27b4f020ff939e326
BLAKE2b-256 6f3ea9fc9c32ba8788758af0bb95edc0e75853561259dabd47920a6ef820c242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 009a028127e0a1755c38b03244c0bea9d5565630db9c4cf9572496e947137a87
MD5 0fad0663390b2e80b84211fb9c118ba3
BLAKE2b-256 f1e1e76a76353444f895a1f0b52e71c28d27a25c4657e51ed30666ef7bb7ff74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcd7bb1e5c45274af9a1dd7494d3c52b2be5e6bd8d7e49c612705fd45420b12d
MD5 4d87f64dbdbc618fd8181047a939d4ca
BLAKE2b-256 4c8a4ebd7bbee5fc9a77a2d382ef8c6d1d6bff77362df4fbd0efe4c810c3a155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 57.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae0eec05ab49e91a78700761777f284c2df119376e391db42c38ab46fd662b77
MD5 2c71e73853de2f64879be398a6149a5b
BLAKE2b-256 b27378372b24715d2b34348445ef501430d9d60ab11dcc2e20fd94cf2d086fcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 61.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 418857f837347e8aaef682679f41e36c24250097f9e2f315d39bae3a99a34cbf
MD5 d9980416f1e26137145e5a03e641afef
BLAKE2b-256 8bcc340f4cbea79da7462c5033108b674b42b7e0c1bcf7b0177da839e27a4afb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f8ca8ad414c85bbc50f49c0a106f951613dfa5f948ab69c10ce9b128d368baf8
MD5 67f79ff02faff252378eabf61158498a
BLAKE2b-256 219cd3b5976d5de5ece14e50a8452d573ac1746fa377346f1bb099fcc3900c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 56.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 326dd1d3caf910cd26a26ccbfb84c03b608ba32499b5d6eeb09252c920bcbe4f
MD5 c9e389b9459c838959f7426314a958fe
BLAKE2b-256 f9fa9c746d29462714663d04cf9e34cc44a86efa17705a811c77556643b80f1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 53.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 272b4f1599f1b621bf2aabe4e5b54f39a933971f4e7c9aa311d6d7dc06965165
MD5 aea69d03de3a19b4106b9c7f93e4b7fb
BLAKE2b-256 a1befb772a7a6fa8246cea3499fdf558b81a0a269b7cf6b5ff2bdaf180104c2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 263.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 baf211dcad448a87a0d9047dc8282d7de59473ade7d7fdf22150b1d23859f946
MD5 c2686588822b78505cd411f41dcd9f5f
BLAKE2b-256 ece8eaa1e4f8084f3533c4c8d1077b3aac1654975eaa497132cd14a369b7dbd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 271.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ff205b58dc2929191f68162633d5e10e8044398d7a45265f90a0f1d51f85f72c
MD5 be43fb7689b8d18bb864177495d8a4cf
BLAKE2b-256 a639ac5344a9490f1484b1098f5285c34691ba77e32662f8e4600b4c40980ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 728be34f70a190566d20aa13dc1f01dc44b6aa74580e10a3fb159691bc76909d
MD5 40c2d2164a72ed9eee34b7c59c1caad9
BLAKE2b-256 05b8db3ee364931d959c62ad4c5f636a36eff7b388e3a310d425f91269bf8f0c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.8.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dfef7350ee369197106805e193d420b75467b6cceac646ea5ed3049fcc950a05
MD5 d5374bfb34047a885b290c2fdf1228b3
BLAKE2b-256 81e5d2b70c55a217697629fd653b33e9ac209bb465dbbad44dadb0a009900ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e6f3515aafe0209dd17fb9bdd3b4e892963370b3de781f53e1746a521fb39fc0
MD5 cb7e69749399cf076eec5125a07f9287
BLAKE2b-256 54e95ec82331620403dfc1b76f1c97771375e1ec1725e95c6906998c9b7eea26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64dd68a92cab699a233641f5929a40f02a4ede8c009068ca8aa1fe87b8c20ae3
MD5 53b104307eb34c0b0b58e5cf0026461c
BLAKE2b-256 b30d0ba1f2022b9a36ae670c1f3c579ed08d0958398cb6beaf4687e606ad33d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc77086ce244453e074e445104f0ecb27530d6fd3a46698e33f6c38951d5a0f1
MD5 bbdc97ce8282184c8b8ce008bd409356
BLAKE2b-256 c1a77a1b5dfdc8d86784d3f0a5769721aaa0dec1633236f0ee237264cb515cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93202666046d9edadfe9f2e7bf5e0782ea0d497b6d63da322e541665d65a044e
MD5 244151093082aaaf3e6d4388a1f1a771
BLAKE2b-256 3c82badd5416e11351a9fb513a0ce8573f3abd8581aed8db595601023645b575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e21fb44e1eff06dd6ef971d4bdc611807d6bd3691223d9c01a18cec3677939e
MD5 1e3ee00a0a6cce97f72bc34fbe2859be
BLAKE2b-256 6ade90a6baeb12f8a09f4b17c2cb274fbadcb6469f5b66993f36d08c1bbb095d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b372aad2b5f81db66ee7ec085cbad72c4da660d994e8e590c997e9b01e44901
MD5 bbf32082b9bd1ee0932b6942c27a7fe5
BLAKE2b-256 4f1a043606ef5e785efede363552c002e53bd2ce3bbea7fdf5ada8cbe9b39b2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 57.6 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b4fa2606adf392051d990c3b3877d768771adc3faf2e117b9de7eb977741229
MD5 8ee507035ad6be857facc5b3acedb379
BLAKE2b-256 d7563e792cef8ad8a904d11850101a7b4f3f0a1364c77f2f6278b41d75028118

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a66c506ec67eb3159eea5096acd05f5e788ceec7b96087d30c7d2865a243918
MD5 e1e78896e15f2ee4c36566c3ad7cc28f
BLAKE2b-256 b9e466e2f32179075d2b5e1c0046b7cd23b1a4c71584765255fed51b89b6efe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 95.0 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5df5e3d04101c1e5c3b1d69710b0574171cc02fddc4b23d1b2813e75f35a30b1
MD5 4121d17d7ceb4c28ae13209837a79412
BLAKE2b-256 6769129bf73c5fe35a8c0ad1500bf4e1145e610ef956316784911fee41a7fae7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d881d152ae0007809c2c02e22aa534e702f12071e6b285e90945aa3c376463c5
MD5 f68d248cd9091bcac08b5980adc586ca
BLAKE2b-256 64cdb246a3d8dcbddd8bb3eeb83a4dda9b416d076ca93d48fe9364f533f74b2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0414fd91ce0b763d4eadb4456795b307a71524dbacd015c657bb2a39db2eab89
MD5 e1460073d733300dbaecd448708495fc
BLAKE2b-256 edcd14b70241fce4f1770bdd51d6c926d56f82aa9e6de89386e48610e81bafae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a48f4f7fea9a51098b02209d90297ac324241bf37ff6be6d2b0149ab2bd51b37
MD5 0e2983ebd3454caa4b1962334eb780bb
BLAKE2b-256 2eddf1b1d3ddbc2f37f9cad188c984ac3ed0b3726b152b78d91ae7b24c49d3b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp37-cp37m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 238.4 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 34c09b43bd538bf6c4b891ecce94b6fa4f1f10663a8d4ca589a079a5018f6ed7
MD5 95cc5c89db844671add120de46570e5d
BLAKE2b-256 1876c0516fab27d4e9c7d4364418430fcf63cb0b0437d7470ae226aba948f568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 705227dccbe96ab02c7cb2c43e1228e2826e7ead880bb19ec94ef279e9555b5b
MD5 26983d0fb3a62555fc985694297ac6b7
BLAKE2b-256 ea4c7b7728f7db3dcf126a26fc07b4cbef20e6c1fdddc2ba03f0c0fc4b7b3db3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.8.2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 229.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.15

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a783cd344113cb88c5ff7ca32f1f16532a6f2142185147822187913eb989f739
MD5 38e0ad2ca1e5f8ec21a94cc9734042a8
BLAKE2b-256 04d82d1d9941715076b4585a054ad2e500ac7ea309c050c60c39a89caa3d50d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 efff27bd8cbe1f9bd127e7894942ccc20c857aa8b5a0327874f30201e5ce83d0
MD5 876364de0a68750119fd74284fa81891
BLAKE2b-256 7aa5b0e5ec63f806465381df8db27690757e072bcdca21aebb9419ea72e12d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3adeef150d528ded2a8e734ebf9ae2e658f4c49bf413f5f157a470e17a4a2e89
MD5 8998d9472fc20af8c017d8779a17de10
BLAKE2b-256 02c613751bb69244e4835fa8192a20d1d1110091f717f1e1b0168320ed1a29c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebb78745273e51b9832ef90c0898501006670d6e059f2cdb0e999494eb1450c2
MD5 decebec9e3be6dec986e8e93d9a88cb7
BLAKE2b-256 c8b179645f117946e9d6fbc4880d5703393891f1ad7520dceb425754e6d93a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1684a9bd9077e922300ecd48003ddae7a7474e0412bea38d4631443a91d61077
MD5 445479db12abc9f86ebbac783971b7a0
BLAKE2b-256 1369714c371c8efee12a110e9a6775bf15a41755d41408f974731856f8bfe89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f6b4aca43b602ba0f1459de647af954769919c4714706be36af670a5f44c9c1
MD5 e5902def16a0c4c69cce155b52df62d1
BLAKE2b-256 9ff063ceb39bb191f7559bfe53afcd919c105d503fbf7712d0fb10d92db879e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57a7c87927a468e5a1dc60c17caf9597161d66457a34273ab1760219953f7f4c
MD5 112ba8bcc9a313669aab7c7e84f05cce
BLAKE2b-256 2285be8df871b9294272129306359d30f69c046fcc9a5df8528c2ff35af32735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ceff9722e0df2e0a9e8a79c610842004fa54e5b309fe6d218e47cd52f791d7ef
MD5 a8845a0466df3888cceaa0ad794ce563
BLAKE2b-256 83156a532d39772d24e0383b83bccb252ddc97da7943fca96c1e1696af834e48

See more details on using hashes here.

Supported by

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