Skip to main content

yarl

The module provides handy URL class for URL parsing and changing.

https://github.com/aio-libs/yarl/workflows/CI/badge.svg https://codecov.io/gh/aio-libs/yarl/branch/master/graph/badge.svg https://badge.fury.io/py/yarl.svg https://readthedocs.org/projects/yarl/badge/?version=latest https://img.shields.io/pypi/pyversions/yarl.svg Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

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.aio-libs.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 using a PEP 517 configuration setting --pure-python, or setting the YARL_NO_EXTENSIONS environment variable to a non-empty value, e.g.:

$ pip install yarl --config-settings=--pure-python=

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.aio-libs.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.

1.9.3 (2023-11-20)

Bug fixes

  • Stopped dropping trailing slashes in yarl.URL.joinpath() – by @mjpieters. (#862, #866)

  • Started accepting string subclasses in __truediv__() operations (URL / segment) – by @mjpieters. (#871, #884)

  • Fixed the human representation of URLs with square brackets in usernames and passwords – by @mjpieters. (#876, #882)

  • Updated type hints to include URL.missing_port(), URL.__bytes__() and the encoding argument to yarl.URL.joinpath() – by @mjpieters. (#891)

Packaging updates and notes for downstreams

  • Integrated Cython 3 to enable building yarl under Python 3.12 – by @mjpieters. (#829, #881)

  • Declared modern setuptools.build_meta as the 517 build backend in pyproject.toml explicitly – by @webknjaz. (#886)

  • Converted most of the packaging setup into a declarative setup.cfg config – by @webknjaz. (#890)

  • Replaced the packaging is replaced from an old-fashioned setup.py to an in-tree 517 build backend – by @webknjaz.

    Whenever the end-users or downstream packagers need to build yarl from source (a Git checkout or an sdist), they may pass a config_settings flag --pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    $ python -m pip install . --config-settings=--pure-python=

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    $ python -m build --config-setting=--pure-python=

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it. (#893)

  • Declared Python 3.12 supported officially in the distribution package metadata – by @edgarrmondragon. (#942)

Contributor-facing changes

  • A regression test for no-host URLs was added per #821 and 3986 – by @kenballus. (#821, #822)

  • Started testing yarl against Python 3.12 in CI – by @mjpieters. (#881)

  • All Python 3.12 jobs are now marked as required to pass in CI – by @edgarrmondragon. (#942)

  • MyST is now integrated in Sphinx – by @webknjaz.

    This allows the contributors to author new documents in Markdown when they have difficulties with going straight RST. (#953)

1.9.2 (2023-04-25)

Bugfixes

  • Fix regression with __truediv__ and absolute URLs with empty paths causing the raw path to lack the leading /. (#854)

1.9.1 (2023-04-21)

Bugfixes

  • Marked tests that fail on older Python patch releases (< 3.7.10, < 3.8.8 and < 3.9.2) as expected to fail due to missing a security fix for CVE-2021-23336. (#850)

1.9.0 (2023-04-19)

This release was never published to PyPI, due to issues with the build process.

Features

  • Added URL.joinpath(*elements), to create a new URL appending multiple path elements. (#704)

  • Made URL.__truediv__() return NotImplemented if called with an unsupported type — by @michaeljpeters. (#832)

Bugfixes

  • Path normalization for absolute URLs no longer raises a ValueError exception when .. segments would otherwise go beyond the URL path root. (#536)

  • Fixed an issue with update_query() not getting rid of the query when argument is None. (#792)

  • Added some input restrictions on with_port() function to prevent invalid boolean inputs or out of valid port inputs; handled incorrect 0 port representation. (#793)

  • Made yarl.URL.build() raise a TypeError if the host argument is None — by @paulpapacz. (#808)

  • Fixed an issue with update_query() getting rid of the query when the argument is empty but not None. (#845)

Misc

1.8.2 (2022-12-03)

This is the first release that started shipping wheels for Python 3.11.

1.8.1 (2022-08-01)

Misc

1.8.0 (2022-08-01)

Features

  • Added URL.raw_suffix, URL.suffix, URL.raw_suffixes, URL.suffixes, URL.with_suffix. (#613)

Improved Documentation

  • Fixed broken internal references to yarl.URL.human_repr(). (#665)

  • Fixed broken external references to multidict:index docs. (#665)

Deprecations and Removals

  • Dropped Python 3.6 support. (#672)

Misc

1.7.2 (2021-11-01)

Bugfixes

  • Changed call in with_port() to stop reencoding parts of the URL that were already encoded. (#623)

1.7.1 (2021-10-07)

Bugfixes

  • Fix 1.7.0 build error

1.7.0 (2021-10-06)

Features

  • Add __bytes__() magic method so that bytes(url) will work and use optimal ASCII encoding. (#582)

  • Started shipping platform-specific arm64 wheels for Apple Silicon. (#622)

  • Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. (#622)

  • Added support for Python 3.10. (#622)

1.6.3 (2020-11-14)

Bugfixes

  • No longer loose characters when decoding incorrect percent-sequences (like %e2%82%f8). All non-decodable percent-sequences are now preserved. #517

  • Provide x86 Windows wheels. #535


1.6.2 (2020-10-12)

Bugfixes

  • Provide generated .c files in TarBall distribution. #530

1.6.1 (2020-10-12)

Features

  • Provide wheels for aarch64, i686, ppc64le, s390x architectures on Linux as well as x86_64. #507

  • Provide wheels for Python 3.9. #526

Bugfixes

  • human_repr() now always produces valid representation equivalent to the original URL (if the original URL is valid). #511

  • Fixed requoting a single percent followed by a percent-encoded character in the Cython implementation. #514

  • Fix ValueError when decoding % which is not followed by two hexadecimal digits. #516

  • Fix decoding % followed by a space and hexadecimal digit. #520

  • Fix annotation of with_query()/update_query() methods for key=[val1, val2] case. #528

Removal

  • Drop Python 3.5 support; Python 3.6 is the minimal supported Python version.


1.6.0 (2020-09-23)

Features

  • Allow for int and float subclasses in query, while still denying bool. #492

Bugfixes

  • Do not requote arguments in URL.build(), with_xxx() and in / operator. #502

  • Keep IPv6 brackets in origin(). #504


1.5.1 (2020-08-01)

Bugfixes

  • Fix including relocated internal yarl._quoting_c C-extension into published PyPI dists. #485

Misc


1.5.0 (2020-07-26)

Features

  • Convert host to lowercase on URL building. #386

  • Allow using mod operator (%) for updating query string (an alias for update_query() method). #435

  • Allow use of sequences such as list and tuple in the values of a mapping such as dict to represent that a key has many values:

    url = URL("http://example.com")
    assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")

    #443

  • Support URL.build() with scheme and path (creates a relative URL). #464

  • Cache slow IDNA encode/decode calls. #476

  • Add @final / Final type hints #477

  • Support URL authority/raw_authority properties and authority argument of URL.build() method. #478

  • Hide the library implementation details, make the exposed public list very clean. #483

Bugfixes

  • Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+). #409

  • Fix a bug where query component, passed in a form of mapping or sequence, is unquoted in unexpected way. #426

  • Hide Query and QueryVariable type aliases in __init__.pyi, now they are prefixed with underscore. #431

  • Keep IPv6 brackets after updating port/user/password. #451


1.4.2 (2019-12-05)

Features

  • Workaround for missing str.isascii() in Python 3.6 #389


1.4.1 (2019-11-29)

  • Fix regression, make the library work on Python 3.5 and 3.6 again.

1.4.0 (2019-11-29)

  • Distinguish an empty password in URL from a password not provided at all (#262)

  • Fixed annotations for optional parameters of URL.build (#309)

  • Use None as default value of user parameter of URL.build (#309)

  • Enforce building C Accelerated modules when installing from source tarball, use YARL_NO_EXTENSIONS environment variable for falling back to (slower) Pure Python implementation (#329)

  • Drop Python 3.5 support

  • Fix quoting of plus in path by pure python version (#339)

  • Don’t create a new URL if fragment is unchanged (#292)

  • Included in error message the path that produces starting slash forbidden error (#376)

  • Skip slow IDNA encoding for ASCII-only strings (#387)

1.3.0 (2018-12-11)

  • Fix annotations for query parameter (#207)

  • An incoming query sequence can have int variables (the same as for Mapping type) (#208)

  • Add URL.explicit_port property (#218)

  • Give a friendlier error when port can’t be converted to int (#168)

  • bool(URL()) now returns False (#272)

1.2.6 (2018-06-14)

  • Drop Python 3.4 trove classifier (#205)

1.2.5 (2018-05-23)

  • Fix annotations for build (#199)

1.2.4 (2018-05-08)

  • Fix annotations for cached_property (#195)

1.2.3 (2018-05-03)

  • Accept str subclasses in URL constructor (#190)

1.2.2 (2018-05-01)

  • Fix build

1.2.1 (2018-04-30)

  • Pin minimal required Python to 3.5.3 (#189)

1.2.0 (2018-04-30)

  • Forbid inheritance, replace __init__ with __new__ (#171)

  • Support PEP-561 (provide type hinting marker) (#182)

1.1.1 (2018-02-17)

  • Fix performance regression: don’t encode empty netloc (#170)

1.1.0 (2018-01-21)

  • Make pure Python quoter consistent with Cython version (#162)

1.0.0 (2018-01-15)

  • Use fast path if quoted string does not need requoting (#154)

  • Speed up quoting/unquoting by _Quoter and _Unquoter classes (#155)

  • Drop yarl.quote and yarl.unquote public functions (#155)

  • Add custom string writer, reuse static buffer if available (#157) Code is 50-80 times faster than Pure Python version (was 4-5 times faster)

  • Don’t recode IP zone (#144)

  • Support encoded=True in yarl.URL.build() (#158)

  • Fix updating query with multiple keys (#160)

0.18.0 (2018-01-10)

  • Fallback to IDNA 2003 if domain name is not IDNA 2008 compatible (#152)

0.17.0 (2017-12-30)

  • Use IDNA 2008 for domain name processing (#149)

0.16.0 (2017-12-07)

  • Fix raising TypeError by url.query_string() after url.with_query({}) (empty mapping) (#141)

0.15.0 (2017-11-23)

  • Add raw_path_qs attribute (#137)

0.14.2 (2017-11-14)

  • Restore strict parameter as no-op in quote / unquote

0.14.1 (2017-11-13)

  • Restore strict parameter as no-op for sake of compatibility with aiohttp 2.2

0.14.0 (2017-11-11)

  • Drop strict mode (#123)

  • Fix "ValueError: Unallowed PCT %" when there’s a "%" in the URL (#124)

0.13.0 (2017-10-01)

  • Document encoded parameter (#102)

  • Support relative URLs like '?key=value' (#100)

  • Unsafe encoding for QS fixed. Encode ; character in value parameter (#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 arguments unquoting (#83)

0.10.2 (2017-05-05)

  • Unexpected hash behavior (#75)

0.10.1 (2017-05-03)

  • Unexpected compare behavior (#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 typing.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.9.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.9.3
File Size Uploaded
yarl-1.9.3.tar.gz 135.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for yarl 1.9.3
File
yarl-1.9.3-py3-none-any.whl Python 3 none any Details
yarl-1.9.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
yarl-1.9.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yarl-1.9.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
yarl-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
yarl-1.9.3-cp312-cp312-macosx_10_9_universal2.whl CPython 3.12 CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64) Details
yarl-1.9.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
yarl-1.9.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yarl-1.9.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
yarl-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
yarl-1.9.3-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
yarl-1.9.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
yarl-1.9.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yarl-1.9.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
yarl-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
yarl-1.9.3-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
yarl-1.9.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
yarl-1.9.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yarl-1.9.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
yarl-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
yarl-1.9.3-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
yarl-1.9.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
yarl-1.9.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
yarl-1.9.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
yarl-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
yarl-1.9.3-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
yarl-1.9.3-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
yarl-1.9.3-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x Details
yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le Details
yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 21.2 MB

Release files / yarl-1.9.3.tar.gz

Download URL yarl-1.9.3.tar.gz
Size 135.6 kB
Tags Source
SHA-256 checksum
How to use checksums
4a14907b597ec55740f63e52d7fee0e9ee09d5b9d57a4f399a7423268e457b57
BLAKE2b-256 checksum
How to use checksums
caf72af788563995eeec32b920c0640a6bc54777c89c780030a7754f95166b7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-py3-none-any.whl

Download URL yarl-1.9.3-py3-none-any.whl
Size 30.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
271d63396460b6607b588555ea27a1a02b717ca2e3f2cf53bdde4013d7790929
BLAKE2b-256 checksum
How to use checksums
7b583b83e1f92c992fb273fbef64809078572b527591713ea49f198a5e9a06fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-win_amd64.whl

Download URL yarl-1.9.3-cp312-cp312-win_amd64.whl
Size 75.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c4472fe53ebf541113e533971bd8c32728debc4c6d8cc177f2bff31d011ec17e
BLAKE2b-256 checksum
How to use checksums
25a1770782ec81e07a57701d39a88c9bf1148570664da1d7e394e57dc8c611aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-win32.whl

Download URL yarl-1.9.3-cp312-cp312-win32.whl
Size 69.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
96758e56dceb8a70f8a5cff1e452daaeff07d1cc9f11e9b0c951330f0a2396a7
BLAKE2b-256 checksum
How to use checksums
e63dc9625da780ddb6d0aa25bc0d02ef02be67b855abfd47146fe0eed21e5bde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Size 327.4 kB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
cccdc02e46d2bd7cb5f38f8cc3d9db0d24951abd082b2f242c9e9f59c0ab2af3
BLAKE2b-256 checksum
How to use checksums
a9fae554331c3669e5081656c581455fc364e6cf8eec57a2223099bbe14f2fd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp312-cp312-musllinux_1_1_s390x.whl
Size 332.9 kB
Tags CPython 3.12 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
88d2c3cc4b2f46d1ba73d81c51ec0e486f59cc51165ea4f789677f91a303a9a7
BLAKE2b-256 checksum
How to use checksums
04a0c3dd50fb8167639163ff73f031cd73d2ae694672dd4d4cc1d32921d79c2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl
Size 330.2 kB
Tags CPython 3.12 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3cfa4dbe17b2e6fca1414e9c3bcc216f6930cb18ea7646e7d0d52792ac196808
BLAKE2b-256 checksum
How to use checksums
cb946c61b0c96a8c7d5d5caca55b9ca4431a40eb98e3ccbc068a46dd57b06f9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp312-cp312-musllinux_1_1_i686.whl
Size 312.8 kB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
44e91a669c43f03964f672c5a234ae0d7a4d49c9b85d1baa93dec28afa28ffbd
BLAKE2b-256 checksum
How to use checksums
c46d4b5cbb9a50a0b72f335ae8fe1f3ad4f0133aa3f3769333b2889b9c5a3e89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp312-cp312-musllinux_1_1_aarch64.whl
Size 322.6 kB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
79e1df60f7c2b148722fb6cafebffe1acd95fd8b5fd77795f56247edaf326752
BLAKE2b-256 checksum
How to use checksums
62472daa27f4c7dbc8969211a0ed0524fc8a6604f29ed3e6ff8e6f42a487dbe8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 321.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7c86d0d0919952d05df880a1889a4f0aeb6868e98961c090e335671dea5c0361
BLAKE2b-256 checksum
How to use checksums
1ab178f142828d4bd97fc35616d8601d79fbce72adf44bf6eb7a750a1fcd15ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 326.5 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e741bd48e6a417bdfbae02e088f60018286d6c141639359fb8df017a3b69415a
BLAKE2b-256 checksum
How to use checksums
9c0c089a5686f1f35c31675b61fd5a76f8bebacb569fa19385b17aa3c13a2522
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 326.4 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
aa4643635f26052401750bd54db911b6342eb1a9ac3e74f0f8b58a25d61dfe41
BLAKE2b-256 checksum
How to use checksums
76aa35b8f0225fde8509305fcaef56ac44b015e922530d43d111af05b37fddb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 316.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cd49a908cb6d387fc26acee8b7d9fcc9bbf8e1aca890c0b2fdfd706057546080
BLAKE2b-256 checksum
How to use checksums
09b199ab6e04453fd6135051c3f8c63d70f841a11de12dc181669183fe98accb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 310.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3d5434b34100b504aabae75f0622ebb85defffe7b64ad8f52b8b30ec6ef6e4b9
BLAKE2b-256 checksum
How to use checksums
69d52d92ebe3fdd22601c658c95365e44c87aeeb2a8bdbff4b49b4eadca4cdf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL yarl-1.9.3-cp312-cp312-macosx_11_0_arm64.whl
Size 78.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c6f034386e5550b5dc8ded90b5e2ff7db21f0f5c7de37b6efc5dac046eb19c10
BLAKE2b-256 checksum
How to use checksums
2d8d3ab786266d427bb4018977316ad6900166ca9befbad39ee28c45730a7654
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp312-cp312-macosx_10_9_x86_64.whl
Size 80.8 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c4b1efb11a8acd13246ffb0bee888dd0e8eb057f8bf30112e3e21e421eb82d4a
BLAKE2b-256 checksum
How to use checksums
0836d3100bff1d47780418449d0d8bad8b41d5bada7bd5c5529b9a58e0ac2414
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp312-cp312-macosx_10_9_universal2.whl

Download URL yarl-1.9.3-cp312-cp312-macosx_10_9_universal2.whl
Size 128.8 kB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
dd318e6b75ca80bff0b22b302f83a8ee41c62b8ac662ddb49f67ec97e799885d
BLAKE2b-256 checksum
How to use checksums
9947f7c0a170fda7e0e3dc684660e548c365736fc5d3f545e8a26e6607e6719e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-win_amd64.whl

Download URL yarl-1.9.3-cp311-cp311-win_amd64.whl
Size 75.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f7271d6bd8838c49ba8ae647fc06469137e1c161a7ef97d778b72904d9b68696
BLAKE2b-256 checksum
How to use checksums
26f057d1e1d3d2c7a34cf2d565ddbfe0b593f7d9b9c3cac6a541f4d7ed311fa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-win32.whl

Download URL yarl-1.9.3-cp311-cp311-win32.whl
Size 69.6 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
29beac86f33d6c7ab1d79bd0213aa7aed2d2f555386856bb3056d5fdd9dab279
BLAKE2b-256 checksum
How to use checksums
6cf666c14137e3fc9439485baf489fe6449884c16c5b96da3f079f4f2a2d3ff7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Size 325.9 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
b61e64b06c3640feab73fa4ff9cb64bd8182de52e5dc13038e01cfe674ebc321
BLAKE2b-256 checksum
How to use checksums
c8f2720e4abff6b00db848cee94aab6905c1a3dfde28ecc1e34dc5190d8f7fbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp311-cp311-musllinux_1_1_s390x.whl
Size 334.1 kB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
4d6d74a97e898c1c2df80339aa423234ad9ea2052f66366cef1e80448798c13d
BLAKE2b-256 checksum
How to use checksums
e4ea5a32e7021e0560b219bc8db5bd039d74bf52ba6ed778c65a2fcfd77e0280
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 334.2 kB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4003f380dac50328c85e85416aca6985536812c082387255c35292cb4b41707e
BLAKE2b-256 checksum
How to use checksums
1ce2abdaaa4354d704aa4d439d95ae08c0f601915277164638ff42114becb03a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp311-cp311-musllinux_1_1_i686.whl
Size 317.2 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
1d93461e2cf76c4796355494f15ffcb50a3c198cc2d601ad8d6a96219a10c363
BLAKE2b-256 checksum
How to use checksums
a729bd5b1e91763dd06a6df0ea5a29b1eee45a04564d45158d4591005343a489
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp311-cp311-musllinux_1_1_aarch64.whl
Size 323.4 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b0b8c06afcf2bac5a50b37f64efbde978b7f9dc88842ce9729c020dc71fae4ce
BLAKE2b-256 checksum
How to use checksums
2835a9ffc72b9b502ba58ac33b5ad2d50e50f124b6b156d3a480fe62ae8033bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 327.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
72a57b41a0920b9a220125081c1e191b88a4cdec13bf9d0649e382a822705c65
BLAKE2b-256 checksum
How to use checksums
508b5ed41713edda564d9df1e5e34a4ec7048d3606682b1de893842ae1b1dbed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 337.1 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2c757f64afe53a422e45e3e399e1e3cf82b7a2f244796ce80d8ca53e16a49b9f
BLAKE2b-256 checksum
How to use checksums
b1f2cb4709595f00cbcfd6c8eef6effe9ddd4e6e01d7d531ff030721d73dd21d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 338.5 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fe34befb8c765b8ce562f0200afda3578f8abb159c76de3ab354c80b72244c41
BLAKE2b-256 checksum
How to use checksums
208de368cfbd4e0c8b99b07ecda502f3e0e551c57da86bbf8fb5e808913daef4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 323.3 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
26a1a8443091c7fbc17b84a0d9f38de34b8423b459fb853e6c8cdfab0eacf613
BLAKE2b-256 checksum
How to use checksums
f072c05717170d7d388939d03eb5438cb7e4c2a8fdad6aa51544be5450932621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 315.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
632c7aeb99df718765adf58eacb9acb9cbc555e075da849c1378ef4d18bf536a
BLAKE2b-256 checksum
How to use checksums
777f3b4f834028770725fcd663ed84bd252fe9a1ca164733f52c065c76f2ec41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL yarl-1.9.3-cp311-cp311-macosx_11_0_arm64.whl
Size 80.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d81657b23e0edb84b37167e98aefb04ae16cbc5352770057893bd222cdc6e45f
BLAKE2b-256 checksum
How to use checksums
f2aeeaa7de48498db74aa19f4b6490821a5f91cfbae9f0561e7417fbb9b10af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 82.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
73cc83f918b69110813a7d95024266072d987b903a623ecae673d1e71579d566
BLAKE2b-256 checksum
How to use checksums
78edb23d64e00e8fcd4aa7bb591ba9134d1e946b8af11f7024aec8e30062181e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp311-cp311-macosx_10_9_universal2.whl

Download URL yarl-1.9.3-cp311-cp311-macosx_10_9_universal2.whl
Size 132.1 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d61a0ca95503867d4d627517bcfdc28a8468c3f1b0b06c626f30dd759d3999fd
BLAKE2b-256 checksum
How to use checksums
f71dd50638a516de5a885f94af55e4ccf80a6e41242978fa3b28de1c3b2bbc22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-win_amd64.whl

Download URL yarl-1.9.3-cp310-cp310-win_amd64.whl
Size 75.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
cf7a4e8de7f1092829caef66fd90eaf3710bc5efd322a816d5677b7664893c93
BLAKE2b-256 checksum
How to use checksums
8c807ba7e187c55125af0a89741ea7a1be9fa305620742e8580e730029e817d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-win32.whl

Download URL yarl-1.9.3-cp310-cp310-win32.whl
Size 69.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d34c4f80956227f2686ddea5b3585e109c2733e2d4ef12eb1b8b4e84f09a2ab6
BLAKE2b-256 checksum
How to use checksums
2ab755c0a849fa439ffc07ace8dabfab320326ca65ecd3ace87ecf79ba3493a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Size 303.8 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
9df9a0d4c5624790a0dea2e02e3b1b3c69aed14bcb8650e19606d9df3719e87d
BLAKE2b-256 checksum
How to use checksums
c5d2d989e8d08a49a677442571f94d25973de12b9b0a99702fb91f3d073957dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp310-cp310-musllinux_1_1_s390x.whl
Size 310.2 kB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
c405d482c320a88ab53dcbd98d6d6f32ada074f2d965d6e9bf2d823158fa97de
BLAKE2b-256 checksum
How to use checksums
1b66e79251e6f31c78f1b596968a51da4178b01c86b1fc5275371f74206c25b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 310.9 kB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
dd952b9c64f3b21aedd09b8fe958e4931864dba69926d8a90c90d36ac4e28c9a
BLAKE2b-256 checksum
How to use checksums
da8f9b350278b1a727cf711948ef35b880f8c70b38eb1f1f15e429f3d86f2c6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp310-cp310-musllinux_1_1_i686.whl
Size 294.4 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
b8bc5b87a65a4e64bc83385c05145ea901b613d0d3a434d434b55511b6ab0067
BLAKE2b-256 checksum
How to use checksums
9c834458d84eb88efa48826702afd5b45acee3ec860d58271da7974e029a5a5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp310-cp310-musllinux_1_1_aarch64.whl
Size 300.2 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
721ee3fc292f0d069a04016ef2c3a25595d48c5b8ddc6029be46f6158d129c92
BLAKE2b-256 checksum
How to use checksums
52d77e350b00d3fde62e126b1a0444645f400782a9a9ac6f4a827bfff7ae0622
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 300.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c5f3faeb8100a43adf3e7925d556801d14b5816a0ac9e75e22948e787feec642
BLAKE2b-256 checksum
How to use checksums
b6b244b31699e27f82c577143d062a2b58cbe0c6e7a0828d13c0ffd10891ad40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 307.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e0f17d1df951336a02afc8270c03c0c6e60d1f9996fcbd43a4ce6be81de0bd9d
BLAKE2b-256 checksum
How to use checksums
5fab51b416674635e1006ac89d5ba42d1a37e0184d8fe04b7f0bfcb117df94ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 311.0 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e36021db54b8a0475805acc1d6c4bca5d9f52c3825ad29ae2d398a9d530ddb88
BLAKE2b-256 checksum
How to use checksums
82664e76fc7b034003794d808b755e178cd8a983ce55913e31c4f3ad1e741552
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 296.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fc94441bcf9cb8c59f51f23193316afefbf3ff858460cb47b5758bf66a14d130
BLAKE2b-256 checksum
How to use checksums
46baa34c3fb1eeedcf87c2ae88f29cf360e2db47c007c59b5f318ea59b584a69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 290.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
aed37db837ecb5962469fad448aaae0f0ee94ffce2062cf2eb9aed13328b5196
BLAKE2b-256 checksum
How to use checksums
921fcb8db371844bea90555b452239cb9163bddb20dcb438db6995ceab17d41c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL yarl-1.9.3-cp310-cp310-macosx_11_0_arm64.whl
Size 78.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
525cd69eff44833b01f8ef39aa33a9cc53a99ff7f9d76a6ef6a9fb758f54d0ff
BLAKE2b-256 checksum
How to use checksums
b1ff0806e82dd5da1d6f0f41786d8cfda20b384c91a59efcce89101bf9ee51bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 80.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9a5211de242754b5e612557bca701f39f8b1a9408dff73c6db623f22d20f470e
BLAKE2b-256 checksum
How to use checksums
82cb1b8d1e245749155bc0deeae83ce9061c7a35c2ce7a4d9ada740f1151db0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp310-cp310-macosx_10_9_universal2.whl

Download URL yarl-1.9.3-cp310-cp310-macosx_10_9_universal2.whl
Size 128.3 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
32435d134414e01d937cd9d6cc56e8413a8d4741dea36af5840c7750f04d16ab
BLAKE2b-256 checksum
How to use checksums
cdb15cea505c3f85a9419cb5fc78ea15bc3a607789a787550f56d4e3266c46da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp39-cp39-win_amd64.whl
Size 76.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d92d897cb4b4bf915fbeb5e604c7911021a8456f0964f3b8ebbe7f9188b9eabb
BLAKE2b-256 checksum
How to use checksums
8bd344103fb90e5b9d53cf141bc080f4141c7594f4238be3569581258bd6fff3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp39-cp39-win32.whl
Size 70.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e2a16ef5fa2382af83bef4a18c1b3bcb4284c4732906aa69422cf09df9c59f1f
BLAKE2b-256 checksum
How to use checksums
669a9e8b424719dcacf715b36227d8082cfb5bfcb010a1a43964de99fb861a23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp39-cp39-musllinux_1_1_x86_64.whl
Size 305.9 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
6d350388ba1129bc867c6af1cd17da2b197dff0d2801036d2d7d83c2d771a682
BLAKE2b-256 checksum
How to use checksums
5a201a5acf2a873443c27efab14b62b60a750300e83899d93895b2dff7cb65e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp39-cp39-musllinux_1_1_s390x.whl
Size 313.0 kB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
0ab5baaea8450f4a3e241ef17e3d129b2143e38a685036b075976b9c415ea3eb
BLAKE2b-256 checksum
How to use checksums
7129639abdc2a6894c602250c9496caf1c227881afc3d43048f57045747ca12d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 313.5 kB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
af52725c7c39b0ee655befbbab5b9a1b209e01bb39128dce0db226a10014aacc
BLAKE2b-256 checksum
How to use checksums
342addfafda8707f4ed88c248bca8c8ed7ccbad8cac77bdbcad4fe5bbc8f4a43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp39-cp39-musllinux_1_1_i686.whl
Size 297.4 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
e0e7e83f31e23c5d00ff618045ddc5e916f9e613d33c5a5823bc0b0a0feb522f
BLAKE2b-256 checksum
How to use checksums
a1697e9e9ad02dee02d37da92fe5222f46e07f720c39ee632b37603b0a54aeea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp39-cp39-musllinux_1_1_aarch64.whl
Size 302.9 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
ca6b66f69e30f6e180d52f14d91ac854b8119553b524e0e28d5291a724f0f423
BLAKE2b-256 checksum
How to use checksums
431d85b2a40566cf201178c5bb36be80f2a94348314b9c5c0619b430aca8e9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 303.3 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
778df71c8d0c8c9f1b378624b26431ca80041660d7be7c3f724b2c7a6e65d0d6
BLAKE2b-256 checksum
How to use checksums
293cad22e0e531de4c773faa10baa21dd6676d0735b29681cd90c23507ce0e00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 311.9 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
0d155a092bf0ebf4a9f6f3b7a650dc5d9a5bbb585ef83a52ed36ba46f55cc39d
BLAKE2b-256 checksum
How to use checksums
9ae61a6c5db4a4a0a9e1b2d8c4ae59b7521453b7b02e352257763a56e13346f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 314.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8535e111a064f3bdd94c0ed443105934d6f005adad68dd13ce50a488a0ad1bf3
BLAKE2b-256 checksum
How to use checksums
b32f29392d80323ef7b5b10c2fb0c2c01ced0ba1184ed202c5f12ad0b51a153e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 300.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fe8080b4f25dfc44a86bedd14bc4f9d469dfc6456e6f3c5d9077e81a5fedfba7
BLAKE2b-256 checksum
How to use checksums
33793a81b66f8831b481b568be45d6ddce624c11ea5a2b43501962e23cf40496
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 294.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b9f9cafaf031c34d95c1528c16b2fa07b710e6056b3c4e2e34e9317072da5d1a
BLAKE2b-256 checksum
How to use checksums
e203e6239565380e2e79ccf3d9d661a6500950528e08637b5914f32d4d4e0044
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL yarl-1.9.3-cp39-cp39-macosx_11_0_arm64.whl
Size 81.1 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ff34cb09a332832d1cf38acd0f604c068665192c6107a439a92abfd8acf90fe2
BLAKE2b-256 checksum
How to use checksums
57de7eac1659d02eeabfa9311d7c2eb57853b8ec2a6a5196dd0f2d4af5907c12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 82.9 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b7831566595fe88ba17ea80e4b61c0eb599f84c85acaa14bf04dd90319a45b90
BLAKE2b-256 checksum
How to use checksums
31d4f7c6a0bb9b8f3c491790bdb522ebccf0e7de0dce95f0e075125dd3bc45fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp39-cp39-macosx_10_9_universal2.whl

Download URL yarl-1.9.3-cp39-cp39-macosx_10_9_universal2.whl
Size 133.2 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2f3c8822bc8fb4a347a192dd6a28a25d7f0ea3262e826d7d4ef9cc99cd06d07e
BLAKE2b-256 checksum
How to use checksums
4ae89f0a882d2f1f59cce0f35d337e8c0d15af6fd61f6e413621451fd20b3997
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp38-cp38-win_amd64.whl
Size 76.3 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6465d36381af057d0fab4e0f24ef0e80ba61f03fe43e6eeccbe0056e74aadc70
BLAKE2b-256 checksum
How to use checksums
61dfc94ae0837331e8b273b2b2042264dd6dc1d7a666958974af20741a399837
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp38-cp38-win32.whl
Size 70.0 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
8a2538806be846ea25e90c28786136932ec385c7ff3bc1148e45125984783dc6
BLAKE2b-256 checksum
How to use checksums
56909a5948b515afda0d09eb92996558719f69fca97477a3918fb685459f1343
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp38-cp38-musllinux_1_1_x86_64.whl
Size 316.1 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
5f74b015c99a5eac5ae589de27a1201418a5d9d460e89ccb3366015c6153e60a
BLAKE2b-256 checksum
How to use checksums
87b2fa30fdcb4ede079032cc3ea1bd208249b80a7dd91ddb91bdb1e8a9e191a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp38-cp38-musllinux_1_1_s390x.whl
Size 324.0 kB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
4ce77d289f8d40905c054b63f29851ecbfd026ef4ba5c371a158cfe6f623663e
BLAKE2b-256 checksum
How to use checksums
257ffca18a215ac3158696c30ec3ca74b9b0f11c6f00985bc408b58d0bcb7621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 324.7 kB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7217234b10c64b52cc39a8d82550342ae2e45be34f5bff02b890b8c452eb48d7
BLAKE2b-256 checksum
How to use checksums
a7a502cf50c9e2c35c7002dedfe26137853f11b26ce8eab85a6caab5977dc628
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp38-cp38-musllinux_1_1_i686.whl
Size 308.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
c25ec06e4241e162f5d1f57c370f4078797ade95c9208bd0c60f484834f09c96
BLAKE2b-256 checksum
How to use checksums
996a854762d5a30ac6d27d42d329a3696dd922f8cc033bf1f2d1cf7ff0b739b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp38-cp38-musllinux_1_1_aarch64.whl
Size 314.1 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6280353940f7e5e2efaaabd686193e61351e966cc02f401761c4d87f48c89ea4
BLAKE2b-256 checksum
How to use checksums
e68bfb9e8ece6c5ee6617a0381e8321336c8ab34f78a53b06d163b695661771a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 307.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e73db54c967eb75037c178a54445c5a4e7461b5203b27c45ef656a81787c0c1b
BLAKE2b-256 checksum
How to use checksums
08ea2af03dbc232ed09f12316df63ec9820dc97c263a632df446c3e1e38f9091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 314.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
cfd77e8e5cafba3fb584e0f4b935a59216f352b73d4987be3af51f43a862c403
BLAKE2b-256 checksum
How to use checksums
717c8befca50d8c376d1b1de0bcaaa50fc7f8ce850de6b6b86074251aafec53f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 317.3 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
53ec65f7eee8655bebb1f6f1607760d123c3c115a324b443df4f916383482a67
BLAKE2b-256 checksum
How to use checksums
d48186f8eca6188cb8007e4c2b0351da8f5057526a0f539217c94c770124a5e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 304.7 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b8d51817cf4b8d545963ec65ff06c1b92e5765aa98831678d0e2240b6e9fd281
BLAKE2b-256 checksum
How to use checksums
5e1f0678215345371ed4932c7272e1ad2811ad4c11aec9340c61eca41befee0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 297.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
09c19e5f4404574fcfb736efecf75844ffe8610606f3fccc35a1515b8b6712c4
BLAKE2b-256 checksum
How to use checksums
f97c82402bc01f41347a1c38b8dd7869b29c164f071e1d1d34f2eb3da4fc5777
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL yarl-1.9.3-cp38-cp38-macosx_11_0_arm64.whl
Size 81.3 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2dc72e891672343b99db6d497024bf8b985537ad6c393359dc5227ef653b2f17
BLAKE2b-256 checksum
How to use checksums
bd53c4f7d909fc50b3c412c42edd1e85fd8ee55603adf27f486a6eeb60eb577b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 82.9 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9a172c3d5447b7da1680a1a2d6ecdf6f87a319d21d52729f45ec938a7006d5d8
BLAKE2b-256 checksum
How to use checksums
8946edeb4c21fa2b0a90a9792cde16e8e6402d7ac068f1b9a1feb4fb876204a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp38-cp38-macosx_10_9_universal2.whl

Download URL yarl-1.9.3-cp38-cp38-macosx_10_9_universal2.whl
Size 133.5 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
bb72d2a94481e7dc7a0c522673db288f31849800d6ce2435317376a345728225
BLAKE2b-256 checksum
How to use checksums
98ff66b961c85ab82ff6fa51def4bf813a6e7ebcb130fb96b026451eb0f4e91a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp37-cp37m-win_amd64.whl
Size 76.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2dad8166d41ebd1f76ce107cf6a31e39801aee3844a54a90af23278b072f1ccf
BLAKE2b-256 checksum
How to use checksums
219b9780c88057914ea6bf34296894d256eaba8dda07bf52eb8bedf82cc92dc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

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

Download URL yarl-1.9.3-cp37-cp37m-win32.whl
Size 70.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
946db4511b2d815979d733ac6a961f47e20a29c297be0d55b6d4b77ee4b298f6
BLAKE2b-256 checksum
How to use checksums
4550e6d08a6b95720b0068af1abaf384880c3629cc33ffffedb7bacb373cc655
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL yarl-1.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 291.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
1a0a4f3aaa18580038cfa52a7183c8ffbbe7d727fe581300817efc1e96d1b0e9
BLAKE2b-256 checksum
How to use checksums
ed91e103dddd89dd36582d7143506955118adacc6a3019f36434817733fba890
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl

Download URL yarl-1.9.3-cp37-cp37m-musllinux_1_1_s390x.whl
Size 295.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
66a6dbf6ca7d2db03cc61cafe1ee6be838ce0fbc97781881a22a58a7c5efef42
BLAKE2b-256 checksum
How to use checksums
13ff2b5dae30134055e16c4c3483cbc1170f2cce2bd61eb525407c2c5c349427
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl

Download URL yarl-1.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 296.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7eaf13af79950142ab2bbb8362f8d8d935be9aaf8df1df89c86c3231e4ff238a
BLAKE2b-256 checksum
How to use checksums
40c8cc405f0fc9d36c184f0214bf5cf107af441893f5267650fbc7a33ace1666
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl

Download URL yarl-1.9.3-cp37-cp37m-musllinux_1_1_i686.whl
Size 282.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
8f18a7832ff85dfcd77871fe677b169b1bc60c021978c90c3bb14f727596e0ae
BLAKE2b-256 checksum
How to use checksums
fb14fb9381ef0c37a46e774f0f79164c148c248ad378d2cf1b468e233c4cb124
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL yarl-1.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 287.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
28a108cb92ce6cf867690a962372996ca332d8cda0210c5ad487fe996e76b8bb
BLAKE2b-256 checksum
How to use checksums
50f609607be0e3b36e518b7090ec43d73d68d227f92533e61f06541b279c99a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL yarl-1.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 288.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fc391e3941045fd0987c77484b2799adffd08e4b6735c4ee5f054366a2e1551d
BLAKE2b-256 checksum
How to use checksums
3e595db6972534855d21c4194dc6d57b0ad8aa88298bf43c8b1aa941ae338fc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL yarl-1.9.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 293.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
828235a2a169160ee73a2fcfb8a000709edf09d7511fccf203465c3d5acc59e4
BLAKE2b-256 checksum
How to use checksums
9e505b60928cb0f2575d8e72118cafc8f592801dadf986cf557f8daf9c64d24b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL yarl-1.9.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 300.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8dab30b21bd6fb17c3f4684868c7e6a9e8468078db00f599fb1c14e324b10fca
BLAKE2b-256 checksum
How to use checksums
8ebb7b82f9af61bf3cb10377bd186c2369bdf3d41d93aa2c3b907252795c820e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL yarl-1.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 285.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c99ddaddb2fbe04953b84d1651149a0d85214780e4d0ee824e610ab549d98d92
BLAKE2b-256 checksum
How to use checksums
47a130597a5c4c8b1cb909ced9bcf4beae6acb9adbbeba2dc458ab2fa91d9fdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL yarl-1.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 279.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
51382c72dd5377861b573bd55dcf680df54cea84147c8648b15ac507fbef984d
BLAKE2b-256 checksum
How to use checksums
e2c071b6fe65a0a3480b82702d42db444f18da3decaec5e4c1cc12372f3e26b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release files / yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL yarl-1.9.3-cp37-cp37m-macosx_10_9_x86_64.whl
Size 82.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
126638ab961633f0940a06e1c9d59919003ef212a15869708dcb7305f91a6732
BLAKE2b-256 checksum
How to use checksums
fab80423f3fdc67bc73cee06ec439c9630c25e637ae65a9927ba076797f61c00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.6

Release history Release notifications | RSS feed

1.9.6

92 release files

1.9.5

92 release files

This release

1.9.3 This release

90 release files

1.9.2

74 release files

1.9.1

74 release files

1.6.3

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