Skip to main content

Yet another URL library

Project description

yarl

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

Introduction

Url is constructed from str:

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

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

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

All url manipulations produce a new url object:

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

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

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

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

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

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

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

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

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

Installation

$ pip install yarl

The library is Python 3 only!

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

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

$ YARL_NO_EXTENSIONS=1 pip install yarl

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

Dependencies

YARL requires multidict library.

API documentation

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

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

There is no standard for boolean representation of boolean values.

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

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

Comparison with other URL libraries

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

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

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

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

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

    URLObject is immutable, that’s pretty good.

    Every URL change generates a new URL object.

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

Source code

The project is hosted on GitHub

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

The library uses Azure Pipelines for Continuous Integration.

Discussion list

aio-libs google group: https://groups.google.com/forum/#!forum/aio-libs

Feel free to post your questions and ideas here.

Authors and License

The yarl package is written by Andrew Svetlov.

It’s Apache 2 licensed and freely available.

Changelog

1.7.0a0 (2021-10-04)

Features

  • Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes.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 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.0a0.tar.gz (176.4 kB view details)

Uploaded Source

Built Distributions

yarl-1.7.0a0-cp310-cp310-win_amd64.whl (125.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

yarl-1.7.0a0-cp310-cp310-win32.whl (120.0 kB view details)

Uploaded CPython 3.10 Windows x86

yarl-1.7.0a0-cp310-cp310-musllinux_1_1_x86_64.whl (316.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

yarl-1.7.0a0-cp310-cp310-musllinux_1_1_ppc64le.whl (322.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

yarl-1.7.0a0-cp310-cp310-musllinux_1_1_i686.whl (313.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

yarl-1.7.0a0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (334.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

yarl-1.7.0a0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a0-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.0a0-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.0a0-cp310-cp310-macosx_11_0_arm64.whl (121.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

yarl-1.7.0a0-cp310-cp310-macosx_10_9_x86_64.whl (125.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

yarl-1.7.0a0-cp310-cp310-macosx_10_9_universal2.whl (158.9 kB view details)

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

yarl-1.7.0a0-cp39-cp39-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

yarl-1.7.0a0-cp39-cp39-musllinux_1_1_x86_64.whl (316.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

yarl-1.7.0a0-cp39-cp39-musllinux_1_1_s390x.whl (323.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

yarl-1.7.0a0-cp39-cp39-musllinux_1_1_ppc64le.whl (321.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

yarl-1.7.0a0-cp39-cp39-musllinux_1_1_aarch64.whl (313.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

yarl-1.7.0a0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

yarl-1.7.0a0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (324.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a0-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.0a0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (299.3 kB view details)

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

yarl-1.7.0a0-cp39-cp39-macosx_11_0_arm64.whl (121.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

yarl-1.7.0a0-cp39-cp39-macosx_10_9_x86_64.whl (125.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

yarl-1.7.0a0-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.0a0-cp38-cp38-win_amd64.whl (125.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.7.0a0-cp38-cp38-win32.whl (120.1 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.7.0a0-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.0a0-cp38-cp38-musllinux_1_1_s390x.whl (333.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

yarl-1.7.0a0-cp38-cp38-musllinux_1_1_i686.whl (322.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

yarl-1.7.0a0-cp38-cp38-musllinux_1_1_aarch64.whl (321.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

yarl-1.7.0a0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

yarl-1.7.0a0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

yarl-1.7.0a0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (312.1 kB view details)

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

yarl-1.7.0a0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (305.3 kB view details)

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

yarl-1.7.0a0-cp38-cp38-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

yarl-1.7.0a0-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.0a0-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.0a0-cp37-cp37m-win_amd64.whl (124.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.7.0a0-cp37-cp37m-win32.whl (119.5 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_x86_64.whl (294.6 kB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_ppc64le.whl (301.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_i686.whl (292.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_aarch64.whl (292.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (301.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

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

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

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

yarl-1.7.0a0-cp37-cp37m-macosx_10_9_x86_64.whl (124.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

yarl-1.7.0a0-cp36-cp36m-win_amd64.whl (124.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

yarl-1.7.0a0-cp36-cp36m-win32.whl (119.4 kB view details)

Uploaded CPython 3.6m Windows x86

yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_x86_64.whl (293.4 kB view details)

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

yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_s390x.whl (300.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_ppc64le.whl (300.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_i686.whl (292.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_aarch64.whl (291.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

yarl-1.7.0a0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

yarl-1.7.0a0-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.0a0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

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

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

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

yarl-1.7.0a0-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.0a0.tar.gz.

File metadata

  • Download URL: yarl-1.7.0a0.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.0a0.tar.gz
Algorithm Hash digest
SHA256 d3f3176e8b7d2633e92fc08fe110393b8bf8870f26b7fd3b82ab382f297bc84a
MD5 53bd64b4d313866dc0ff4e05bda8bd13
BLAKE2b-256 daf638aabdefeaa1673f91d99353a9c9313018cd4e3b1dcce41e23c6fb7393d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 125.7 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.0a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc943f7af93fca6bbc90054b9cd0d7f1f233d5d9c81b40da1c4599b798db02fc
MD5 2d54ed3451d05d483e3dccd16436099e
BLAKE2b-256 4852df8c2d104c6a8d518cf8aea651387ccca0f85a2741862ca48c2bb452aac0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 120.0 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.0a0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3d4274bc7f3258b3e197b369fff54bbb9750a4b4567f71bb0859f5bb4d005e93
MD5 32a56780794207760de08bb12c27c0d8
BLAKE2b-256 34e2104a3b1dfb7f1864a8143208f6960346427bdbb11e446fc7808ef70948c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 316.8 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.0a0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9130a909b748e78c839500f8c67c227cfc026c0c114d6428f408a1c109447b3e
MD5 b6198a0ffe08195266e24ccd0b279670
BLAKE2b-256 b252cefd8140eeb04d0f4b93bc7f83b9bf6f8ec71548c6d84813625d84a01ed4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f5dc27499130c77c92da7170cb36b783082a88820367504be5e276a191fd45d3
MD5 0578b2b834c3caf337b99942d354c23a
BLAKE2b-256 2f5cc6b8ab7838fb0285dc48af5a08cb8d2a31f16a2a5793d4df3783f6ddc028

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 322.8 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.0a0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8c75eb7ff9350fc154aa41c9b0881fdc1c388b3712e0afa5971e95106aa27112
MD5 1938a321769e189efdc70b2feb5d8e4d
BLAKE2b-256 abde030de3f58909850461a799f597f831b903f06738ad7b73798b99a80d3e86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 313.7 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.0a0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8a6467d07e28836ea564d3d918929580510ac160678fed4d2d3fad069639a7a2
MD5 1ed2dedd983c8edc9fd1b8961cd012ae
BLAKE2b-256 57f2fa51ed98f07b6d6f4d6df5a32fb6dbf5207200fcd91b97272f40798819f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f4944ce038eb3838bdb319bfbddcfa0477ab55c540009e5de3d84d9918a95e5a
MD5 9993a1b549f1da5ab2ae33394c38304e
BLAKE2b-256 2e9f774425d5057e5947f4f5227afdfe2f9d037b7287332dcbfbb7b41dccb35e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a903f4d59babc51f9f2b1826139290c0d05c965ba69de07251c59d475f54b9d
MD5 49416e3dd4fc5701eee8bd961c59ad4c
BLAKE2b-256 7e32a9142e86fe4cc89203554f46a44f8eafca8810669cb3024928210d0358e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff98a57e3b2723397c8d05cae09e8b267b9b29256aab29895be5cc49ff60e6eb
MD5 7f75e627d2d6dfb6e0656229fec6c28f
BLAKE2b-256 9f06e7a32c811bb842d97b7b76d091405ccfd805bdee1bb77f3ba88c2d145c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 596689f74b21642cf4451c979fcb1170f6487e4742b902b6b5cd81ee58e8d83a
MD5 2fbd2f5eaffdeeb5a3a63ba810230414
BLAKE2b-256 bb1bce1ee17770b01af7d5d4ea1c0cca46cb6617ac688c340633c1024cf50af6

See more details on using hashes here.

File details

Details for the file yarl-1.7.0a0-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.0a0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ea3b6f65f382f3bf4954a7d03d7a444674f891d66cda683cd9942f175efcdd42
MD5 8b91cb6e51934a9b1ecfb720a2d4887d
BLAKE2b-256 771790da55b16bc2b10161332d712d92806493d1a5a234e21bd36735779398f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b21fd3bf2989dacb1b324156cb22ebe36e208c2f501c3a677985bc2761129377
MD5 c1ef10f8eb67cf05d01380c93494405b
BLAKE2b-256 99110d497a656ab42d10ebfd94ad1c50813a45fc87d487e6c6b2a8ceb850ee7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.6 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.0a0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 165315fd3f44b32ac2a9e77eccd46b7d736f4af1386fc26eb601be22a0b55f07
MD5 ea448df55abd0ae1bbb5983c3668cbdc
BLAKE2b-256 e23ca5374ca5ad70aa48f457b2269821a854540b7cdf0439c50859b2fd3628d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.3 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.0a0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dde076b619cd592909bc218fa776b88beb9f500681007e34e4548db39a161c2f
MD5 7d42e6cea9e9305124a244744383206d
BLAKE2b-256 6d08e10ad643f3646b40db903e79291ce2812cdd30a764165bad4e316dab0b5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 158.9 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.0a0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f8802c6f22da514c07eb3c74a06d479ff6d1f42ba147de81842a700cda6790a
MD5 2aa98f51b7ccbea9d5d91b10099bdf6d
BLAKE2b-256 07190acdecee3247ffda5c61c2627a5aaede3cd9d0ecfe40a8f26b78dbbf4d4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.6 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.0a0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8092e177652053635d05653af46a2ec78f784178689e3269708d2f5f7b6fc050
MD5 ad64032bca18ae0b564e389e633a703a
BLAKE2b-256 bee32092bc712e05bbc8446b7472508da4016e2c68757b8a72550c2dd3b88b4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d1bbfc1a18a5be94a03b2628dc8127b1635ad207f1b988dbaaa0bf4980710e84
MD5 0969f4a077a468891325931c4854597f
BLAKE2b-256 9142d2ded6472cf5f2b88a4b25c63a4c892ada914e3691f0bf280333f24f51dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 316.0 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.0a0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94311843255221d5c1b1c04252cfc8d3f9c040898be844290b039819681c8ad2
MD5 d3c1fb795d5429c38aa785fac0866eab
BLAKE2b-256 f4928cda666fc8bfac5dab994e89b69c5ef95f6f88e9e8dc96664ff107e63477

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 323.7 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.0a0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6b48b9e95466f1dcc902a4c77b938e1e1920686b4a8dba48fd5495dc1e0d5ee8
MD5 b5defb92cc9cef6e13303ba974c5d7da
BLAKE2b-256 e846bd6dfa5ca0059603d401ba2b7693836cb6fd4eac2672418a68a6a1c06aea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 321.8 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.0a0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 22dbd36ff06b259b875da5dbb60b9b5cb928f851b8b86aa747e462ff44994993
MD5 e62ae273259d2f7a48ce754f83f74fd8
BLAKE2b-256 5fbdced03ad78c50bbb9825dbcbae8d144f0adaa245c46817ffbf0b0aef272b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ea48173f317b7fbf527f09adf5d7c87f294649aa078a5d6a5ae64aac4c46fda3
MD5 1620fc8310296fa94b488ce3284063d7
BLAKE2b-256 3f2e62d6883bffa17e4f884e5e01dbae913df773572220e5434af5bc5e13fdb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 313.3 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.0a0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 da11e5b55c363bb23fb76138ef0c017f964eeba7305ee80c3b86dc1fdca9b2e1
MD5 66c3a4caefb4bdb939986dd522aa4d86
BLAKE2b-256 d37cc51fef53eb89ada1fc2e897a4cc7dad19c22f8e1abb97160e193dbac7dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd2dd87216263b2acce44555ce1442663925e347daf230ac20b5126ab6856022
MD5 19136fd73c1350eb5f96bc77970a9732
BLAKE2b-256 64b37b61419f250fb35e98e462f7976b1122a67179e223d51e5eebd77d8a56d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 758fd2fd0269326e956bb25c35d9faa4542f3af5cd490c81a26d806f81e5eeb3
MD5 f1e2416e7e179a2b01d3bd44063ce6d7
BLAKE2b-256 a745f9618a89de292deada057826daa00b4a8abcd376ac9632d1eb92bdaa1e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 653e5b0d5964c140221caf63481368f462c870a1e9af56560d0fa11e2274d0b7
MD5 6ea0956058b5d063ecd89ed821b59593
BLAKE2b-256 f044030eb41a6560737f77298384493d6970fe7e3daa606f4ef95e3167b4a877

See more details on using hashes here.

File details

Details for the file yarl-1.7.0a0-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.0a0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2113e8692bbf3a6ab31f6fd6c599fbf4ff03701376bb1ba0aa0bebdadeb412a4
MD5 f8eff82985de9ff40bffae930a26c612
BLAKE2b-256 931f66ffb5ea751c06ec6a8fe7873beca62bcddb55134091992cf0d102eb21c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 42a31df3f985e92d8bb1179c6e2ba4c75a59ddccb14ecbe9f9fa81ae5e8b0165
MD5 2ea4c537c0ee41153cc2fb50d4f794bc
BLAKE2b-256 e88e8f89ac7a286858bc43dc7ac2fe6a2012bd98e470e82feedbed51e1ab93db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.6 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.0a0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a354a111689d50a678dac6436ff0ac3d3b9c7488e2c022382c5915cf55806132
MD5 23227026f6f6d4f1d62d640932797f79
BLAKE2b-256 af532717982798922a6a58a855c31bfb95a781b815c07f545a2a6697c2918a63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 125.3 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.0a0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15107dacae697603ae05a5ee867f96efb476c6235f9d323f3cd94c741f11f66a
MD5 c930ce6139d5119bbcea37152fa53935
BLAKE2b-256 5ec68595f064bd83f3df867bf819917fb889e37b41d9ce6feff63fb270a71045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 526dc51d484d0be4e3134159d8759384bb49168c6fed6b7b9999af54de6e0d2b
MD5 646b80ff90c57a7b3d7794971c308f58
BLAKE2b-256 b3093427a1b64b7fc32e2a1d957501461aa785cdf91231aae9cdfa769625b2c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.7 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.0a0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dd430ae1e5c439eebcd73be115a40a759dc2470d1b3df623f6d13f78b9671685
MD5 e57d6032e88e87fe20d162a233366dad
BLAKE2b-256 8ab2a81e9d81780421d453721fef594e12566205c8f17abbaaaeeec0bfb82057

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 120.1 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.0a0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ac1f1f595224966bf4afd2f51e3a9259341ab2df943b1fab3e2a4ddba9086961
MD5 237ffe2d16e9426c47597eb61a697dfa
BLAKE2b-256 0ad2e5f53c3eeb7aed7bfa2335fc4f3f3fcae8943197df6fd7db9804284bae4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0aa5ec1a1f87ba4c7a2e73d9c987ef6034728313a76172c78d9c2abcc7f05f8
MD5 b853e2367823efdcc468fc213814bdc4
BLAKE2b-256 c97164495b0b656670696481919cae7801557b035680e2a8a6ab8a2c16f22d5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 333.0 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.0a0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 480bd907cae3a126599510729787e1ce4bf84c5370c514912238b984898f93ab
MD5 6fe1eac5fab576d241c4d9376c3413a4
BLAKE2b-256 3d676921203f69ac72f9e537152166aa395ab657b11995acbcadf0b41f874228

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0de87c8614827b3714bb700811acc84d138e034bd14ae8142248c4c2dcb1ca6f
MD5 ce81559a3f0d6140da68f68cc59a75a6
BLAKE2b-256 adf7f99ee9396718d3666fe161a351f3bc4136f50fb2476453452a9decea848d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 322.8 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.0a0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 470748469df90515dba7d74a411eacfcda8116b9286f289b08b34c06ea9e7773
MD5 409101efeee46a1199feca10f6c4da09
BLAKE2b-256 e4e1a32423ddba6f7b6bd734ee2e3377d1c841dd09b59fe74935dc849fc6f52d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 321.7 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.0a0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d17a623749e6ea4b07ad482c1a02500f778e9219626fe8947d1af41e1a7f6d80
MD5 8e028ad7cb9f557806a080c9a8303286
BLAKE2b-256 f7f6755bf1d02062fb4c7c6f89654f60dc7fd8d42fb5e1c4accd56568837ed10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cda27a2b99b3e289e21823ac087ab7effe6646b0390fa378bdf078a88fb4da63
MD5 9a1259fa92cf3b6b6b09976039eeaf30
BLAKE2b-256 6ace7738afb6fc23d93f942498a62f5fec60d2547809af186144ba22e05d246c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 741ffaf73b933bfe83b79abf9b11b110494b24c937dad6fffeb71ba7b2423e93
MD5 40d414cedb0ecfe697556700e3e377a8
BLAKE2b-256 f3f6469931c4d1fa511ffe27650099d37a59f1b54b6ce2c693d8c7f6978dd387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab3aa39f015b45b3f593b4b22767b6be4a23743c0e38145d8379ff9fce614c16
MD5 952c9030a01f0b13beaeb43be2cad30c
BLAKE2b-256 78675b7dfd155753c79b3c502011390139754336dcc9a9056ce1344677307244

See more details on using hashes here.

File details

Details for the file yarl-1.7.0a0-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.0a0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8450b429c6e425e0d876693e076f145729aa0c968b314b4746809bc165785f72
MD5 ad8aa9894cbacd23b848b39f8088b001
BLAKE2b-256 64aa983a15b9b9ef411b04169768bfc0886c5b72f3c1d8034d539c4a0a860a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1573654a517b777d16d7d2758190f80535eaf1b1a9c6141dcbc8a78dab6e1676
MD5 bbf3bb57578227bbbc6e80550a7cbddd
BLAKE2b-256 1d09ea6d9b11dde2daba26c8a25bc620e066ae2b8ac78c946c342699bd9d249a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 121.3 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.0a0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c7aa52ba9842ff69f1353f827f965bae00eadcc57d937f14f51ac00ae2fa208
MD5 6cb81defee0eec328f38216dedf6685f
BLAKE2b-256 433dc9cdb389b18ede4dfa3b45c0d36745e2141ec45278d10d66222d7b34f1f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ce89980123f59228e7ca7351d33f4e1143aedbc7b42d5d86c6c04821c7aa63
MD5 e5a263b20aa02b3aa7916ecfa1b837f4
BLAKE2b-256 05e5243cf919dd4c2bbbf85eff04b9f565da27b346a990d67226b5cb3234107c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2f0731088b7de5ea0e05f357ebfc1002528914937232ceb8edd984acfbb5d8b0
MD5 1557160c68ce94547158c185f84421d9
BLAKE2b-256 8e004fd688983d67a59f9696893c8b0a4d0dcaeba7975d8f273b802fa3d46e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 124.8 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.0a0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 949252abe7ad16613529b77c6ab32daa6e82485c5eb5817610b91de4052a60b0
MD5 5ff3d2ab6516a843b3c678c02322d56f
BLAKE2b-256 f25d7f8bcde75451da9c50a676e876c25fd8517efb4201142bee4c5116fab70d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 119.5 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.0a0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9ecb18aabe26d2b9448a176dddbed32e3ef85bff89faf7d9aa028175402a6035
MD5 d9b3310b00e4cbf7621205903b3296a1
BLAKE2b-256 7b4211cad68d212962248ac3008dc071c618175e5030e537912bb9f608f3d5f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 294.6 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.0a0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 205656039a0e7007d3648db03d7e45f0556d00f78c87cd4c7b2c00de9152ad8f
MD5 6001f9f132933ef9a4fb4528e827dee6
BLAKE2b-256 74abf4dd0db20579dac187b1e272ca6fc7b92f891162aa9e45de9df3ed304a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 507da5b11ee077d9b93d8b6c38d70ddbc3cd3f454ef070aa8f71b4b32f5e9af0
MD5 9a9b93dbc926df93b86f08ab06c04ba3
BLAKE2b-256 86b6ff6b45940e180843352549f66b1a98c5e470eb8ff33bce23a25f26fda27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 301.0 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.0a0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 261f3393a5a54798b8cfb1d0332440c4a60e09146d0c306b30462f8c529d4a83
MD5 99c19d2e5effba85d071e67333ad40f1
BLAKE2b-256 9b7e28ba8bc4d89967985871f6d9236a2ef4875987f68e96081757b4ee8459e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 292.7 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.0a0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 926742eda676f3141baa5619b62ae7ce45e0ee55ac0fbf8a4c0948ab804260c1
MD5 938b533f85899c3821d49e9db1acc3a4
BLAKE2b-256 180d66040e5860d417cacad68fe1447b247c4269db6d97c7d0e1b98379bf7d5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 292.5 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.0a0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9996c3ff7b542b75583d2af24ce55d29a5274de16d32c7841555080d4abe8861
MD5 b88f66cc76ea41f4fc6692a1f6e52f5e
BLAKE2b-256 d4cbb2cd786d646758f27a85b38b4bbb19d626c76be26b2a4d71b47f078a6aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c95b5d4cc89ed2d7e61a96fd90444760a19894b592057fbe11ae35b4a14715a
MD5 52e36e41878832e17ff4ee74d0eb9221
BLAKE2b-256 ef67d61ac8bab1901ac9c7f15eb49d0b8c9f971f1dec73ba4a2e85acf821586d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a5abcdaeddf088ea9601b2a54968f141d92178b82be6a6fb165be43766a5eef
MD5 678b0acbe51b43921f830ddce7a15d06
BLAKE2b-256 ed8797569a8f6236dbb7764282a1b1f4c183fac365805dc2883591cf79f93280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce74cb39de908a2408c545f29828532f98086ee0096bb4e834e416e21ed93e88
MD5 848996429f653aa09aeca799c6e78b84
BLAKE2b-256 7547c006e72a3341dd2b51d450a36f430eb443cd136e5bcd1af4eaec3eea3a08

See more details on using hashes here.

File details

Details for the file yarl-1.7.0a0-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.0a0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2e78ed8b5109a6b954739a9d9d5580fef357deb6c81f8d1f761efd7d16f9bbb7
MD5 94d7f648c98c069e25e83147b513812b
BLAKE2b-256 86ca801a4061103e6c86fc4c09a04626f50a491ad801b94fd632c2bbcf1a47b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8aa7646858565efd30485527b1f9214f04d82284322be17b5f01dcbb776dd6c6
MD5 2b06efa7311eb70b8a2a582446d81398
BLAKE2b-256 7b949fec0c0b63171b4080692833190278c2c9414c221e57c7fafd478c8c8551

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 124.2 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.0a0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d956a671d93f5355b958f3cf65956b2850f27dad0f5cd9dd7788ad34f5da80f9
MD5 56e27b75b1bc476078a1b3cb6e205860
BLAKE2b-256 06b3f596bd6b0df2be39c98729cb7c5606e4b814580d67c59eca86a7e6adda05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 124.8 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.0a0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 308c46dacc10b8b274fd6cc850b571e542aa4e1ad304d52e0e312fbe5f865442
MD5 e98853c944297f02d5cec3c90e72ccd5
BLAKE2b-256 383e8e62bcd92cde15d9ec0cd5a7133a72f7e45b087eae4b1c9508f7a29bf734

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 119.4 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.0a0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1e2d04072e2b1b9d230c35c6aff41cd9793216fd9a069748e6988f9160317e17
MD5 c09beaa58d501cb5a966156284259f37
BLAKE2b-256 1291906d3bc105f658dda0b78f8749bc90b193120f0796537b8703bcb268aca7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 293.4 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.0a0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42d5364c917934c7db7c115e7a3ac1553f4710932e6c28fbc41ff63dadfd370e
MD5 0b81d7b2edbe131c3f3fcceffd805d7d
BLAKE2b-256 5e9e89b392986ff2c5bef5f7a2f5f8e2ee415bfeca7da726eaa6c6121869726f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 300.5 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.0a0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ae9a99efd2116a63637083ca7c306a46110cf30253cea17de2de238e89bf91d2
MD5 e23f80596020c81fb945d3874199a6e6
BLAKE2b-256 79064dcf6057552ba3a9fa661a9b5ef6b76ac785bf5d15ab1d701759953478ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 300.9 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.0a0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2208eb6aee9bfddc607a4e35b87c3c040280cb61e8856c83541ff30b29d56714
MD5 5337865e8f2d3488c29faceb91a4044d
BLAKE2b-256 e183f7c219cd03ae53b373b4224f7d80793ca0940ce546971f7f6d8db7e5d842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 292.2 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.0a0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c8df052cbbcd24a9ed9cb8b815fda7955ab768a05480b38843ebf91999108bc4
MD5 0aae6fe0b6c08d90b1f851cd6a0461b5
BLAKE2b-256 95c01130b6f5242835c1218c80431755a78b8d00f969f7001fbfdcb3d34dd98d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 291.2 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.0a0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8676c96fc5b00bcbd4273df2401b4c7eafac822c394ff23354bcfdec228e5395
MD5 c5a13b14394f59228001404959739a85
BLAKE2b-256 5f63f598efaeed4cf300388ef9b2a3280f2088266a72bbd11ad9140c924f3458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba2ab6a4b9a1a318b819b3c2e0367a23c032d693365fcdef4a0b2fc12988847a
MD5 8e2cabc2414c24268f318f29455d0a38
BLAKE2b-256 3d572612396a0ae7e7ddab8cbc0a72769cd3141dc4bd2ebab4f1ec57debeeb49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdebcace3fed0d532f59f40cc8db9989f9190099b5c7e0ea39a616b2e9a12e21
MD5 4e6bc046a00c31ea7bb2f1df42361f57
BLAKE2b-256 2c8497d0ed24901d0aed8647e2f4499040059506c14c3bb537f2bf8890134d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff99e2187a95be63a7b199a80af75a70e59eb5079c1d16ee18b83c910b2b0b7b
MD5 a50aaefb93f78ec7865064947ff99150
BLAKE2b-256 024d1e738ebff7144f701948f7b58c5e2c862a47473211bdafb56cb3152324f0

See more details on using hashes here.

File details

Details for the file yarl-1.7.0a0-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.0a0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b490ad30a686381c810e06a0a4ce911919d18a513bedd00a632be1579ed0d49c
MD5 a050be737b330ff828283f132837ec3e
BLAKE2b-256 98614f06b59c138b9df33c648a4d7129d5adf1056efc1e5c17d77c0c8658d7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for yarl-1.7.0a0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0041caf98a2b0b317f323444af81fb895bff22e880e82266a768afe4583a4eeb
MD5 43b18ce89f1a64f46e3967efada8c7f8
BLAKE2b-256 cdc619fab19a6e2e9918fd14f07acdec0bd097886ab33f08a4409b7819677e35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.7.0a0-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.0a0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c36439d0f9ec4c662dc7ae7e9d41a7ab77fc17aeaa11fe4c864fab2aaa51ee07
MD5 9a0e3237187c3491c11da624d149a4f5
BLAKE2b-256 a6471860b6a35b3c6d419645b2fda0a6ec0b4e299444e60f160b521b272e2a49

See more details on using hashes here.

Supported by

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