Skip to main content

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.

Release files for yarl 1.6.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for yarl 1.6.3
File Size Uploaded
yarl-1.6.3.tar.gz 176.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yarl 1.6.3
File
yarl-1.6.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yarl-1.6.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
yarl-1.6.3-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.14+ x86-64 Details
yarl-1.6.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
yarl-1.6.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
yarl-1.6.3-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.14+ x86-64 Details
yarl-1.6.3-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
yarl-1.6.3-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64 Details
yarl-1.6.3-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
yarl-1.6.3-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64 Details

Total release size: 9.0 MB

Release files / yarl-1.6.3.tar.gz

Download URL yarl-1.6.3.tar.gz
Size 176.8 kB
Tags Source
SHA-256 checksum
How to use checksums
8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10
BLAKE2b-256 checksum
How to use checksums
97e7af7219a0fe240e8ef6bb555341a63c43045c21ab0392b4435e754b716fa1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-win_amd64.whl

Download URL yarl-1.6.3-cp39-cp39-win_amd64.whl
Size 125.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4953fb0b4fdb7e08b2f3b3be80a00d28c5c8a2056bb066169de00e6501b986b6
BLAKE2b-256 checksum
How to use checksums
a691f8cd9330bd76327a5ddc135e1666c82c52222b97519621d7dcd6fa126709
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-win32.whl

Download URL yarl-1.6.3-cp39-cp39-win32.whl
Size 119.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5b883e458058f8d6099e4420f0cc2567989032b5f34b271c0827de9f1079a424
BLAKE2b-256 checksum
How to use checksums
638d136811ced49253cc90fec9d06a778c8f4b780dc5feff560c7681a4feea82
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux2014_x86_64.whl
Size 315.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
73494d5b71099ae8cb8754f1df131c11d433b387efab7b51849e7e1e851f07a4
BLAKE2b-256 checksum
How to use checksums
344916107b7f6dc647d356ffe9c8a17cbe61267447d1893a05f1edeaf50034fa
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux2014_s390x.whl
Size 323.0 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8aa3decd5e0e852dc68335abf5478a518b41bf2ab2f330fe44916399efedfae0
BLAKE2b-256 checksum
How to use checksums
8f1ac28ab6769d8df14c533b95ef13a4382359ce621d05ae9bd76b48db13e728
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux2014_ppc64le.whl
Size 321.4 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d597767fcd2c3dc49d6eea360c458b65643d1e4dbed91361cf5e36e53c1f8c96
BLAKE2b-256 checksum
How to use checksums
541f4583126c455c5a9cbfec55ccf18716ea8a3b10d253afa97a68c2576ec4f6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux2014_i686.whl
Size 310.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d5c32c82990e4ac4d8150fd7652b972216b204de4e83a122546dce571c1bdf25
BLAKE2b-256 checksum
How to use checksums
f37d2c308c37ea7365af6719e0a784a1d5ce4ed3a0f4fb1fbd23e2db34c7b5df
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux2014_aarch64.whl
Size 311.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f040bcc6725c821a4c0665f3aa96a4d0805a7aaf2caf266d256b8ed71b9f041c
BLAKE2b-256 checksum
How to use checksums
2e3fee68e6bc5dc1ba1fabac07dee0908f698a16c3ec7db5222a70a6edbf45d6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-manylinux1_i686.whl

Download URL yarl-1.6.3-cp39-cp39-manylinux1_i686.whl
Size 310.8 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c49ff66d479d38ab863c50f7bb27dee97c6627c5fe60697de15529da9c3de724
BLAKE2b-256 checksum
How to use checksums
7415eb0df606ffcf4fc8e6c1f885307b111c9248c7b096ab4a963f5b86e26245
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl

Download URL yarl-1.6.3-cp39-cp39-macosx_10_14_x86_64.whl
Size 124.8 kB
Tags CPython 3.9 macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
329412812ecfc94a57cd37c9d547579510a9e83c516bc069470db5f75684629e
BLAKE2b-256 checksum
How to use checksums
df1ab42134bfc27f6e47eb80110e7488812429538d2faf8e61b5aa0a4ac1c8bc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-win_amd64.whl

Download URL yarl-1.6.3-cp38-cp38-win_amd64.whl
Size 125.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
f0b059678fd549c66b89bed03efcabb009075bd131c248ecdf087bdb6faba24a
BLAKE2b-256 checksum
How to use checksums
7b88e49757a6c02c43ce6769d566c7a7d344846ff20efd87b02d1a3166460a3d
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-win32.whl

