Skip to main content

Yet another URL library

Project description

yarl

https://github.com/aio-libs/yarl/workflows/CI/badge.svg https://codecov.io/gh/aio-libs/yarl/branch/master/graph/badge.svg https://badge.fury.io/py/yarl.svg https://readthedocs.org/projects/yarl/badge/?version=latest https://img.shields.io/pypi/pyversions/yarl.svg Chat on Gitter

Introduction

Url is constructed from str:

>>> from yarl import URL
>>> url = URL('https://www.python.org/~guido?arg=1#frag')
>>> url
URL('https://www.python.org/~guido?arg=1#frag')

All url parts: scheme, user, password, host, port, path, query and fragment are accessible by properties:

>>> url.scheme
'https'
>>> url.host
'www.python.org'
>>> url.path
'/~guido'
>>> url.query_string
'arg=1'
>>> url.query
<MultiDictProxy('arg': '1')>
>>> url.fragment
'frag'

All url manipulations produce a new url object:

>>> url = URL('https://www.python.org')
>>> url / 'foo' / 'bar'
URL('https://www.python.org/foo/bar')
>>> url / 'foo' % {'bar': 'baz'}
URL('https://www.python.org/foo?bar=baz')

Strings passed to constructor and modification methods are automatically encoded giving canonical representation as result:

>>> url = URL('https://www.python.org/путь')
>>> url
URL('https://www.python.org/%D0%BF%D1%83%D1%82%D1%8C')

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

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

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

Human readable representation of URL is available as .human_repr():

>>> url.human_repr()
'https://www.python.org/путь'

For full documentation please read https://yarl.readthedocs.org.

Installation

$ pip install yarl

The library is Python 3 only!

PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install yarl on another operating system (like Alpine Linux, which is not manylinux-compliant because of the missing glibc and therefore, cannot be used with our wheels) the the tarball will be used to compile the library from the source code. It requires a C compiler and and Python headers installed.

To skip the compilation you must explicitly opt-in by setting the YARL_NO_EXTENSIONS environment variable to a non-empty value, e.g.:

$ YARL_NO_EXTENSIONS=1 pip install yarl

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

Dependencies

YARL requires multidict library.

API documentation

The documentation is located at https://yarl.readthedocs.org

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

There is no standard for boolean representation of boolean values.

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

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

