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 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.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 :py``(?P=rendered_text)`` return NotImplemented if called with an unsupported type — by (?P=rendered_text). (#832)

Bugfixes

  • Path normalisation 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 :py``(?P=rendered_text)`` raise a :py``(?P=rendered_text)`` if the host argument is :py``(?P=rendered_text)`` — by (?P=rendered_text). (#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 (?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

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

Uploaded Source

Built Distributions

yarl-1.9.2-cp311-cp311-win_amd64.whl (60.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.2-cp311-cp311-win32.whl (56.7 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl (260.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl (256.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl (244.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl (248.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (286.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.6 kB view details)

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

yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl (61.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl (64.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl (97.6 kB view details)

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

yarl-1.9.2-cp310-cp310-win_amd64.whl (61.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.2-cp310-cp310-win32.whl (57.4 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl (252.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl (257.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl (255.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl (248.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl (246.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (270.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (271.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (262.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (258.9 kB view details)

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

yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl (62.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl (65.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl (100.3 kB view details)

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

yarl-1.9.2-cp39-cp39-win_amd64.whl (61.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.2-cp39-cp39-win32.whl (57.9 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl (259.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl (266.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl (264.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl (255.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl (256.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (274.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (276.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (261.6 kB view details)

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

yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl (62.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl (65.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl (100.4 kB view details)

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

yarl-1.9.2-cp38-cp38-win_amd64.whl (61.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.2-cp38-cp38-win32.whl (58.0 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl (268.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl (276.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl (274.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl (265.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl (265.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (273.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (274.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (263.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (259.4 kB view details)

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

yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl (62.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl (65.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl (99.8 kB view details)

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

yarl-1.9.2-cp37-cp37m-win_amd64.whl (61.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.9.2-cp37-cp37m-win32.whl (57.6 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl (237.8 kB view details)

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

yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl (243.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (242.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl (234.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl (235.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.2 kB view details)

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

yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (241.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (243.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (230.1 kB view details)

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

yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl (64.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2.tar.gz
Algorithm Hash digest
SHA256 04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571
MD5 4e46a0c7078d34d9734a7c5d182dee92
BLAKE2b-256 5f3f04b3c5e57844fb9c034b09c5cb6d2b43de5d64a093c30529fd233e16cf09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051
MD5 936c6cf2388e13b2bee9bafe8746958f
BLAKE2b-256 6b83e0cb0cbb37098475fca29b8c5000fed417b67fc2c6dc8d0fa7e32c000c80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8
MD5 42b4a9158c013b8e0edf20a743dd4561
BLAKE2b-256 d9cb0bfa73fad2049b6315ace645df2bd0682e20f9eb2dac120c2e9183359aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a
MD5 30eca9589fc73bf1ee64cc3ec37c1d9e
BLAKE2b-256 d58b5a30baa12464d55b308c684a4a953df6b2190f7733c92719f194fcd42421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7
MD5 fd2b5782957c93ee846e5ae42c72eb8e
BLAKE2b-256 3bb234e45989fa5fcf406dd471c517697a5bf483fb1bcaebcf2bedd2b86e0cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be
MD5 8077accea4e06aff47b0e2f1e224eef7
BLAKE2b-256 62c8b8e048ba98a0f41d46a22060a57f913b4f9ed9c4f6862de36b8137bb67e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9
MD5 59d6fa8c09ff41615a4ba4d88b0d3373
BLAKE2b-256 1d78a273c991086df02837676dc68ccf50d56b2fe624d75258d521c651a65d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8
MD5 8111c692d4d0321acdbd2ef06bf2f06d
BLAKE2b-256 de3f5a8fcff69c8628ce4dab00612981f4c0598fb9aabd90d01a1ebb037bb6f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7
MD5 bad45989157fa41ca47f3a829b7bfb6c
BLAKE2b-256 ee8d55467943a172b97c1b5d9569433c1a70f86f1f9b0f1c6574285f8ad02fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d
MD5 03a3dc526b9760463348ecaf4d3f9f72
BLAKE2b-256 350fa68344daf90536755f4a890dbbab65dc6ca58c4a0268cf79bd7c5ddc1468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191
MD5 243d2fab74bb606d862dc4cacda0f3c1
BLAKE2b-256 b7aa8b53bceea5454d0b5602ffc81aaf3b80cc2e9b793fe1e054f690beb82429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2
MD5 5df3f89ef62eda42393fa7f63ebd448d
BLAKE2b-256 5387f5588bdc6eba3ca4521bd37094563e8442ba2cff3d6b7e5a2cab48fdc96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6
MD5 b60e0afa4438bec7d8d2f490e78ad440
BLAKE2b-256 50af93f1b6d02e936d49e664a8eb4374877e5bacfef115c956939729ac9e2ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0
MD5 f30f751225a4b48f8e2155042ad2df4a
BLAKE2b-256 b381fb394392ec748d8fce66212b29dc2fd9b2fd8e30d56d818a6a866708e534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb
MD5 2276a10c4f2994828ece47b8349a6d82
BLAKE2b-256 fe7d9d85f658b6f7c041ca3ba371d133040c4dc41eb922aef0a6ba917291d187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6
MD5 c678e499379f55ef4eae2a273728cfc9
BLAKE2b-256 84c1eaebee42cbcace2d5b5eb103cae668dec1c239f5c82b90da4b3b20f39419

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde
MD5 cf49f20e918f7c40341d7a90374fb082
BLAKE2b-256 98219ef4adf36cfac771518c3bf687bc9b92451bdaf01ec770879f19e7e5b3c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3
MD5 60be154e55b54e1117c59f3e8129b49d
BLAKE2b-256 3055eda822473c6206470a89ca3550efa23202310a2e56317e55afb709008fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528
MD5 783d6cde750263dffdcb0eddc6a41e1a
BLAKE2b-256 155a5435fe438874f03aa9f559c5173418fbac680b095ac394e88b0825d12ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3
MD5 5899be90f28c4faad2e3a7c5642966b3
BLAKE2b-256 e4a76ffee644828e01c6d6ae177ac6cba56255bb793f79c4d32082a895bf8b91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095
MD5 758b4794e06ee95a7107381f3333a1eb
BLAKE2b-256 e5124fd9a60b167b00a58552020babb638f9b43c514da0227df9fc6bdf16948f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4
MD5 93c426674ad1b2ab05b92eefa8fce132
BLAKE2b-256 194197678e848ce963cd3e89c4dcc13900c9afedd42e5c7d9cfb019716f8bb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0
MD5 466cfb5bf01c8aebd737ec289b5bef81
BLAKE2b-256 0eb1a65fcf0363ae8c08c0e586772a34cc15b4200bae163eed24258cc95cda90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608
MD5 f0106fe3482b68e9f5d4c83a3ddf15fe
BLAKE2b-256 c9d4a5280faa1b8e9ad3a52ddc4c9aea94dd718f9c55f1e10cfb14580f5ebb45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea
MD5 36e8b1361d69cfba2713cd6a912e5dbc
BLAKE2b-256 2d76d9178fe8fe5823370b26bbd1bbb159c2cc3f7449cade1a50818bcfc98cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac
MD5 89dd6a3fc8a21d365288165bd42624e9
BLAKE2b-256 638095ae601d7b7f5f6b53174d91d94df865db9166895934d5065e924634dc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560
MD5 699eb80d7aeb70b5380ff526fa18198e
BLAKE2b-256 a8ce95614d05af568504884e866d772c9f03235711f5a4d7fccfae54ce82d39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5
MD5 cd4d87948aa2156e8df295fa0fe9e01b
BLAKE2b-256 781d0554e6d4c8669ca707e93f188111e29cf8a3c97cf2e8e8448ad3b284ae84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9
MD5 6beb571285da27bda933b9a8299bdd6d
BLAKE2b-256 6a671ea83dd287358d47adc49f2aeb9e4e8ae72bec8ae2604c3bcae1e7fd73de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8
MD5 d9f6fdb11a3c73602e337d6039108f5e
BLAKE2b-256 19eddeeec0a15bf1d9a3d2d2102ebb9dbd84dc312a00fbf88564b56b05f266a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82
MD5 95b0d7e31015f035329810683646dbb4
BLAKE2b-256 ebcb4970008c85810c7d0e154ac5d746451b04476ac1dd85dc538563a1c04698

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18
MD5 84591f9492b81ebc76b63c146781dd99
BLAKE2b-256 a6a4451ac414ebe15fd6b49a457c7e01f0a06f9b512c36e4388a9cfb26568fea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623
MD5 a8468a4bbd244eb8cdc1b31375ee6b90
BLAKE2b-256 402caa941cb37ed206f9f46158dcb6398f17a5bcb95124970fd43d017650b9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80
MD5 758a5bedfe23abe43add89d0ca762cc5
BLAKE2b-256 f2ea6fd350376ed2581d0cdb11018bad0215cf987817dba69ea9a4bf8adbac6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3
MD5 111cd55b865e8c4278237ae7023adbf9
BLAKE2b-256 58c7bad405a8b0b2366c3c21d650831d58fadca95af583c6dc1d2349512741cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf
MD5 93da1bab55ecb4de8447340c78d5ef2d
BLAKE2b-256 45c6c58e25159d2186247272595ffff1aaba319d10aab20b40429a6e80418328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6
MD5 04f99088f5865ba026ae997aa5319e55
BLAKE2b-256 754db86c4fd2c689eaeb078de274f6822b02872a5e19557af16257be3eda20ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4
MD5 869f617192775e6cb56184b51dadb91f
BLAKE2b-256 16dd3ef5a4c74f9516f2193b0782046802d73c5475ef49678473a608194f3bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955
MD5 ea2c3dfc1dd7b73a67515895d13a5267
BLAKE2b-256 113d785761e64dc90fda6feb9bd0459dc55ebe282a7d4564642a4a8ee277e0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3
MD5 30fdcdf3a911e4bac8622af27f9a9c6e
BLAKE2b-256 da1a94328f245b0f38913338cfa817826def45c193cfc75c76905392f6b484f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a
MD5 b5bc54f266af3dad7d5fcc54bb2ded43
BLAKE2b-256 341f9a915044ec1e13f046e6d023e4dd1ea43316add36e199d46237d7d97cc88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716
MD5 b3b07bed580a78ada4ed8eecdddf3b3b
BLAKE2b-256 3bb4d20b0444fa0f0e7efdb328d16efd44d03a02427e090d02f936b990c9e9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1
MD5 29aff89faf4a3da950147334c9339469
BLAKE2b-256 d9cfbf402f68933fec675b608a941752b836bc25fa2ec7d6922a1b1f315214b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7
MD5 0bb8605f04ca35c27d565abe0c68ff5a
BLAKE2b-256 145ba0bf4a601ddf4073ae0dcd66a90708aaa944a4ad0addf777d9f1fcd6f4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8
MD5 bf9f3ef816d114796a17bbf7a911e67c
BLAKE2b-256 f039e28eec982b1dfd7d6044e5af6f0ca0c1d5760c82f0667a72b0698237d61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9
MD5 026935fd57d770981dd628e215e07c4d
BLAKE2b-256 312ce6af0f7710412e4ed49c1641f04ed1af334d448d51c55150235e3381f0a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72
MD5 39df61d57fea5842855c399156890b06
BLAKE2b-256 97ae7fba1ec8384192095731460dd2dd20ecdc19cbeade8996ef997bd989d5a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7
MD5 759de8fe7f80e9b0e5f6bdc42d97919c
BLAKE2b-256 f2b19a6eeba1a3f35188eac6b7b535f20c06df0f48e78705405d86a0407e75f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b
MD5 8d9f01208a03a3c03df1cbcf3c1603df
BLAKE2b-256 b7f64daab7a2c4b3b4bb9fe6496ab658171cddcfc3f1f24154b64002763fa763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc
MD5 048c731f3e97eb45f57b914cff8d90a0
BLAKE2b-256 2568b67d964bc7768f6462b51c05dd879b6c6f6e55168086b948e6e3e6f6928e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5
MD5 00a31a15e96b0fbdbb6b97e5c909100b
BLAKE2b-256 5d6f06e3e0b1935e8d65e7c52238b5e82b2afb3e067ff69b07a66b909f3b2432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c
MD5 115e6e852cccb3a44fb871f24e27b9a8
BLAKE2b-256 3dea041c270d8853572eec3e6ad26fe7a53eb85d68c052bfbc79b42ae5e63f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333
MD5 ed9ef422da87f85d4ef10493d4306245
BLAKE2b-256 80571dd9bc12ebaae2d08862c23a80662ecd9d63a61777f10e56f78ddb6ad48a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417
MD5 2a85683395c09814c0924e23678c0fa1
BLAKE2b-256 c40c7898c35ca4945fdd416e1dadeda985cc391e4f9298ae5e71c3a5cd88e82d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e
MD5 bf96411704bcce2b2a1dfed08fdaf091
BLAKE2b-256 bb989af77ac76f61ced2a4fb243c16cca6d941801927a332fb9d95da3899ed70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59
MD5 dcda661221ac4aac001f888f57efe0e1
BLAKE2b-256 fb2d060ab740f64ea6ea2088e375c3046839faaf4bbba2b65a5364668bd765e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb
MD5 a3059b0afebf4cb0dc0158f20fcb37f2
BLAKE2b-256 5a3e53e50f6b492d73dab887428acff54d4ea1be7575bee2d846b932dff459d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78
MD5 58b497afe6f210032f72a7be71209234
BLAKE2b-256 8887081c39d7b136820ca0a6d9c2bd160e91de01b1b4af2de2069bb51b52538c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574
MD5 b749440d4b20e2452ad6784b624f158d
BLAKE2b-256 d017875e45f3369af23ae6a299dab56140c4b5398b76757bc3b8388454277ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4
MD5 ce8f884872f4ad5f5daff7cb8273f8fb
BLAKE2b-256 54908e7f57b0c83805652bd1c26663f9979d12fed8d22516c14c7f3021f97a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac
MD5 37f9f294f8a531680fc6bcf309eb6abc
BLAKE2b-256 e83b38f2427f7ee497e169d7f8bd74c92a6ace98594c6a921b619ccc57703fe5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368
MD5 817065dcb765c0f0a1925837f7dabb5c
BLAKE2b-256 7affb490d9995b23e8e6d773679b8f3c8347defe39570f63f3eb391ad208d853

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b
MD5 2471297cea6ae303e75ec9fb51012141
BLAKE2b-256 10b113887c4fbf885d64f4b8c1bac403338f7c1c07a34e63d767af8d0972c28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582
MD5 d01cd2d61e9ef2d4849ec6749c87a957
BLAKE2b-256 e912f4989d778d8dd137fd58f55ab3a5501175896b8670239b4822ae44afd4ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04
MD5 3862b9f370b8d3329269078179a0d306
BLAKE2b-256 f10cc2e07b3a37c4363078a1c7d586b251eec191594a2d24d6e09dae33c1368f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185
MD5 20420d004754fb2fc35c9485d7472987
BLAKE2b-256 7e8a62334982016006a6820f2117990e1161d15fb05fb2d924b99d303ab2c8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45
MD5 87914eadf749861e05ea36d0437586c4
BLAKE2b-256 f0cccf416dff5bd88899a567fea556a5f68ab94cdf525ebe122e0bdba478f2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33
MD5 925923710a3982ca16663f2d5211a612
BLAKE2b-256 92e44f8d1cada85dbf1aab7123125b0d2f997cd30457f3540c72c311ded740e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938
MD5 b5e29a65aafa18432f3ab812447a6337
BLAKE2b-256 49d73b21ce9742ded3e942bcf48b01ebe29fdcd8eb9dc3296ebfbb77660ee8bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3
MD5 abf61c2d51c88b31099fa93d6a8f447e
BLAKE2b-256 1227efe7476bdadb2564d7775e0895df56f3e3adf39495094750fb319599180e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef
MD5 bd708f5f694281b925bce75c3bb31223
BLAKE2b-256 9230aceb4a4cacb850d2cd1841ec1746f42868886ae0523d0b1f3a7cfa31ef57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367
MD5 a6355630162b98c7a5a67fb8b2279803
BLAKE2b-256 8053e0fcf51992fcce66863db5e3fef698a5235257c565a81a46fe3648abae39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc
MD5 6b69bb6eb6bdeba721003ce812a85f3f
BLAKE2b-256 ba7edd4d8a9bd9343ecc7b45d80b134549c801dda119032a8af71d3699eaf070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74
MD5 10a9a7b68564c68399d264562250c790
BLAKE2b-256 12c018265b85980450b75641a32dd12635485241e295310c1b04e04ac0cc634e

See more details on using hashes here.

Supported by

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