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-hypernode.com/pypi/furl)

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

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

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

  • URLObject (https://pypi-hypernode.com/pypi/URLObject)

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

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

Source code

The project is hosted on GitHub

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

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

Uploaded Source

Built Distributions

yarl-1.9.1-cp311-cp311-win_amd64.whl (60.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

yarl-1.9.1-cp311-cp311-win32.whl (56.6 kB view details)

Uploaded CPython 3.11 Windows x86

yarl-1.9.1-cp311-cp311-musllinux_1_1_x86_64.whl (251.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

yarl-1.9.1-cp311-cp311-musllinux_1_1_s390x.whl (260.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

yarl-1.9.1-cp311-cp311-musllinux_1_1_ppc64le.whl (256.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

yarl-1.9.1-cp311-cp311-musllinux_1_1_i686.whl (244.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

yarl-1.9.1-cp311-cp311-musllinux_1_1_aarch64.whl (248.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

yarl-1.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

yarl-1.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (287.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

yarl-1.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (286.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

yarl-1.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

yarl-1.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (270.5 kB view details)

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

yarl-1.9.1-cp311-cp311-macosx_11_0_arm64.whl (61.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

yarl-1.9.1-cp311-cp311-macosx_10_9_x86_64.whl (64.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

yarl-1.9.1-cp311-cp311-macosx_10_9_universal2.whl (97.5 kB view details)

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

yarl-1.9.1-cp310-cp310-win_amd64.whl (60.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.9.1-cp310-cp310-win32.whl (57.3 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.9.1-cp310-cp310-musllinux_1_1_x86_64.whl (252.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

yarl-1.9.1-cp310-cp310-musllinux_1_1_s390x.whl (257.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

yarl-1.9.1-cp310-cp310-musllinux_1_1_ppc64le.whl (254.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

yarl-1.9.1-cp310-cp310-musllinux_1_1_i686.whl (248.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

yarl-1.9.1-cp310-cp310-musllinux_1_1_aarch64.whl (246.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

yarl-1.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

yarl-1.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (270.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (271.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (258.8 kB view details)

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

yarl-1.9.1-cp310-cp310-macosx_11_0_arm64.whl (62.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.9.1-cp310-cp310-macosx_10_9_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.9.1-cp310-cp310-macosx_10_9_universal2.whl (100.2 kB view details)

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

yarl-1.9.1-cp39-cp39-win_amd64.whl (61.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.9.1-cp39-cp39-win32.whl (57.8 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.9.1-cp39-cp39-musllinux_1_1_x86_64.whl (259.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

yarl-1.9.1-cp39-cp39-musllinux_1_1_s390x.whl (266.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

yarl-1.9.1-cp39-cp39-musllinux_1_1_ppc64le.whl (264.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

yarl-1.9.1-cp39-cp39-musllinux_1_1_i686.whl (255.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

yarl-1.9.1-cp39-cp39-musllinux_1_1_aarch64.whl (255.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

yarl-1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (269.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

yarl-1.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (274.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (275.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (261.5 kB view details)

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

yarl-1.9.1-cp39-cp39-macosx_11_0_arm64.whl (62.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.9.1-cp39-cp39-macosx_10_9_x86_64.whl (65.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.9.1-cp39-cp39-macosx_10_9_universal2.whl (100.2 kB view details)

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

yarl-1.9.1-cp38-cp38-win_amd64.whl (61.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.9.1-cp38-cp38-win32.whl (57.9 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.9.1-cp38-cp38-musllinux_1_1_x86_64.whl (268.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

yarl-1.9.1-cp38-cp38-musllinux_1_1_s390x.whl (276.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

yarl-1.9.1-cp38-cp38-musllinux_1_1_ppc64le.whl (274.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

yarl-1.9.1-cp38-cp38-musllinux_1_1_i686.whl (265.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

yarl-1.9.1-cp38-cp38-musllinux_1_1_aarch64.whl (265.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

yarl-1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

yarl-1.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (273.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (274.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (263.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (259.3 kB view details)

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

yarl-1.9.1-cp38-cp38-macosx_11_0_arm64.whl (62.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.9.1-cp38-cp38-macosx_10_9_x86_64.whl (65.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.9.1-cp38-cp38-macosx_10_9_universal2.whl (99.6 kB view details)

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

yarl-1.9.1-cp37-cp37m-win_amd64.whl (61.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.9.1-cp37-cp37m-win32.whl (57.4 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl (237.7 kB view details)

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

yarl-1.9.1-cp37-cp37m-musllinux_1_1_s390x.whl (243.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

yarl-1.9.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (242.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

yarl-1.9.1-cp37-cp37m-musllinux_1_1_i686.whl (234.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

yarl-1.9.1-cp37-cp37m-musllinux_1_1_aarch64.whl (235.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

yarl-1.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.0 kB view details)

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

yarl-1.9.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (241.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

yarl-1.9.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (243.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

yarl-1.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

yarl-1.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (230.0 kB view details)

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

yarl-1.9.1-cp37-cp37m-macosx_10_9_x86_64.whl (64.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: yarl-1.9.1.tar.gz
  • Upload date:
  • Size: 184.5 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.1.tar.gz
Algorithm Hash digest
SHA256 5ce0bcab7ec759062c818d73837644cde567ab8aa1e0d6c45db38dfb7c284441
MD5 0162010f604c531a66e734e08f2907fd
BLAKE2b-256 ed02695dd9ec40214fbad98ffc82e97bbe15d99cb798b837c5af38b5649a20cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 60.1 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b20a5ddc4e243cbaa54886bfe9af6ffc4ba4ef58f17f1bb691e973eb65bba84d
MD5 a7ac80f5139cbdc5f3bbcb62737aa6a9
BLAKE2b-256 9b4fb5f0c6f3485ac0a7a1b98885aa67a411ee90af9b4c1929e5c0ca47033f3a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 56.6 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ba5a18c4fbd408fe49dc5da85478a76bc75c1ce912d7fd7b43ed5297c4403e1
MD5 49b3c0dab9f0eb21b0247a312a989b00
BLAKE2b-256 d6854b742350008f5f90aef33545d759716909941fdd0685945c539cd6693901

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 75676110bce59944dd48fd18d0449bd37eaeb311b38a0c768f7670864b5f8b68
MD5 2b7b6197c3481cbe9b0606baa9e36ec0
BLAKE2b-256 c31b908ba0c887128013eca1135e143b346864c8c4fd41f9fdc9fd3926aa0943

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f76edb386178a54ea7ceffa798cb830c3c22ab50ea10dfb25dc952b04848295f
MD5 d68a45c75988feaff2db3bdab396a33a
BLAKE2b-256 1a8f11d9de8535785ac4fb9bdae6d63c9ee03207a6a0f37e7421f0d59ff90b74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d5c407e530cf2979ea383885516ae79cc4f3c3530623acf5e42daf521f5c2564
MD5 1677565119fe4177cb24051d9194478f
BLAKE2b-256 58eafee20f5a45c05f89da121156e9e39bdcb1f11f06eac44fa2ec37f273c452

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 efec77851231410125cb5be04ec96fa4a075ca637f415a1f2d2c900b09032a8a
MD5 565953e2586c1596056c93870310a0f6
BLAKE2b-256 838cacbb9daafaf6c294b0fb2e169be6ff9b1919ab062d8f1822d626db862d9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df747104ef27ab1aa9a1145064fa9ea26ad8cf24bfcbdba7db7abf0f8b3676b9
MD5 c4994b007513351c6fd055ebd6b07a6c
BLAKE2b-256 8649c39527d02472fe1f596ddadbb15ca577ad54e31691af09ab4ef780a39419

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85aa6fd779e194901386709e0eedd45710b68af2709f82a84839c44314b68c10
MD5 2ea4467df94f00476be7ff77b769800f
BLAKE2b-256 6d43f342ae9852c75950db6f525f12d302c3515b429317b1292e5e910d6ff54e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d817593d345fefda2fae877accc8a0d9f47ada57086da6125fa02a62f6d1a94
MD5 8c5cc2989539390a64a43819409072e4
BLAKE2b-256 39525a4d0569c642395c72862011558d3d3d1199af7132eb775ea13708d3340c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89da1fd6068553e3a333011cc17ad91c414b2100c32579ddb51517edc768b49c
MD5 471ff7cb912f48885125b656f8285bc9
BLAKE2b-256 c9d5a5ff51828497e9639cd910c8810f32ecad2c42d017eb627ef7eb1568be89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bb794882818fae20ff65348985fdf143ea6dfaf6413814db1848120db8be33e
MD5 e09fe7c9f2bea54ea3c8b1c128d4765e
BLAKE2b-256 47e5c002eb8f463f8a99ec4a8f8aa05c68f75cba5af2c960b963e51484e74021

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eed9827033b7f67ad12cb70bd0cb59d36029144a7906694317c2dbf5c9eb5ddd
MD5 83896c24aa43b4857c0c6e0dd14775bf
BLAKE2b-256 e9e7a0e5a64acd644d49268062d2c949828ab84bcd25dcbb1e554dc6535c4b53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 575975d28795a61e82c85f114c02333ca54cbd325fd4e4b27598c9832aa732e7
MD5 7f8f223b6e797a9fac07dc26a14d2b0c
BLAKE2b-256 2b2dad085bf7f3d8a0bd35f590b47384b171d1abd27f18ed2f0822676fcde3e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2b2382d59dec0f1fdca18ea429c4c4cee280d5e0dbc841180abb82e188cf6e9
MD5 f6b528cb777edb117665e00ed3086f2e
BLAKE2b-256 48941045a81f11b35e918b6c1c6b533c181ce0feebf337c58b5c5d6db589416a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4295790981630c4dab9d6de7b0f555a4c8defe3ed7704a8e9e595a321e59a0f5
MD5 3907bdd728db411fe1bbf487692c94e0
BLAKE2b-256 dc7c8f94ffcec6cfa7ff4528aaf7e3a2e16dd289d1f4338136ab2829b0a1b2de

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 60.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b63d41e0eecf3e3070d44f97456cf351fff7cb960e97ecb60a936b877ff0b4f6
MD5 cc797123b24ce3a09817e042121ea4dd
BLAKE2b-256 23a0f27e9d7210f1d5c1999cf5c16a43c0ad71aa50733559cbd172c05fbba9d0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 57.3 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 39a7a9108e9fc633ae381562f8f0355bb4ba00355218b5fb19cf5263fcdbfa68
MD5 511d1a311cc1e89761f14008d829d03a
BLAKE2b-256 ab699e9119ea241fc96c1dddebc9fd2e31ade2e4d69e729f5e936e2e76f67533

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65d952e464df950eed32bb5dcbc1b4443c7c2de4d7abd7265b45b1b3b27f5fa2
MD5 d4e6b05c81c0d1743eb9d2d2d4af7201
BLAKE2b-256 901869be0184dc369049a58d37c0b9be124edf8a934c906779ec464053970485

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 73a4b46689f2d59c8ec6b71c9a0cdced4e7863dd6eb98a8c30ea610e191f9e1c
MD5 48f2978e3e2528762e410f85ccab04e2
BLAKE2b-256 b5cf97eeb80f65592bfb548849eeb1c412eaff74a741898f764b5c81722d8702

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 6cdb47cbbacae8e1d7941b0d504d0235d686090eef5212ca2450525905e9cf02
MD5 d7dc888d26c0a2ba270ed779b7e1bb45
BLAKE2b-256 8d0e509bdca429daf36f29e392fd3f6a1217fee02f188044ef69140b77ca700e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 098bdc06ffb4db39c73883325b8c738610199f5f12e85339afedf07e912a39af
MD5 ea17b74ff7c797fbf0b610d560beff46
BLAKE2b-256 13a9704baa587a7334062335ce813a9f23e6cf5c49d540edfaeffeb8a4c0e47f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6cf47fe9df9b1ededc77e492581cdb6890a975ad96b4172e1834f1b8ba0fc3ba
MD5 31f26e0813b4187932bbdb7741f62775
BLAKE2b-256 695291919be6ea17ddd9f2432e733da409b13b070ab100f0e31213de76ccfef9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d7a0075a55380b19aa43b9e8056e128b058460d71d75018a4f9d60ace01e78c
MD5 2501f573e22e5ae80092b0b5d65afffd
BLAKE2b-256 aa8f39e6c99091396816b8b92f6f4702b20dff13bfdaaa14317a24e1f689d46d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef7e2f6c47c41e234600a02e1356b799761485834fe35d4706b0094cb3a587ee
MD5 765422cc53ec38e74666c5e4bb505c6a
BLAKE2b-256 d2b7a65745167ecd74f41ffb3195b67ff1f6871f1716d913a7369fe59d8c8107

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92e37999e36f9f3ded78e9d839face6baa2abdf9344ea8ed2735f495736159de
MD5 7ed70d0627bc3b291ccbc080b049bd67
BLAKE2b-256 2a2a0db4373be43f5877ad4c9b87e8a0d562b35b7596411e51739151dbc1e010

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92a101f6d5a9464e86092adc36cd40ef23d18a25bfb1eb32eaeb62edc22776bb
MD5 c3e048fc483b307bc1ffec7d58870c36
BLAKE2b-256 bceced4b41242cfa6095be27e34d3f89ce7902e2b59fe69c20350a7ddcb9d2cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2f01351b7809182822b21061d2a4728b7b9e08f4585ba90ee4c5c4d3faa0812
MD5 02b44e8a964dcf66377192612a68c824
BLAKE2b-256 d13b14c196fa97a29523ade83e8a11eaed48f3e86d722a72203a0359e753a25c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecaa5755a39f6f26079bf13f336c67af589c222d76b53cd3824d3b684b84d1f1
MD5 3bf69efbec83fed83748cfb2da1d5490
BLAKE2b-256 95f872360ff353741f6723eb6e1e0eb653409ed911ccd72930abb269d1010893

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56956b13ec275de31fe4fb991510b735c4fb3e1b01600528c952b9ac90464430
MD5 4fe66e91f0f736422411218f7faf2f0c
BLAKE2b-256 3f65d0f6afbc4c553a798a7cd82131f5e2ed9fc350b18a4834fbc730a428f07f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e124b283a04cc06d22443cae536f93d86cd55108fa369f22b8fe1f2288b2fe1c
MD5 c466c4d188e2e537ec3a50b7d607d713
BLAKE2b-256 ca81b8330100925ca799b0b5142f7bfb7ad845d6c9ebfc05745280fcd37d8f80

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 61.6 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 78755ce43b6e827e65ec0c68be832f86d059fcf05d4b33562745ebcfa91b26b1
MD5 5dd9ebadf6476083b02a0019820f1b3c
BLAKE2b-256 c9b99008308c81fff1345b68319e21bd6fd66cdbe5bbbc3884aae5a04c5215b8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 57.8 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 518a92a34c741836a315150460b5c1c71ae782d569eabd7acf53372e437709f7
MD5 4aaa6087d0ab605ae3a2ad7e38914514
BLAKE2b-256 435890de1fea8eb85138396ecb99669878e5c048f1c9b55ecbae317128ebcad4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d966cd59df9a4b218480562e8daab39e87e746b78a96add51a3ab01636fc4291
MD5 f39df7c5d26e7e7074351beb590a2ea9
BLAKE2b-256 a0302ed8154bbaacdfee9cb47e1326f9c172f2fe7de74fedff9a6e90b9d5bbfb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8c72a1dc7e2ea882cd3df0417c808ad3b69e559acdc43f3b096d67f2fb801ada
MD5 e5fd63ea64e35b89a3273ff343b8ac41
BLAKE2b-256 147efd7c9ad7d309b0865a003082fe19842c96ea26ad9f55a8dcf6a61bacdbe9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c3ca8d71b23bdf164b36d06df2298ec8a5bd3de42b17bf3e0e8e6a7489195f2c
MD5 4cb249e177d0cddc8cea2a7463e9a3fc
BLAKE2b-256 8367c0c49ee53f6de67f63a2353a93a0874a53d311eaea82dc227005eb77abcd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca14b84091700ae7c1fcd3a6000bd4ec1a3035009b8bcb94f246741ca840bb22
MD5 e1ad9c916901ec5b8adbdb1297c62b77
BLAKE2b-256 b99806411f7b9ca9b32446d7fdb017cfbc9813657c63ca5178e4a047b517fecb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 27efc2e324f72df02818cd72d7674b1f28b80ab49f33a94f37c6473c8166ce49
MD5 320feb4260f88b722d1a3b16294ade07
BLAKE2b-256 cf9b3b9f29e3edc2ea2fb3494031fdc04f90768f975f582f8dfc3797e83041aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bab67d041c78e305ff3eef5e549304d843bd9b603c8855b68484ee663374ce15
MD5 bf88668cc9aada2836adcc7158a2e3da
BLAKE2b-256 8584001652c238796c232c1e68344b505aed66afd80fbe7c5893b7b1b8b26276

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46c4010de941e2e1365c07fb4418ddca10fcff56305a6067f5ae857f8c98f3a7
MD5 53a269dd17eed296b6cf116ddf5e74f5
BLAKE2b-256 bc5c8c487b8d28769859991c93ee3ab6c450153493025cfb0a5f539ccf6fec3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 307a782736ebf994e7600dcaeea3b3113083584da567272f2075f1540919d6b3
MD5 c4917301d179cf3f08d716c23df2631d
BLAKE2b-256 c7b66173516ddfd71e5b681f05788c045167d58d4bcbb04b449dc649b1ad0fd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8b8d4b478a9862447daef4cafc89d87ea4ed958672f1d11db7732b77ead49cc
MD5 b15cf891124cd08d1faad79b18a4661e
BLAKE2b-256 08451822a28f2acee0eb0854bc31934971acd928ba88600cf826748a9edb3b7e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1baf8cdaaab65d9ccedbf8748d626ad648b74b0a4d033e356a2f3024709fb82f
MD5 ec267ecd0c32275169ee8a91bdf859d3
BLAKE2b-256 7e3fd1538cacfc5a53c7e87e3a2592ca91ad7edd8bf8663b7ba8082fbc2a5365

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a21789bdf28549d4eb1de6910cabc762c9f6ae3eef85efc1958197c1c6ef853b
MD5 b3bcfbc1653e759404b3e7c20e990716
BLAKE2b-256 604c804134e681cf5f0ce26ae76e44114ae69534a9bb0bd778244dd651995ea8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5faf3ec98747318cb980aaf9addf769da68a66431fc203a373d95d7ee9c1fbb4
MD5 cc72388fd34b73544a755e4d21163f52
BLAKE2b-256 1e2efc7b8b8adbd4017f1ef4ac214dcba81b973cf5b53a202ce410fdc3238803

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b86e98c3021b7e2740d8719bf074301361bf2f51221ca2765b7a58afbfbd9042
MD5 708be67bccf81e699f44199ed259ff96
BLAKE2b-256 f2c7f948cce68feefe54b07a31e42f3fa832b59c758851f05cbc5028a28d6b32

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 61.7 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 09c56a32c26e24ef98d5757c5064e252836f621f9a8b42737773aa92936b8e08
MD5 33804124cc620dc13e689d4c0148dd22
BLAKE2b-256 5ed6d00d3717c36a01a37eced52ac76f77566dbbe95069fe024221de946484cf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 57.9 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6b09cce412386ea9b4dda965d8e78d04ac5b5792b2fa9cced3258ec69c7d1c16
MD5 858f59431ec99367bc9cae16fdb96eef
BLAKE2b-256 740417327e851489b0ba54137eae8c65fb5515a2f2770b92b8faf92c7b1af507

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08c8599d6aa8a24425f8635f6c06fa8726afe3be01c8e53e236f519bcfa5db5b
MD5 ae3b9a84873a770d10d01aa4ad67acae
BLAKE2b-256 81660fc19e51ab945cb3e594698d2caa2b15e381df9ceaee76a8485d96ce43ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 44fa6158e6b4b8ccfa2872c3900a226b29e8ce543ce3e48aadc99816afa8874d
MD5 d36a8687b612612a5cfc91a4c268d028
BLAKE2b-256 6db345d0f1588fa5928e8599a9af453e1e199a8397e3a5d92185e7d89e116e67

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f206adb89424dca4a4d0b31981869700e44cd62742527e26d6b15a510dd410a2
MD5 b5fdde7d3cb55f65307a4d4822a65b82
BLAKE2b-256 0c64837e8fe0284a4330209d6412c4419fa0805eb9a991261feb4d5f5459336e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b5d5fb6c94b620a7066a3adb7c246c87970f453813979818e4707ac32ce4d7bd
MD5 77072644ba572d4deeb9fccf9e357d5d
BLAKE2b-256 c968f7ba1afe333c722a5d73d4d361c077adb3bdeadde8529b639e2db13f86e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88f6413ff5edfb9609e2769e32ce87a62353e66e75d264bf0eaad26fb9daa8f2
MD5 c1efa97cfcbfbeafa81a2d1be8d6fd7c
BLAKE2b-256 edf2c5fc02f07382bfef5ce1c0a24cf6c34cc5d0cf436532ac7a6b2c62083f41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9fe3a1c073ab80a28a06f41d2b623723046709ed29faf2c56bea41848597d86
MD5 823a4a7a108632954e7bde1973b6d739
BLAKE2b-256 d5ecb79d97ac390e5f658839cfea6a7a55202c10fc0f7c4d570f5c150602bdb0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3abe37fd89a93ebe0010417ca671f422fa6fcffec54698f623b09f46b4d4a512
MD5 d938aac7696220731c45a5128110df18
BLAKE2b-256 156d96de5c4765a1ee73d236766e1f7bbaabfa3c16c612407d92487f130b0da4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4764114e261fe49d5df9b316b3221493d177247825c735b2aae77bc2e340d800
MD5 f1612aac6a82a86309792a5c73daef68
BLAKE2b-256 d4230822c2042bf6523a697750e9703739e7c337fe8aa6ec12dc0f7953f734ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d21887cbcf6a3cc5951662d8222bc9c04e1b1d98eebe3bb659c3a04ed49b0eec
MD5 b498efb3b31a8603a73fbe1fec2fd5d6
BLAKE2b-256 d409a9d45321fd2c63bfc8d9036f1cb3cb471c77fe61bb8566c838d263b24a28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3b5f8da07a21f2e57551f88a6709c2d340866146cf7351e5207623cfe8aad16
MD5 aeee82eba72a235f29fef738c55948f3
BLAKE2b-256 b2a8bc0a30f46aadd5bc3320636263dfd281cac109f4400c75efe68538345119

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0cd87949d619157a0482c6c14e5011f8bf2bc0b91cb5087414d9331f4ef02dd
MD5 154ff07f721264542e61842e712ba78a
BLAKE2b-256 dd1d9a51fc00fa9fab28d9c9b61931ae64b1480f32e8a40985764e8573d32918

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13a1ad1f35839b3bb5226f59816b71e243d95d623f5b392efaf8820ddb2b3cd5
MD5 3549c0a4ff324eeb5ef547c973e5e092
BLAKE2b-256 98390508659c008173b6b42df9b8f4096fc01f30ab04d2c211e543caf8616a5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7ddebeabf384099814353a2956ed3ab5dbaa6830cc7005f985fcb03b5338f05
MD5 f2cdd52b7bdb0e9b16c94eb1eb3fa5ef
BLAKE2b-256 144c27c98f3e23817bca2b69e60d533c5cf58c67ff53e1afcc11a3e21138747d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 61.2 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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f5bcb80006efe9bf9f49ae89711253dd06df8053ff814622112a9219346566a7
MD5 e48d1b8f328648e4edca5b35bf428f0d
BLAKE2b-256 ac44aa6b863466903f7a4cec450a2a744f4ed1f9a03a2c633e2d649fffc49f4a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: yarl-1.9.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 57.4 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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ecad20c3ef57c513dce22f58256361d10550a89e8eaa81d5082f36f8af305375
MD5 0b53d2b4e19727a476d9d8bc93d8aa37
BLAKE2b-256 0f7522897c5209185e3cf4f4ec074dbbbca2ee065d26c5b0405dd2300c16c685

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 01a073c9175481dfed6b40704a1b67af5a9435fc4a58a27d35fd6b303469b0c7
MD5 aaecadea8248d0952a69f8ba8d82a0c2
BLAKE2b-256 9dc9336c2fb5eb01ff8409f3d1180297493129278936f8cfdf205a1ceedca906

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 97d76a3128f48fa1c721ef8a50e2c2f549296b2402dc8a8cde12ff60ed922f53
MD5 0c2375c047157dc03f55fd962a0203dc
BLAKE2b-256 77d715fa0e672750fab95e2d5ad01b49d6e66a1689d4a0e8bc8d9acd1c368b75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 01cf88cb80411978a14aa49980968c1aeb7c18a90ac978c778250dd234d8e0ba
MD5 c2a26b28f7fa2a8e358572554f069752
BLAKE2b-256 06499c3b389037d1f50a81526ab9301f36d27b2589f39acf14ea40142e2a414f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ac8e593df1fbea820da7676929f821a0c7c2cecb8477d010254ce8ed54328ea8
MD5 cecb9fd354961df64a2636308a59cc18
BLAKE2b-256 26ab812fe43bb54f5bb31a201c3c0f099899ccb3ffd592eca64e8e384ffa5396

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8e73f526140c1c32f5fca4cd0bc3b511a1abcd948f45b2a38a95e4edb76ca72
MD5 c24c1681f764ca9393d4161427f346dc
BLAKE2b-256 abe65495d2cfa603acb024b317fbbeada8e466966aef4b224615b556798102a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f878a78ed2ccfbd973cab46dd0933ecd704787724db23979e5731674d76eb36f
MD5 acc02515857acf9b82678394a254679a
BLAKE2b-256 4db4a9792d745d2ee769873a60e7011c4c41f5157619c622bac31befb77d37bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90ebaf448b5f048352ec7c76cb8d452df30c27cb6b8627dfaa9cf742a14f141a
MD5 7168cc4eb343b945f308d00b3b674148
BLAKE2b-256 4b9ce1e1b56bfa832e4a68fe22bac586492db228395b90bd68a700ed3801fe0e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 395ea180257a3742d09dcc5071739682a95f7874270ebe3982d6696caec75be0
MD5 46869b74f5660a202af642b5dd4a0d93
BLAKE2b-256 0988ca3857851d095b327f0d16d76c3063d97605b8657d82c96d4064dd9b586d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89099c887338608da935ba8bee027564a94f852ac40e472de15d8309517ad5fe
MD5 99f9e15f564c8e260aa55c64b8865c3e
BLAKE2b-256 38e4dc17d4a2a2e4d88f908493ecf68495f6c3fa961f01ed67955dda45abc004

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74390c2318d066962500045aa145f5412169bce842e734b8c3e6e3750ad5b817
MD5 b04db4fb0c28b6d72539c493f56d51f6
BLAKE2b-256 8aa1043a206d0e9973c12cbf350a40329e4b055b16939a07c5f3666e86410579

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.9.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 791357d537a09a194f92b834f28c98d074e7297bac0a8f1d5b458a906cafa17c
MD5 db9afdf1a851a09625e9196783c27297
BLAKE2b-256 f412d5d7139fa844b66f2874a2b91b5152c2aee08d1b610ea0c13b9238518e98

See more details on using hashes here.

Provenance

Supported by

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