Comparison with other URL libraries

  • furl (https://pypi-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.7.0a4 (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 cant 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 enmpty 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.7.0a4.tar.gz (176.4 kB view details)

Uploaded Source

Built Distributions

yarl-1.7.0a4-cp310-cp310-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.7.0a4-cp310-cp310-win32.whl (120.1 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.7.0a4-cp310-cp310-musllinux_1_1_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

yarl-1.7.0a4-cp310-cp310-musllinux_1_1_s390x.whl (324.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

yarl-1.7.0a4-cp310-cp310-musllinux_1_1_ppc64le.whl (322.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

yarl-1.7.0a4-cp310-cp310-musllinux_1_1_i686.whl (313.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

yarl-1.7.0a4-cp310-cp310-musllinux_1_1_aarch64.whl (313.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

yarl-1.7.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.7.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

yarl-1.7.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (300.7 kB view details)

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

yarl-1.7.0a4-cp310-cp310-macosx_11_0_arm64.whl (121.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.7.0a4-cp310-cp310-macosx_10_9_x86_64.whl (125.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.7.0a4-cp310-cp310-macosx_10_9_universal2.whl (159.0 kB view details)

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

yarl-1.7.0a4-cp39-cp39-win_amd64.whl (125.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.7.0a4-cp39-cp39-win32.whl (120.0 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.7.0a4-cp39-cp39-musllinux_1_1_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

yarl-1.7.0a4-cp39-cp39-musllinux_1_1_s390x.whl (323.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

yarl-1.7.0a4-cp39-cp39-musllinux_1_1_ppc64le.whl (321.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

yarl-1.7.0a4-cp39-cp39-musllinux_1_1_i686.whl (312.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

yarl-1.7.0a4-cp39-cp39-musllinux_1_1_aarch64.whl (313.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

yarl-1.7.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.7.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (308.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

yarl-1.7.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (299.4 kB view details)

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

yarl-1.7.0a4-cp39-cp39-macosx_11_0_arm64.whl (121.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.7.0a4-cp39-cp39-macosx_10_9_x86_64.whl (125.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.7.0a4-cp39-cp39-macosx_10_9_universal2.whl (158.9 kB view details)

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

yarl-1.7.0a4-cp38-cp38-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.7.0a4-cp38-cp38-win32.whl (120.2 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.7.0a4-cp38-cp38-musllinux_1_1_x86_64.whl (324.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

yarl-1.7.0a4-cp38-cp38-musllinux_1_1_s390x.whl (333.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

yarl-1.7.0a4-cp38-cp38-musllinux_1_1_ppc64le.whl (331.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

yarl-1.7.0a4-cp38-cp38-musllinux_1_1_i686.whl (322.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

yarl-1.7.0a4-cp38-cp38-musllinux_1_1_aarch64.whl (321.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

yarl-1.7.0a4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.7.0a4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (312.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

yarl-1.7.0a4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (305.4 kB view details)

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

yarl-1.7.0a4-cp38-cp38-macosx_11_0_arm64.whl (121.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.7.0a4-cp38-cp38-macosx_10_9_x86_64.whl (125.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

yarl-1.7.0a4-cp38-cp38-macosx_10_9_universal2.whl (158.3 kB view details)

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

yarl-1.7.0a4-cp37-cp37m-win_amd64.whl (124.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.7.0a4-cp37-cp37m-win32.whl (119.6 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_x86_64.whl (294.7 kB view details)

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

yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_s390x.whl (302.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_ppc64le.whl (301.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_i686.whl (292.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_aarch64.whl (292.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (268.6 kB view details)

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

yarl-1.7.0a4-cp37-cp37m-macosx_10_9_x86_64.whl (124.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

yarl-1.7.0a4-cp36-cp36m-win_amd64.whl (124.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

yarl-1.7.0a4-cp36-cp36m-win32.whl (119.5 kB view details)

Uploaded CPython 3.6m Windows x86

yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_x86_64.whl (293.5 kB view details)

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

yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_s390x.whl (300.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_ppc64le.whl (301.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_i686.whl (292.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_aarch64.whl (291.3 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (274.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (267.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

yarl-1.7.0a4-cp36-cp36m-macosx_10_9_x86_64.whl (124.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file yarl-1.7.0a4.tar.gz.

File metadata

  • Download URL: yarl-1.7.0a4.tar.gz
  • Upload date:
  • Size: 176.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4.tar.gz
Algorithm Hash digest
SHA256 9aa464016b764bd4a9437b5a5c5ead120edc57d38c4e9dc759d52a6a0f0d8686
MD5 497f5f988c8f1b3f0dad01e1e808ee43
BLAKE2b-256 294564c18f336764587634ca3a442920d1bf56bb24c0a007c83c21e711a91f54

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 125.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3d3e3f5645de3c2deded40cc7a8a6f4a17ff7ec7352e0426545afe0a160f61f
MD5 7de72c5eba0249a4bfe6f511d552ebcb
BLAKE2b-256 7932bc4724b6ad28ab494a01001663482e75eecee61418d78c91d3709bb449ce

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-win32.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 120.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 80cd0632fef312b2f8b731c1bb7f1a653b72d5767cc36740bf03854b990bb32d
MD5 c2014025e3499ff86f9a8a2c8d9654e6
BLAKE2b-256 c0c3c3f49c05d897aebfd1b013237234d1f3c0705a3fddb3dff13d171b986192

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 316.9 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63c5a9fd79d4c8f222d7b32fb1d075e92a8127a5a9c707fd43306cf2e9507751
MD5 e7267687cf8debfe7959302040726c32
BLAKE2b-256 8c76ce9b15d22d83432910ba9e509f22724b2989ce5f4856e1c158f38f362dbc

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 324.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6a64048bc474cfd774dd88e03c71ddad9a420535f42c2d703082bb1d89a0864e
MD5 c7739b81f38bfef169e13acb9ce8ca9d
BLAKE2b-256 2e0dd2283a12ecdb98d39ed8a3fde074a395c072e7ede243925035ee17e1dcd3

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 322.9 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 21fb689d5f184bf8898edcdfb5aee715b98e585079282298ede8e29b94fe058c
MD5 79793a93c918283038b2bbe6bc04fcbc
BLAKE2b-256 dbc9390563e544737789109904488a202044066cd17bdeabbaa23111a386c5b0

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 313.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b813b1dff97675e90b9fd5de4fddcf331890f64d6d2c238f0afbc86f9e253be9
MD5 c453def549810d8af16539f9959e279a
BLAKE2b-256 99e4962ae80aa0da0b1802b6022f21ad092fde8b37c8396fb1a46c1ee3f243a5

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 313.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b871bf9a06886a075c1e27bfa69fc75e558b61f3c9bced68750c492f672ffcf
MD5 31aad65b6e0563c365d0d71a14c3f4b1
BLAKE2b-256 caec014ae211d27c1cd97f3cd21ba0b6a5cfa72c8f77815f15db8a6fc3998b63

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6efe2e2324cd674538e2bb58d49e052876fd38085e62bed800851c88ca17380
MD5 a91a3757c0e34bed50e59537e805539a
BLAKE2b-256 a34880bf98c55f50e4bf254dd0b159f093074124d624d85ab3e57682af7f0a8a

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32e6182ebecd89b497387e5f69132083e3799d82e5fdad7677d124c2820f7f6e
MD5 84b9acdab2f0c412b34993b49a5e5f51
BLAKE2b-256 2c228d3e4248c2076f6f5af0798cb6e43165716c821cc25b37a00c61f58cab25

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fcf394e659a170342c0c74416137e5191dcabfcc96bed12bf2b1d47c811a146
MD5 370a08de6affb74508eb58d41c59740a
BLAKE2b-256 f09e846237fee34a3050d8a07f87aaa8c872b78b04ef0f60c90cf36522ca6341

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 62f7f85d2dd2cf2f0c1e6673a28295f13b9dcfba13ebf2416c95cf21d287ddc0
MD5 1ab226e611be6ecf8bae325c290f89f7
BLAKE2b-256 d4fb6f5beea6df2880e6d7b3b0576761fd33fc9259fab4729bfab952dd9e4461

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0fbeab9419ba2f8b4fbc12b4f498612e5c84cb6634938e3f33d8a5840799a991
MD5 624377c47083f006028d685d61a1296f
BLAKE2b-256 c1d1c3712ad5a5eca4acaaa62de4de1617ac5bff18a866bd2d771695854edd42

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b60f718be1f728339edf8d82594637b4034d968fad610d9e253b7d6910eb87c1
MD5 d57f492fcedd0518c8b2ebee063c5b7e
BLAKE2b-256 792af3988a006cc750c701b6a3161c654461d64bc9c6ca63bbd12fb3e68652fa

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.4 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 472d06b9b70db34ec2c613d584f8e87b31d007c0d446f8b9148780489c48e9b3
MD5 b9b5944aec5d16226907bcddedcf759c
BLAKE2b-256 1724c7847cc0e0a48da54c25479f52e47bfaf75319352a32649e93f1b94e611c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 159.0 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a57366f9db531fb43cbca206473a78e634b5eeaf2b69b98d0e42f05e15ea55e4
MD5 148bfd0e043814f92184137b7daa99bf
BLAKE2b-256 9074d22c80466a92f4f387a4d0b30dcdfdc273ff14b146cf9b8fca5abc83fda9

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e3b13610b4a438e9ddcfe051bb11cb53ff88a5fa7d35edfc0270805e3ab180a3
MD5 fa4a44a0cc5afa7247f65e2e89db0ed6
BLAKE2b-256 a9eff2ae0d9fae77b7481246652c42f8058f0982e9356bfddcaa968a4eb43add

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-win32.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 120.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ef6826fba61685c4d8c060611a416b6bda2ffa18b2656a11f05239a6710f6a3
MD5 d32a00c3398f91e59a8082aadbfb1719
BLAKE2b-256 8b7d08e5ae8e9abbfead21b0c2b154f622e3e871bf347b6d24a98f9263209fb7

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 316.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d080c8b448b8b9e9d682d45e061929634a4ac770bf55153d17d7cd7571fefa9b
MD5 cd062d3134a45deda5ad47739ef8fae4
BLAKE2b-256 1dab2d40b522f1b6c365062c792688c37dd2d47c8942ea4c6ccba394e743d869

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 323.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 db5c99746d8dae24b75440ebee998e7680806ff2552f3e9564ef7101bed80270
MD5 e9daffc08fa67f780e9b48e3f6c390be
BLAKE2b-256 a15a3efa3de8d06fd6c8fc445fa69875c43ad011ad554231312aaf34597e6c4c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 321.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8a6dbdbf8da1981212a44bfa955eedb3772109b2f8eb6f64bdad06ca9c532265
MD5 1ea56c38afd150623f8a7dd3e30b60ae
BLAKE2b-256 1adcb607fa14378e75114582a55d9b7b21cc6c2d6d3c98830c224d201d402fd9

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 312.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a0e821e35d44fc6f9b453637269f15537a3f0b12a498e4058b5d89b2fb4a0c93
MD5 57547daf38e9a790ca57b0ff7bf01138
BLAKE2b-256 c88da903bb80930a6cd2c28e6a12c5ba008179ddb5b78481099e6099614e7095

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 313.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b929d73a0abed5324ced55bde32f1ab615d1635a4a5e4f5db9b7891e0a0b1c66
MD5 6de6923fe9d7809dc978496006c87164
BLAKE2b-256 a84cd67994dbcf242114cb861f5c1a799d0563df9daf444efa9b3d7ffe8fbffa

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 513eb62ae4022c2a51812da855194c9378f5fc2e8fa50a9e9752b233ccdcb2c6
MD5 1dc17d4d376980fd994eb940e849b71e
BLAKE2b-256 9620d5ab5c77e95780f224024c0635a612a92b0e8c392161affa711cefc69161

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b00c921c9245f87ec764461ced662ae823704968475294b8aa3e4b439606f1ec
MD5 7b72917547eb1130e787acea4a6e7f6e
BLAKE2b-256 ea76e5d653c59d2b319f4d01f2946e648c10eea075c04d17cf1750bcb2e3ace0

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f85fe7c257ee514c4e8b0156304f943e180323ea7ea1bde2599087af4c2b6ac
MD5 2d1ddba855b89098776b4d2568acace3
BLAKE2b-256 e706a6ec439a1105f38c5efcd9cf1b0eafec82e51164f9c8982dbc464e020052

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7829409a3590e5c9ebc9cb65f8c3c854edace5629d04192fce8f22ce5ee94e6
MD5 20fee61610e186f0782cf78886bfa11d
BLAKE2b-256 bdef60fdf1f39d0f79ced52c41ab7ba21a41fc458910dc4353f91755f4e018a6

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7e9c95c53a16f3f314da5fbd5be0c7e3a56be5eaa265184e9be8a00accd807a
MD5 d9304c05ef6e49bb29c41a4b77ca4a38
BLAKE2b-256 21b91700aea8d08f6c3959130619fff5c2d63aac875d89e14f0542bf0a5769ae

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd98c92aaf2422b749286e914a71b3534da90592ff3eeef136ca565bf9a7a13f
MD5 b0e5acd02431965e126c7ac088057ce7
BLAKE2b-256 25806d698ec7dde9d0e40aa1d5391f2282b125b0d949c0b306ef24ccac37e21c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e420d51457d9d8994b161822e1b1191a1791d394b51e8c063f3a88182821f12
MD5 df214580795f33e479bad6b248676fa3
BLAKE2b-256 5a360cc684a60b42ec21b43d0568a88afb04981c88927ca02eabcb04cf140674

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 158.9 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 962a10e2e9490b440c9b0f5f625130fc2bf7315f9a2803df61a34df725883f09
MD5 e380d4c7d3e1d10d6a01876d843a0357
BLAKE2b-256 7bf6204c71116bc96cd45365218558314758d691402a111964338517334f01d4

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 19eebb5f2d6f8735b99c6492d2f0b5026a5437cdd1f2f7b7fa0ad18a34ef0511
MD5 2e257c8cb139ccd360cc830db22ed9a0
BLAKE2b-256 ecf2c864c3769d9bea5962260a101e674c9b26525f0179e80fadda4eff97e06c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-win32.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 120.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2f5bc1e6f1210f9934fc1982172d510accfb2035d522ed535c6ac28a0e8a4b6c
MD5 51e9a74e95aeb2bb8c7b318d9b1382a3
BLAKE2b-256 2edbbee6746a53f98c65e6f09400e41235fb40e45c737e64140c2cc9c70b5f13

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 324.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fee5932d46649f7ef4d14c7ed18daa2cbc7163016313b0575746f876d4d3e22b
MD5 babc680e275bfd8f786aee67b98846dd
BLAKE2b-256 276be84a6b7589c99116964433d4e7baf77ea77b90f60a8be652806093e6108c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 333.1 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 cb03c2a573d1c208a03690e2a0a53ead758623cdb81a2573e1a6c4b5c4e76a98
MD5 f9743e16d5963bf4f281e3aa027d4725
BLAKE2b-256 e3b21aec3625e1836fbb9bf0c86d20134a3b463282ee8591384b0520c277ed26

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 331.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 35be96e8e39443c2f60899766ac3d7d52be43fc1b8505d5c1d18047e8d9fba06
MD5 aefa809225389ec7b4b272723a40a66a
BLAKE2b-256 29e1033de851249d10ea1d567fb0fcdccbc6f0a13bc02630173f106dd9a38e64

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 322.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6e83000d1f5884c2cb248a970e9287b931c8ab3989a9267e741ac591d04a7c0e
MD5 61894a2c396e20ca7a6538141b3f4c94
BLAKE2b-256 45c40c2f2fd62711d3e46a64e6f2fa726d15a3e4c68699c4c1a2556bdd64ab17

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 321.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0611a30cad6e8ed770efab9049fe918a843147f473cc9381d01561f786da0620
MD5 845e2b26547924f2d0680694e8b90652
BLAKE2b-256 d9fdff44b76111a686338415333c115feeb4624a3d998c93550c3d6498bdc31c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32d7c3edf4547ca63ba1069eade7f519f7dca4238f1d00db29bb86d4b6986979
MD5 05368c6e5ce22eec251bfb6dbef20d5b
BLAKE2b-256 accdf11112707d0a170b6780d141adf24f854ccd43aafd6107bb041c8dedca8c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9a1ecc0583d417d84646071f656d979dc2fc46782a6e2cdd6cf24dcb532c387
MD5 fbbd222f11b125dcc6dbe2b841da65ec
BLAKE2b-256 e1dd783abc5b880d2d20530856ea24cfe02889c7317b6d0eacc66bb74b8d2b0c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a54d96feef504626c5c2138fdf58f578b1c1eaec4435983ce89b494da9104290
MD5 5f532d88a3a743bcef9d7064fb97b3a3
BLAKE2b-256 bd25a77b04960473fdd97008e3216028ac2e4fe43b629cdc20613fe0c87a85eb

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b47d174e2733ecd23eb379d0e254d15d9899176e6f9c05fdbbc006d9068c0540
MD5 db45db3bfabdf4fec87d48581aaf8020
BLAKE2b-256 b499d4216eb4845b04e93a1fa3b57cd45e47561db26842e99daeddfa3f4c4e38

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae22826042a9c9336586c72a2d0af2cd3ed2167ed1f1fcd06d390887583d6805
MD5 cd643a536fd72b55a351591d5381b221
BLAKE2b-256 a1ed133324d1dfd99f60c400bd0958d013c1e708b7ba4c7d4f56c1b9e16719dd

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.4 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde889691d7cb6285898c67e9fb57e624eb5f2f3ae0b184f9bdbab1600975880
MD5 c345d0e2a0569a172ee9e0685ab5cdb6
BLAKE2b-256 fe14e50629bf2f02a35223f3d413aa9e20e0751d332328dbec29cdd7f7aa8c47

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77b71420e2d350a07365d5fbaa89d4abab909d5cba9d90bf3e7d695bbfe25e91
MD5 c24e1267afff4f9ca9374f4460e0b1ed
BLAKE2b-256 d03989e15e8c265426a683ffb86c6368b1017dc346ca65e25feff202c078c809

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 158.3 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 01e25879bcee366952668fc3827bdbd6cb5418306377a14b8114ec79d94edeee
MD5 63d8641e85eef221fdcff8c56e7add1e
BLAKE2b-256 773cbbbb389d7d300b2f65f2c89dd030fa1e8febdbb6afbd8f423a5436f44c64

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4946026bd9159c494d75cc12ddfa81c587840f54c2b0fb940f12436d477c83a7
MD5 7656155583ce6702e2cc433a41341080
BLAKE2b-256 7ce40a931a053bfbde1820194f0fda4e09a45edb6d3d62d9daacc0bd5bbfbd21

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 119.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0bc32d7c62785b8f8ba983a51f55d218e3270f38ca657b37e99c3388f766d534
MD5 6591e8258cc41624ccab143a4b3be85c
BLAKE2b-256 b5ef479e4620013e471231aafcf3891eb98b63bf701585573cf1aee0c2829dc7

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 294.7 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a2d5551aa1876adc06105c7b15fd09ba94a1976f71355e90d795070b8d8cd082
MD5 57e715747fc63d2d9a0e90dd5b3ef0c5
BLAKE2b-256 06ccb1741c054a7408f960ec8edca37614e8b7ad80c9d704b3c7be660f742276

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 302.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 311082e78ddb496e2cdcb65d85b284f399b7074ecc87bc1d199a01830a6e0f33
MD5 879b9465398d538d7644475e057acf45
BLAKE2b-256 fcb656bd72f4eadce654bb9792fe825ed57df133947898a570231f2d7e6c0159

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 301.1 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1bad063c2afdb9e0a2fcf422d6f16a11855af6165a807328489c9a5a6ec29f69
MD5 66bb90ae0a002274466c49614e68d8ca
BLAKE2b-256 b462443b5c5d98f0ca91a26d556641de062045899dba98b542ed6e7c774b0b7d

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 292.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f37ed3cd23a3d17e5fead4336f2b9a93a45100e4a31633a10d17fadee5d0c802
MD5 19ec1100b7a42389363fc72307f1b9a1
BLAKE2b-256 a3187c0c52fffb1e3305bd5638f8f5706d73054b6fb0333c9496db2757f092cd

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 292.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35215fb5c83cf6135c2b62834ed65d076df0333040ea31cfa2902f37908496e6
MD5 1c77f90542f18d40c55f85d4b29f02d8
BLAKE2b-256 6ab4a2d1652174f0513a6fe17e9f8ef16fb45202cada02f14ec9c6dc904c90dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15a9e595a76a6a2d74da0f9bd1de9aa099d0a65cd1ab96140ce67ef8570e2f7a
MD5 8f34fd48a2454db6ed1e5593294a3596
BLAKE2b-256 046698df7dfda948a8e5357130ee2e055193c79bde770d882b46a24faa3ad1e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b0b37aa7725b954342341a34b98d4f88da26810aa151ae320b78db363c5ece9
MD5 c70b78aaf5284f12fc11acaae0ac53b5
BLAKE2b-256 27d56e74f7f4da5268d3616e5f1e31c18c787713ba64f08376cd430f41db5421

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ac272713418d83b1aef9e42583ece29d9dd277ef95fcaf9603d6a1cb298b598
MD5 ddff249d7d1a1279837c985cec1533fa
BLAKE2b-256 1b6cb92d6353ce826fcbd0f43d6743b0e3bf7c9ba31ba57f3c6876ccdab49546

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9d576dec22c74f0e76bef1687ace8abe9ab39cfac7264d57b4dcde881964d706
MD5 8e39141b95e7be968fed1119f91d7943
BLAKE2b-256 3e8f15995c9ebd027934c115c17687bd694700dfd9aea8bc8635a2ec893f0e4f

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2f8af99a7b327c9c3145398e32ac1b43731399b20b1cfc136e68cd3b457f4a3c
MD5 f8bd0c6ababac6caf2edf9ac7035aad4
BLAKE2b-256 afe5f59230de70b8de30f6ebbe135d86063671ae074df517236cf61859d0c008

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 124.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b89ae28b9ca7df75a41474ebb4542cb82b53b3bd02c59aa96fbdcc9d0e09657
MD5 b3929d15b4cb42ad13fc5c97b15ebaaa
BLAKE2b-256 be4e70c4a224221ca05af4bcc1f7d2b0fe838efb44933d1dab19c5547bf78055

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f1f9485aab5ffb9affe99605733a7c24b5b25482697aedd4f8c064bf6ee84608
MD5 487f4e7d95580a252ee88f34352ed48d
BLAKE2b-256 43cddd39efa91691e80f89a4b22d6615ae98809c055652c72a783f9e7bd44cbd

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 119.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 94702e88dcc33f78e67491a30ce92f529f54c2e90e725a30722151d7a072385e
MD5 ca203de03ed19ddeeb499aab975015ce
BLAKE2b-256 11f1414d598208d770956286dca9efb2e8fd00c6e5a0260e566ad7324d9a3582

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 293.5 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 143c1d7cc05482a9717d750afd62865ec87894242d8c7dc1214e589100c5d5d2
MD5 212909dd1ceade166961ce8b45f1b94b
BLAKE2b-256 28dd062921d7ac982046ec1d5bfa7cbed726ba575f35b2078b5b37bc8b701d27

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 300.6 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 db0278b2b793dc9f2bbd0089fcea13b7fb2403a881c4ddf128a95fcedc7cce9a
MD5 f66d83ae0da020ef3be600a6eb780411
BLAKE2b-256 3aab59549aab5fb7e98855af241d6f1a7d93b5ae7c0c6efad80e5f77598ed43e

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 301.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b7a3226d8d543312afc842f8e79c0eaecca80b62401a12cd39e01acebd09a478
MD5 4e7ebd5e06bccdf89228c4aa7e5dcfd7
BLAKE2b-256 adb6c989e30b77be64a875fe151c1d7e57bd85df23934028ef13c3fc9391a420

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 292.3 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 996bdaf2a9ce86ca4bba86d50647735cb937b23e352491fc14842eb9d03b8fad
MD5 7fdf8f8ff870aa2d791b964dadf57395
BLAKE2b-256 d91e0ec4848e3057d9c2c4e7f310ebe343b8481ca1eeea7474e91d51ab2b955c

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 291.3 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1ad2c125103a66904370769f412f91e92d056dce5eda41f6889fdf003f874b30
MD5 dc8cbe3d8a0dd4ccea4abadb65cc7fb4
BLAKE2b-256 18135990972a902335da1b1e9bbdc6c4b8998072be94cbd6d778cfe13f7962c8

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09e03deb60ce6d37728fc3bf1ab72a483d29d62eb553a2d88310007c5cd265f7
MD5 19b95d1f82576a5d02375ae9ddc67f3d
BLAKE2b-256 06414d006987aab41d66a689123755f89ad02d12c6b125bd6f899bbb8545eefc

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79bc6aa02f2a2f5dd16fb9b0cc7e6cc74e0ca43727dd9e6d990fa2876dced696
MD5 a967ac41718b61cc3e13675cd26757cf
BLAKE2b-256 9b693ac00731a5631f2f442bdbf11bc5246482f821edd4123afa7e0ab3d10cb6

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fde0e101e1accca7fb672b1ebeb56218c20862531ac9df255e4702c3270422c6
MD5 8d7ae30238ea763051e29529421ddd13
BLAKE2b-256 79e6d941428827d89dd1d41b6526e92e4934340bb60e3142e5938b4f2634bb51

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4090fc8c491386a4050f52f6d043f4f24b1d9ee74df774bc75a3cfb263caad95
MD5 898684133b7c4b199bfe16afafa12110
BLAKE2b-256 86afab77caf743684e3501999f7a459a4526f725df9dd1a62ad5c17a57739047

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 89090d3b7db43dec96d6ebc4de46a2883918801d99139988f7dc99d12527f7f1
MD5 a738ed1ef0d47179332a3fa8a149711f
BLAKE2b-256 a2248a3138a02ca0dd4a4bff2e739bf8e1d4e67385d7db47ffa992ba47aa3efa

See more details on using hashes here.

Provenance

File details

Details for the file yarl-1.7.0a4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: yarl-1.7.0a4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 124.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for yarl-1.7.0a4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7273c2f101d3993b36a181508b83bd2fde9c702101ab354ecb4f23aff81570eb
MD5 2a5d9a105e3189ffe82bfc0f1f74a2fb
BLAKE2b-256 e8ef8cca2aba490c31df416b10736d3bc032dd4d79a75479fa8e09d91f8dce55

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