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

Uploaded Source

Built Distributions

yarl-1.6.3-cp39-cp39-win_amd64.whl (125.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

yarl-1.6.3-cp39-cp39-win32.whl (119.6 kB view details)

Uploaded CPython 3.9 Windows x86

yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl (323.0 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl (321.4 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl (310.8 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl (311.6 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-manylinux1_i686.whl (310.8 kB view details)

Uploaded CPython 3.9

yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

yarl-1.6.3-cp38-cp38-win_amd64.whl (125.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

yarl-1.6.3-cp38-cp38-win32.whl (119.9 kB view details)

Uploaded CPython 3.8 Windows x86

yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl (324.3 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl (332.1 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl (330.4 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl (321.0 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl (319.5 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-manylinux1_i686.whl (321.0 kB view details)

Uploaded CPython 3.8

yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

yarl-1.6.3-cp37-cp37m-win_amd64.whl (124.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

yarl-1.6.3-cp37-cp37m-win32.whl (119.2 kB view details)

Uploaded CPython 3.7m Windows x86

yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl (294.7 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl (302.0 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl (301.5 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl (291.2 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl (292.2 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl (291.2 kB view details)

Uploaded CPython 3.7m

yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

yarl-1.6.3-cp36-cp36m-win_amd64.whl (124.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

yarl-1.6.3-cp36-cp36m-win32.whl (119.2 kB view details)

Uploaded CPython 3.6m Windows x86

yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl (300.0 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl (300.5 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl (291.0 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl (291.4 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl (291.0 kB view details)

Uploaded CPython 3.6m

yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl (125.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: yarl-1.6.3.tar.gz
  • Upload date:
  • Size: 176.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3.tar.gz
Algorithm Hash digest
SHA256 8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10
MD5 3b6f2da3db8c645a9440375fd6a414eb
BLAKE2b-256 97e7af7219a0fe240e8ef6bb555341a63c43045c21ab0392b4435e754b716fa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4953fb0b4fdb7e08b2f3b3be80a00d28c5c8a2056bb066169de00e6501b986b6
MD5 fac2b952bd69849f766e068f8b94a727
BLAKE2b-256 a691f8cd9330bd76327a5ddc135e1666c82c52222b97519621d7dcd6fa126709

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 119.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5b883e458058f8d6099e4420f0cc2567989032b5f34b271c0827de9f1079a424
MD5 d40d81d95c652268a814d5f3ec1eb283
BLAKE2b-256 638d136811ced49253cc90fec9d06a778c8f4b780dc5feff560c7681a4feea82

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 315.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73494d5b71099ae8cb8754f1df131c11d433b387efab7b51849e7e1e851f07a4
MD5 7a8a8aa80a4913fb54a614e30a90cf0e
BLAKE2b-256 344916107b7f6dc647d356ffe9c8a17cbe61267447d1893a05f1edeaf50034fa

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 323.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8aa3decd5e0e852dc68335abf5478a518b41bf2ab2f330fe44916399efedfae0
MD5 799aea0c5571f8f9cbb1ada26d2aa991
BLAKE2b-256 8f1ac28ab6769d8df14c533b95ef13a4382359ce621d05ae9bd76b48db13e728

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 321.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d597767fcd2c3dc49d6eea360c458b65643d1e4dbed91361cf5e36e53c1f8c96
MD5 7f3a5f86485e23daa5a27ceba2720f46
BLAKE2b-256 541f4583126c455c5a9cbfec55ccf18716ea8a3b10d253afa97a68c2576ec4f6

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 310.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5c32c82990e4ac4d8150fd7652b972216b204de4e83a122546dce571c1bdf25
MD5 a1e98eb6255ac8beb8ee92b267f1b5a4
BLAKE2b-256 f37d2c308c37ea7365af6719e0a784a1d5ce4ed3a0f4fb1fbd23e2db34c7b5df

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 311.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f040bcc6725c821a4c0665f3aa96a4d0805a7aaf2caf266d256b8ed71b9f041c
MD5 357db596a1b829900b9299842f4bd2aa
BLAKE2b-256 2e3fee68e6bc5dc1ba1fabac07dee0908f698a16c3ec7db5222a70a6edbf45d6

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 310.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c49ff66d479d38ab863c50f7bb27dee97c6627c5fe60697de15529da9c3de724
MD5 514d0bba52c16b59781fbf0f3303c35b
BLAKE2b-256 7415eb0df606ffcf4fc8e6c1f885307b111c9248c7b096ab4a963f5b86e26245

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 124.8 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 329412812ecfc94a57cd37c9d547579510a9e83c516bc069470db5f75684629e
MD5 bce2cdbcb7fdb51fe19b2c3cce33a6d4
BLAKE2b-256 df1ab42134bfc27f6e47eb80110e7488812429538d2faf8e61b5aa0a4ac1c8bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 125.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f0b059678fd549c66b89bed03efcabb009075bd131c248ecdf087bdb6faba24a
MD5 5a0136dbb72ff2e41647fc79bd3896ab
BLAKE2b-256 7b88e49757a6c02c43ce6769d566c7a7d344846ff20efd87b02d1a3166460a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 119.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9ede61b0854e267fd565e7527e2f2eb3ef8858b301319be0604177690e1a3896
MD5 ca99b03cf5901a45130a6408a15e9be1
BLAKE2b-256 d49ec6f301aa7e80b2a1804ad913124a27d20ad6aa4b6a53538eaa94bdc55e50

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 324.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d6283d8e0631b617edf0fd726353cb76630b83a089a40933043894e7f6721e2
MD5 63968ecd839d5c89fe5fa94865c4232d
BLAKE2b-256 2848fdce6d8323b58799541eddfb37123d6d18ad762899ca64b82ed767ae2bf8

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 332.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6b5460dc5ad42ad2b36cca524491dfcaffbfd9c8df50508bddc354e787b8dc2
MD5 b41685a2e9e3134825fb128f63b3a968
BLAKE2b-256 3896fd4eeccdb5aef46992bd4c19b99510cd5bec39c185051273e1b87bf2c32e

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 330.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 324ba3d3c6fee56e2e0b0d09bf5c73824b9f08234339d2b788af65e60040c959
MD5 c80f7cfc447bde35c92bfe9abeddd8d6
BLAKE2b-256 57a7c0f0065f9d94c716a8ff7859f7d91b7cf671c1ccaa5191c8dc07e855fafc

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 321.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72a660bdd24497e3e84f5519e57a9ee9220b6f3ac4d45056961bf22838ce20cc
MD5 c9dc09a9a9f8a4a73370ba06a041d2ed
BLAKE2b-256 0e80a26b4b07e83e133732db4cff622e24c3310ac05061e450502b64ca2b5681

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 319.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcbb48a93e8699eae920f8d92f7160c03567b421bc17362a9ffbbd706a816f71
MD5 5be2c85f594c6c0cc0f73768c7c57273
BLAKE2b-256 b4ed29c1bf9919cc52c43cf7506c60478fbe34419a3c601bc1df55cc3ad55dc0

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 321.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31ede6e8c4329fb81c86706ba8f6bf661a924b53ba191b27aa5fcee5714d18ec
MD5 4280cdcfebb66d1fa374652c3f8c217b
BLAKE2b-256 3aba0e16e528db22139a6b7e4d9b63f0e6c235670bfc03ac2b9db77c83a1e961

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 124.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e46fba844f4895b36f4c398c5af062a9808d1f26b2999c58909517384d5deda2
MD5 3bebaa608fcb7b40cc4a09fb9e86f88d
BLAKE2b-256 df342cc202b4bb8196c3de4a47fa3c1f9eb5ac1934f76832af940bbe9ae58a20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 124.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 69ee97c71fee1f63d04c945f56d5d726483c4762845400a6795a3b75d56b6c50
MD5 37ebcd232cbbbf42f438d1852e9ec365
BLAKE2b-256 ea533c466bee8503325c2cb182f5c7152a775b1a8c10e4d15b7c9cf9a5bf18ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 119.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 00d7ad91b6583602eb9c1d085a2cf281ada267e9a197e8b7cae487dadbfa293e
MD5 f02310a309f4f108662f57088d95cdc0
BLAKE2b-256 9501e41b5817ec6358562db806f532862f0a95ba349735df5b78c4f423e368f9

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 294.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7356644cbed76119d0b6bd32ffba704d30d747e0c217109d7979a7bc36c4d970
MD5 e023983cf88213e9fb8bae05286213ed
BLAKE2b-256 f162046834c5fc998c88ab2ef722f5d42122230a632212c8afa76418324f53ff

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 302.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68dc568889b1c13f1e4745c96b931cc94fdd0defe92a72c2b8ce01091b22e35f
MD5 0a47578e69527199e0a2131f9444173c
BLAKE2b-256 52eadeff026651fc7f3393c6c9715155f28a17c39ae4203de573dffc05239c0c

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 301.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4736eaee5626db8d9cda9eb5282028cc834e2aeb194e0d8b50217d707e98bb5c
MD5 2bc5b075d13ad2b46457e398f6d633fa
BLAKE2b-256 f46924ae7a128699fadb4c716604d148a25c5097414791b1c4ba7df11c4283b6

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 291.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c5bcfc3ed226bf6419f7a33982fb4b8ec2e45785a0561eb99274ebbf09fdd6a
MD5 49be02681bff8628fc29a0cd38a3eaff
BLAKE2b-256 146b9a3a862582f123312e98e4fa95630ad8371bb6dd740eaa80024f4ea39d0f

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 292.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d26608cf178efb8faa5ff0f2d2e77c208f471c5a3709e577a7b3fd0445703ac8
MD5 3a395968604d20d60e5c42a0904edf85
BLAKE2b-256 ba62c979e0829c8d7f058785d709bd2da34d5b8bc331c74b155a548533648a4f

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 291.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ce4c621d21326a4a5500c25031e102af589edb50c09b321049e388b3934eec3
MD5 c5bf872d3a8dccc281252a8e00e6944a
BLAKE2b-256 c50384451c7720c32914137fb0d72042efe0d52fb74b49dba8f4bf276e79528c

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 123.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ce3beb46a72d9f2190f9e1027886bfc513702d748047b548b05dab7dfb584d2e
MD5 053c6d999d9206fb3f58656e1d644ef7
BLAKE2b-256 1d89dc936cc5bcb25aa43620f9291f9728c6300213bbfae1b3a18fd9f0aa71c1

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 124.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b2e9a456c121e26d13c29251f8267541bd75e6a1ccf9e859179701c36a078643
MD5 313f7f795803bd6f62e2d01439737e3e
BLAKE2b-256 69c9eb6492cf3b1d41665aaf2350e611e44dcadf21c3fbdaaf1b8a28f60b00c9

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 119.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b5dfc9a40c198334f4f3f55880ecf910adebdcb2a0b9a9c23c9345faa9185721
MD5 087684168721ff5229f26d8d01adfd17
BLAKE2b-256 f3a586215dbcb3680925768ef23951800fd356471ca056d1ad93f861e8f66ac2

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 293.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15263c3b0b47968c1d90daa89f21fcc889bb4b1aac5555580d74565de6836366
MD5 7ae75ffbd0df4cb12dc14976985c24ac
BLAKE2b-256 da0852b26b44bce7b818b410aee37c5e424c9ea420c557bca97dc2adac29b151

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 300.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8d07d102f17b68966e2de0e07bfd6e139c7c02ef06d3a0f8d2f0f055e13bb76
MD5 55496b6d491f9e739207f8147a285301
BLAKE2b-256 f15fc6225e9859de54549e9007c193369216e88faac1df1d263ba30951371493

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 300.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97b5bdc450d63c3ba30a127d018b866ea94e65655efaf889ebeabc20f7d12406
MD5 2d848f1153f93fa06bd21b94dbc7727a
BLAKE2b-256 5581db11c259e3b9dc4b5636d5688691c28ecf86b6679a404bcbbdedcf49afb5

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 291.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63f90b20ca654b3ecc7a8d62c03ffa46999595f0167d6450fa8383bab252987e
MD5 f9c533d5bb1d38f3ebb4cfd36ee89f7a
BLAKE2b-256 f1cef5799b06915aa0bd63644af43eca86358e9e7e67aa175d14a0baca349e42

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 291.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 547f7665ad50fa8563150ed079f8e805e63dd85def6674c97efd78eed6c224a6
MD5 0157679e6e53adbea5a0204fdb70a1a5
BLAKE2b-256 e3b068cf4a25f50d198f39cca4a18376cb9b73d1d2e5cb6c3dc3d1822ef0d2e2

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 291.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bafb450deef6861815ed579c7a6113a879a6ef58aed4c3a4be54400ae8871478
MD5 99197a70931deb705b7ca6280344f36b
BLAKE2b-256 19024407051d870ae599236a544d0a9ce2e46f04f1c7dc921783a970421cfa05

See more details on using hashes here.

File details

Details for the file yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 125.0 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0355a701b3998dcd832d0dc47cc5dedf3874f966ac7f870e0f3a6788d802d434
MD5 7da26ef608da2c61bff22242ddd41bbd
BLAKE2b-256 46b4b86acfa17f68b6dfb2240e2d2ac1986a97f7cde0edaaee74a34b7fe051a2

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