Download URL yarl-1.6.3-cp38-cp38-win32.whl
Size 119.9 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
9ede61b0854e267fd565e7527e2f2eb3ef8858b301319be0604177690e1a3896
BLAKE2b-256 checksum
How to use checksums
d49ec6f301aa7e80b2a1804ad913124a27d20ad6aa4b6a53538eaa94bdc55e50
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux2014_x86_64.whl
Size 324.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6d6283d8e0631b617edf0fd726353cb76630b83a089a40933043894e7f6721e2
BLAKE2b-256 checksum
How to use checksums
2848fdce6d8323b58799541eddfb37123d6d18ad762899ca64b82ed767ae2bf8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux2014_s390x.whl
Size 332.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e6b5460dc5ad42ad2b36cca524491dfcaffbfd9c8df50508bddc354e787b8dc2
BLAKE2b-256 checksum
How to use checksums
3896fd4eeccdb5aef46992bd4c19b99510cd5bec39c185051273e1b87bf2c32e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux2014_ppc64le.whl
Size 330.4 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
324ba3d3c6fee56e2e0b0d09bf5c73824b9f08234339d2b788af65e60040c959
BLAKE2b-256 checksum
How to use checksums
57a7c0f0065f9d94c716a8ff7859f7d91b7cf671c1ccaa5191c8dc07e855fafc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux2014_i686.whl
Size 321.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
72a660bdd24497e3e84f5519e57a9ee9220b6f3ac4d45056961bf22838ce20cc
BLAKE2b-256 checksum
How to use checksums
0e80a26b4b07e83e133732db4cff622e24c3310ac05061e450502b64ca2b5681
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux2014_aarch64.whl
Size 319.5 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fcbb48a93e8699eae920f8d92f7160c03567b421bc17362a9ffbbd706a816f71
BLAKE2b-256 checksum
How to use checksums
b4ed29c1bf9919cc52c43cf7506c60478fbe34419a3c601bc1df55cc3ad55dc0
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-manylinux1_i686.whl

Download URL yarl-1.6.3-cp38-cp38-manylinux1_i686.whl
Size 321.0 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
31ede6e8c4329fb81c86706ba8f6bf661a924b53ba191b27aa5fcee5714d18ec
BLAKE2b-256 checksum
How to use checksums
3aba0e16e528db22139a6b7e4d9b63f0e6c235670bfc03ac2b9db77c83a1e961
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl

Download URL yarl-1.6.3-cp38-cp38-macosx_10_14_x86_64.whl
Size 124.5 kB
Tags CPython 3.8 macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
e46fba844f4895b36f4c398c5af062a9808d1f26b2999c58909517384d5deda2
BLAKE2b-256 checksum
How to use checksums
df342cc202b4bb8196c3de4a47fa3c1f9eb5ac1934f76832af940bbe9ae58a20
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-win_amd64.whl

Download URL yarl-1.6.3-cp37-cp37m-win_amd64.whl
Size 124.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
69ee97c71fee1f63d04c945f56d5d726483c4762845400a6795a3b75d56b6c50
BLAKE2b-256 checksum
How to use checksums
ea533c466bee8503325c2cb182f5c7152a775b1a8c10e4d15b7c9cf9a5bf18ab
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-win32.whl

Download URL yarl-1.6.3-cp37-cp37m-win32.whl
Size 119.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
00d7ad91b6583602eb9c1d085a2cf281ada267e9a197e8b7cae487dadbfa293e
BLAKE2b-256 checksum
How to use checksums
9501e41b5817ec6358562db806f532862f0a95ba349735df5b78c4f423e368f9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux2014_x86_64.whl
Size 294.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7356644cbed76119d0b6bd32ffba704d30d747e0c217109d7979a7bc36c4d970
BLAKE2b-256 checksum
How to use checksums
f162046834c5fc998c88ab2ef722f5d42122230a632212c8afa76418324f53ff
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux2014_s390x.whl
Size 302.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
68dc568889b1c13f1e4745c96b931cc94fdd0defe92a72c2b8ce01091b22e35f
BLAKE2b-256 checksum
How to use checksums
52eadeff026651fc7f3393c6c9715155f28a17c39ae4203de573dffc05239c0c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux2014_ppc64le.whl
Size 301.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4736eaee5626db8d9cda9eb5282028cc834e2aeb194e0d8b50217d707e98bb5c
BLAKE2b-256 checksum
How to use checksums
f46924ae7a128699fadb4c716604d148a25c5097414791b1c4ba7df11c4283b6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux2014_i686.whl
Size 291.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4c5bcfc3ed226bf6419f7a33982fb4b8ec2e45785a0561eb99274ebbf09fdd6a
BLAKE2b-256 checksum
How to use checksums
146b9a3a862582f123312e98e4fa95630ad8371bb6dd740eaa80024f4ea39d0f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux2014_aarch64.whl
Size 292.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d26608cf178efb8faa5ff0f2d2e77c208f471c5a3709e577a7b3fd0445703ac8
BLAKE2b-256 checksum
How to use checksums
ba62c979e0829c8d7f058785d709bd2da34d5b8bc331c74b155a548533648a4f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl

Download URL yarl-1.6.3-cp37-cp37m-manylinux1_i686.whl
Size 291.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2ce4c621d21326a4a5500c25031e102af589edb50c09b321049e388b3934eec3
BLAKE2b-256 checksum
How to use checksums
c50384451c7720c32914137fb0d72042efe0d52fb74b49dba8f4bf276e79528c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl

Download URL yarl-1.6.3-cp37-cp37m-macosx_10_14_x86_64.whl
Size 123.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
ce3beb46a72d9f2190f9e1027886bfc513702d748047b548b05dab7dfb584d2e
BLAKE2b-256 checksum
How to use checksums
1d89dc936cc5bcb25aa43620f9291f9728c6300213bbfae1b3a18fd9f0aa71c1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-win_amd64.whl

Download URL yarl-1.6.3-cp36-cp36m-win_amd64.whl
Size 124.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b2e9a456c121e26d13c29251f8267541bd75e6a1ccf9e859179701c36a078643
BLAKE2b-256 checksum
How to use checksums
69c9eb6492cf3b1d41665aaf2350e611e44dcadf21c3fbdaaf1b8a28f60b00c9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-win32.whl

Download URL yarl-1.6.3-cp36-cp36m-win32.whl
Size 119.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b5dfc9a40c198334f4f3f55880ecf910adebdcb2a0b9a9c23c9345faa9185721
BLAKE2b-256 checksum
How to use checksums
f3a586215dbcb3680925768ef23951800fd356471ca056d1ad93f861e8f66ac2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux2014_x86_64.whl
Size 293.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
15263c3b0b47968c1d90daa89f21fcc889bb4b1aac5555580d74565de6836366
BLAKE2b-256 checksum
How to use checksums
da0852b26b44bce7b818b410aee37c5e424c9ea420c557bca97dc2adac29b151
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux2014_s390x.whl
Size 300.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
d8d07d102f17b68966e2de0e07bfd6e139c7c02ef06d3a0f8d2f0f055e13bb76
BLAKE2b-256 checksum
How to use checksums
f15fc6225e9859de54549e9007c193369216e88faac1df1d263ba30951371493
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux2014_ppc64le.whl
Size 300.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
97b5bdc450d63c3ba30a127d018b866ea94e65655efaf889ebeabc20f7d12406
BLAKE2b-256 checksum
How to use checksums
5581db11c259e3b9dc4b5636d5688691c28ecf86b6679a404bcbbdedcf49afb5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux2014_i686.whl
Size 291.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
63f90b20ca654b3ecc7a8d62c03ffa46999595f0167d6450fa8383bab252987e
BLAKE2b-256 checksum
How to use checksums
f1cef5799b06915aa0bd63644af43eca86358e9e7e67aa175d14a0baca349e42
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux2014_aarch64.whl
Size 291.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
547f7665ad50fa8563150ed079f8e805e63dd85def6674c97efd78eed6c224a6
BLAKE2b-256 checksum
How to use checksums
e3b068cf4a25f50d198f39cca4a18376cb9b73d1d2e5cb6c3dc3d1822ef0d2e2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl

Download URL yarl-1.6.3-cp36-cp36m-manylinux1_i686.whl
Size 291.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
bafb450deef6861815ed579c7a6113a879a6ef58aed4c3a4be54400ae8871478
BLAKE2b-256 checksum
How to use checksums
19024407051d870ae599236a544d0a9ce2e46f04f1c7dc921783a970421cfa05
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl

Download URL yarl-1.6.3-cp36-cp36m-macosx_10_14_x86_64.whl
Size 125.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
0355a701b3998dcd832d0dc47cc5dedf3874f966ac7f870e0f3a6788d802d434
BLAKE2b-256 checksum
How to use checksums
46b4b86acfa17f68b6dfb2240e2d2ac1986a97f7cde0edaaee74a34b7fe051a2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

1.9.6

92 release files

1.9.5

92 release files

1.9.3

90 release files

1.9.2

74 release files

1.9.1

74 release files

This release

1.6.3 This release

37 release files

1.6.2

33 release files

1.6.1

33 release files

1.6.0

17 release files

1.5.0

17 release files

1.4.1

17 release files

1.4.0

17 release files

1.3.0

11 release files

1.2.6

9 release files

1.2.5

9 release files

1.2.4

9 release files

1.2.3

9 release files

1.2.2

9 release files

1.2.1

9 release files

1.2.0

13 release files

1.1.1

13 release files

1.1.0

13 release files

1.0.0

13 release files

0.11.1

6 release files

0.10.0

9 release files

0.9.8

9 release files

0.9.7

9 release files

0.9.6

9 release files

0.9.5

9 release files

0.9.4

9 release files

0.9.3

9 release files

0.9.2

9 release files

0.9.1

9 release files

0.9.0

9 release files

0.8.1

9 release files

0.8.0

9 release files

0.7.1

9 release files

0.7.0

9 release files

0.6.0

9 release files

0.5.3

9 release files

0.5.2

9 release files

0.5.1

9 release files

0.5.0

9 release files

0.5.0b1

0.5.0b0

0.4.3

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.2

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page