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 Codecov coverage for the pytest-driven measurements https://img.shields.io/endpoint?url=https://codspeed.io/badge.json 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/%D1%88%D0%BB%D1%8F%D1%85')

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

>>> url.path
'/шлях'

>>> url.raw_path
'/%D1%88%D0%BB%D1%8F%D1%85'

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 where wheels are not provided, 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=false

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 and propcache libraries.

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.

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

v1.25.1

(2026-09-15)

Contributor-facing changes

  • Stopped running the test suite inside the riscv64 wheel builds; every wheel for that architecture is built under emulation and the test run did not fit in the job timeout – by @bdraco.

    Related issues and pull requests on GitHub: #1906.


v1.25.0

(2026-09-15)

Bug fixes

  • Made the C and pure Python quoting implementations reject % in safe or protected when requoting and a space in safe or protected for query strings, since the two implementations disagreed on those configurations – by @bdraco.

    Related issues and pull requests on GitHub: #1869.

  • Made the pure Python quoter reject non-ASCII safe and protected characters when it is created, the same way the C extension does – by @bdraco.

    Related issues and pull requests on GitHub: #1893.

  • Fixed URL.query returning empty fields and keeping invalid percent-encoded UTF-8 as is, a regression in 1.19.0. It matches urllib.parse.parse_qsl again, and so do the methods built on it, yarl.URL.update_query(), yarl.URL.without_query_params() and yarl.URL.human_repr(), which also no longer double encode those escapes – by @bdraco.

    Related issues and pull requests on GitHub: #1899.

Features

  • Added ~yarl.query_to_pairs, a faster replacement for urllib.parse.parse_qsl with keep_blank_values=True that also takes max_fields and encoding arguments – by @bdraco.

    Related issues and pull requests on GitHub: #1899.

Contributor-facing changes

  • Added CodSpeed benchmarks for unquoting long strings, decoding + as a space, and parsing real world form bodies and large query strings – by @bdraco.

    Related issues and pull requests on GitHub: #1884.

  • Stopped running the test suite inside the wheel build jobs outside of release builds, since the test matrix already installs and tests the same wheels, and added Python 3.15 and 3.15t to the test matrix so those wheels stay covered. Release builds still test every wheel, and all release checks in the CI workflow now use github.ref_type – by @bdraco.

    Related issues and pull requests on GitHub: #1885, #1892.

  • Added tests that check the C and pure Python unquoting implementations produce the same output, including long runs and invalid or incomplete UTF-8 escapes, and that plus=True matches urllib.parse.unquote_plus for valid input – by @bdraco.

    Related issues and pull requests on GitHub: #1888.

  • Added tests that check the C and pure Python unquoting implementations agree for any combination of ignore, qs and plus, including non-ASCII ignore characters – by @bdraco.

    Related issues and pull requests on GitHub: #1890.

  • Added CodSpeed benchmarks for the pure Python unquoter, which is used when the C extension is not available, and for unquoting with several unsafe characters – by @bdraco.

    Related issues and pull requests on GitHub: #1891.

  • Added tests that check the C and pure Python unquoting implementations never return a string longer than their input – by @bdraco.

    Related issues and pull requests on GitHub: #1896.

  • Added tests that pin how the C and pure Python unquoting implementations handle overlong, surrogate and out of range UTF-8 escapes, the smallest and largest valid sequences, and sequences interrupted by other characters, so they also run when hypothesis is not installed – by @bdraco.

    Related issues and pull requests on GitHub: #1898.

Miscellaneous internal changes

  • Improved performance of the C unquoter, especially for long strings and strings with many percent-encoded characters – by @bdraco.

    Related issues and pull requests on GitHub: #1886.

  • Improved performance of the pure Python unquoter, especially for long strings and strings with many percent-encoded characters – by @bdraco.

    Related issues and pull requests on GitHub: #1889.

  • Removed the unused unsafe option from the internal unquoting classes; the unquoting done by ~yarl.URL never depended on it – by @bdraco.

    Related issues and pull requests on GitHub: #1894.

  • Replaced magic numbers in the C quoting helpers with named constants – by @bdraco.

    Related issues and pull requests on GitHub: #1897.

  • Made the internal unquoting classes, C and pure Python, reject ignore characters that are decoded anyway, such as letters or + when not parsing a query string, instead of silently accepting them – by @bdraco.

    Related issues and pull requests on GitHub: #1900.

  • Removed unused string constants from the C and pure Python quoting modules – by @bdraco.

    Related issues and pull requests on GitHub: #1901.

  • Simplified the C unquoter so it writes the escapes for ignored characters itself instead of calling the quoter, which also made it slightly faster – by @bdraco.

    Related issues and pull requests on GitHub: #1902.

  • Made the internal unquoting classes, C and pure Python, reject non-ASCII ignore characters, as the quoting classes already do for safe – by @bdraco.

    Related issues and pull requests on GitHub: #1903.

  • Simplified the pure Python unquoter so it writes the escapes for ignored characters itself instead of calling the quoter, which also made decoding escaped ASCII characters faster – by @bdraco.

    Related issues and pull requests on GitHub: #1904.


v1.24.5

(2026-07-19)

Contributor-facing changes

  • Restricted the exhaustive IDNA default-ignorable sweep test to a native Linux x86_64 runner. It iterates roughly 140,000 code points and its result does not depend on the architecture, so running it under emulated wheel builds only added minutes and intermittently crashed the test workers – by @bdraco.

    Related issues and pull requests on GitHub: #1806.


v1.24.4

(2026-07-19)

Packaging updates and notes for downstreams

  • Stopped installing hypothesis in the wheel-build test environment. The property-based quoting tests that need it are skipped there already, and building it from source on architectures without a prebuilt wheel (such as armv7l musllinux, where the build pulls in a Rust toolchain) was failing the wheel jobs – by @bdraco.

    Related issues and pull requests on GitHub: #1804.


v1.24.3

(2026-07-19)

Bug fixes

  • Fixed the ~yarl.URL.host property incorrectly returning the percent-encoded zone ID separator %25 instead of decoding it to % for IPv6 Zone ID URLs (e.g. http://[fe80::1%251]/ now correctly exposes .host as fe80::1%1 per 6874) – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1653.

  • Fixed _check_netloc() missing % from its NFKC normalization character check, which allowed Unicode characters U+FF05 (FULLWIDTH PERCENT SIGN) and U+FE6A (SMALL PERCENT SIGN) to produce a literal % in url.host via the standard library IDNA fallback – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1655.

  • Fixed yarl.URL.build() failing to validate characters in the zone ID portion of IPv6 addresses when validate_host=True, allowing control characters such as CR, LF, and NUL to pass through into url.host. Zone IDs now reject ASCII control characters and the empty string (a bare trailing %) per RFC 9844 §6.3 – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1655.

  • Fixed the Cython quoting backend retaining a lone surrogate code point when it was the only character forcing a rewrite; the pure-Python backend already dropped lone surrogates, so both now drop them and produce identical output – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1751.

  • Fixed the Cython quoting backend percent-encoding the % of a %XX escape when a lone surrogate fell within it, instead of dropping the surrogate and keeping the escape; it now matches the pure-Python backend and produces identical output – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1752.

  • Fixed the Cython quoter preserving lone surrogate characters (U+D800..``U+DFFF``) instead of dropping them; it now matches the pure-Python quoter, which strips them, so both backends produce the same output for the same input – by @bdraco.

    Related issues and pull requests on GitHub: #1799.

  • Fixed URL.build()() and yarl.URL.with_host() accepting hosts that expand to a URL delimiter (/, ? or #) under IDNA normalization; such hosts are now rejected, so the builder APIs agree with the parser – by @bdraco.

    Related issues and pull requests on GitHub: #1800.

  • Fixed host encoding accepting Unicode default-ignorable and format code points (such as soft hyphen, zero-width space, and word joiner) that IDNA normalization silently drops or otherwise folds into a different host, so the parsed host could differ from the input string; such hosts are now rejected on both the ~yarl.URL constructor and the builder APIs (URL.build()() and yarl.URL.with_host()) – by @bdraco.

    Related issues and pull requests on GitHub: #1801.

  • Fixed yarl.URL.build(), yarl.URL.joinpath() (and the / operator), yarl.URL.with_name(), and yarl.URL.with_suffix() building a URL with no host and no scheme whose serialized string could be parsed back as an absolute or executable-scheme URL; a scheme-shaped leading colon in a relative path is now percent-encoded, matching the parser and yarl.URL.human_repr() – by @bdraco.

    Related issues and pull requests on GitHub: #1802.

Improved documentation

  • Documented how ~yarl.URL.host and ~yarl.URL.raw_host expose 6874 IPv6 zone identifiers and that the host subcomponent properties include the zone identifier verbatim – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #998.

  • Fixed the stale with_name() example output in the API reference; the apostrophe is a character that 3986 allows unencoded in path segments – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1784.

Packaging updates and notes for downstreams

  • The setuptools build dependency lower bound has been restored to be >= 47 after an incorrect automated increase in PR #1657 – by @bbhtt.

    Related issues and pull requests on GitHub: #1764.

  • Fixed the in-tree PEP 517 build backend to import Cython at the point of use instead of module load time. The build front-ends that serve all the build hooks from a single long-running backend process, the way pyproject-api under tox does, import the backend before the dynamically declared Cython build dependency is provisioned, so the accelerated build used to fail with a NameError – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1784.

Contributor-facing changes

  • Added UV_CONSTRAINT and UV_BUILD_CONSTRAINT alongside PIP_CONSTRAINT and PIP_BUILD_CONSTRAINT in the cibuildwheel environment so the requirements/cython.txt pin is honored under the build[uv] frontend; uv pip ignores the PIP_ variables and reads only the UV_ ones, while the PIP_ variants are kept for the pip fallback path – by @bdraco.

    Related issues and pull requests on GitHub: #1729.

  • Dependabot has been restricted to the requirements subdirectory to avoid unintended updates outside dependency requirement files – by @bbhtt.

    Related issues and pull requests on GitHub: #1764.

  • Started running the Sphinx doctest builder in CI through the doctest-docs tox environment, which existed but was never wired into the lint matrix and never installed the package whose examples it runs. Also added spelling word list entries so the spell check passes with dictionary backends other than the one CI uses – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1784.

Miscellaneous internal changes

  • Added regression tests ensuring that lone surrogates produced by decoding invalid UTF-8 with surrogateescape are preserved when building a URL with encoded=True and are dropped consistently by the C and pure-Python quoting backends when parsing – by @pajod.

    Related issues and pull requests on GitHub: #991.

  • Expanded the test suite to pin IPv6 zone identifier handling per the 6874 compatibility research: the %25 and legacy bare % separator forms, empty zone and reserved character corner cases, encoded=True round-trips, and zone survival through URL mutation APIs – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #998.


v1.24.2

(2026-05-19)

Contributor-facing changes

  • Switched the aarch64 and armv7l wheel builds to GitHub’s native ARM runners. The aarch64 wheels now build without QEMU emulation, and armv7l runs on aarch64 hosts so its 32-bit ARM execution is far cheaper than the previous aarch64-on-x86_64 path – by @bdraco.

    Related issues and pull requests on GitHub: #1724.

  • Restored per-runner native arches in the Windows wheel matrix on tag releases. The previous CIBW_ARCHS_WINDOWS=AMD64 ARM64 setting made both windows-latest and windows-11-arm cross-compile the other arch, producing two artifacts with identically-named wheels whose bytes differed; the deploy job’s download-artifact ... merge-multiple step tore those writes together, yielding a wheel that PyPI rejected with 400 Invalid distribution file. ZIP archive not accepted: Mis-matched data size during the 1.24.0 and 1.24.1 releases – by @bdraco.

    Related issues and pull requests on GitHub: #1725.


v1.24.1

(2026-05-19)

Contributor-facing changes

  • Allowed re-running the deploy job after a partial release failure: the Make Release step now skips when the GitHub Release already exists, and the PyPI publish step uses skip-existing so dists that were already uploaded on a prior attempt do not break the retry – by @bdraco.

    Related issues and pull requests on GitHub: #1721.


v1.24.0

(2026-05-19)

Bug fixes

  • Delayed importing pydantic until it’s needed to avoid increased import time – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1607, #1702.

  • Fixed pickling of ~yarl.URL on Python 3.15, where SplitResult gained a __getstate__ that requires attributes set by __init__. __getstate__ now returns the raw 5-tuple instead of a SplitResult built via tuple.__new__, so pickling no longer touches SplitResult serialization at all. Pickles produced by older yarl releases (which embed a SplitResult) continue to load unchanged – by @befeleme.

    Related issues and pull requests on GitHub: #1632, #1642, #1687.

  • Fixed a parsing issue where URLs containing text before an opening bracket in the host component (e.g. http://127.0.0.1[aa::ff]) were silently accepted instead of being rejected as strictly invalid per RFC 3986 – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1654.

  • Raise ValueError when a URL’s authority component contains a backslash, which is not a valid character per 3986 – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1659.

  • Fixed a host-confusion parsing bug where URLs containing multiple bracket characters in the host component (e.g. http://[:localhost[]].google:80) were silently parsed as an unintended host. Both split_url() and split_netloc() now raise ValueError when more than one [ or ] is found in the authority, or when [ does not appear at the start of the host subcomponent, in compliance with 3986 – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1661.

  • Fixed a parser/serializer inconsistency where percent-encoded characters in the scheme portion of a URL (e.g. ht%74p://...) were decoded by the requoter, causing str() and yarl.URL.human_repr() to emit an absolute URL with a scheme and host while the parsed properties (~yarl.URL.scheme, ~yarl.URL.host, ~yarl.URL.absolute) reported a relative, hostless URL. The fix preserves the percent-encoding of the colon (%3A) in relative paths whenever decoding it would materialize a URL scheme – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1669.

  • Fixed a parsing issue where URLs containing text after the closing bracket of an IP-literal host (e.g. http://[::1]allowed.example:1/) were silently accepted and normalized to the bracketed IP address (http://[::1]:1/), dropping the trailing suffix and changing the effective host identity. Per RFC 3986, after the closing ] only : followed by a port number or end-of-authority is valid – by @rodrigobnogueira.

    Related issues and pull requests on GitHub: #1672.

Features

  • Start building and shipping riscv64 wheels – by @justeph.

    Related issues and pull requests on GitHub: #1626.

Removals and backward incompatible breaking changes

  • Dropped support for the experimental free-threaded build of Python 3.13 – by @ngoldbaum.

    Related issues and pull requests on GitHub: #1667.

Improved documentation

  • Added a note in the yarl.URL.with_query() documentation explaining that types implementing __int__ (e.g. ~uuid.UUID) are converted to integers, and advising users to cast to str when the human-readable representation is needed – by @r266-tech.

    Related issues and pull requests on GitHub: #1638, #1645.

Contributor-facing changes

  • Resolved a ruff ISC004 violation in the PEP 517 build backend so the pre-commit ruff-check hook passes again – by @bdraco.

    Related issues and pull requests on GitHub: #1674.

  • Renamed the actions/checkout depth input to fetch-depth in the reusable codspeed workflow so the actionlint pre-commit hook passes and the intended shallow clone actually takes effect – by @bdraco.

    Related issues and pull requests on GitHub: #1676.

  • Bumped the pinned pyupgrade pre-commit hook to v3.21.2 so it stops crashing on Python 3.14, which made tokenize.cookie_re bytes-only – by @bdraco.

    Related issues and pull requests on GitHub: #1677.

  • The type preciseness coverage report generated by MyPy is now uploaded to Coveralls and will not be included in the Codecov views going forward – by @webknjaz.

    Related issues and pull requests on GitHub: #1680.

  • Raised the per-matrix-cell timeout of the CI Test job from 5 to 10 minutes to prevent false failures on slower runners – by @aiolibsbot.

    Related issues and pull requests on GitHub: #1683.

  • Added an AGENTS.md orientation file at the repository root, covering the pull request template, CHANGES/ news fragment conventions, draft-PR workflow, and the Cython quoter layout, so LLM contributors land changes that match project style – by @bdraco.

    Related issues and pull requests on GitHub: #1685.

  • Documented in AGENTS.md that the coverage gate also applies to test code, so unreachable defensive raise guards and one-sided cleanup branches in tests will fail CI – by @bdraco.

    Related issues and pull requests on GitHub: #1689.

  • Shrunk the CI wheel-build matrix on pull requests and non-tag pushes by restricting CIBW_ARCHS_MACOS to arm64, CIBW_ARCHS_WINDOWS to AMD64, and skipping the windows-11-arm runner – the test matrix only exercises those architectures, so the previously-built x86_64 macOS and ARM64 Windows wheels were never installed. Tag releases still build the full architecture set – by @aiolibsbot.

    Related issues and pull requests on GitHub: #1692.

  • Documented the docs spell check (make doc-spelling) in AGENTS.md as a pre-push gate, mirroring aio-libs/multidict#1345. The spell checker reads every CHANGES/*.rst fragment as part of the docs build, so an unknown technical word in a news fragment fails CI before a human sees the PR – by @bdraco.

    Related issues and pull requests on GitHub: #1693.

  • Added a CLAUDE.md at the repository root that imports AGENTS.md via Claude Code’s @-syntax, so the project’s LLM contributor rules load automatically when working in Claude Code – by @bdraco.

    Related issues and pull requests on GitHub: #1696.

  • Enforced top-level imports across yarl and tests via the ruff PLC0415 rule, wired through a new ruff-check pre-commit hook. Function-scoped imports must now opt in with # noqa: PLC0415 plus a comment explaining the import-time reason. Dropped the yesqa hook, which could not recognize ruff-only codes and stripped the new noqa comments as stale; a wider migration off flake8 onto ruff will follow separately – by @bdraco.

    Related issues and pull requests on GitHub: #1697.

  • Migrated the main tree from standalone black and isort pre-commit hooks to ruff format and the ruff I lint rule, sharing the existing [tool.ruff] config in pyproject.toml. ruff-check now runs with --fix so import-order fixes apply on commit, and the orphan [isort] block in setup.cfg was removed. The packaging/pep517_backend/ subtree keeps its own .ruff.toml and is unaffected – by @bdraco.

    Related issues and pull requests on GitHub: #1698.

  • Switched the cibuildwheel build frontend to build[uv] so that uv provisions every build and test virtual environment in the wheel matrix. Test-dependency installation in particular drops from a multi-second pip install per ABI to a roughly sub-second uv resolve – by @bdraco.

    Related issues and pull requests on GitHub: #1699.

  • Restructured the root CLAUDE.md to import contributor context from a shared aio-libs layer (~/.claude/aio-libs/context.md), a project-specific layer (~/.claude/aio-libs/yarl/context.md), the in-tree AGENTS.md, and an optional per-checkout CLAUDE.local.md override (added to .gitignore), so shared aio-libs guidance can live outside the repository while project rules continue to load automatically in Claude Code – by @aiolibsbot.

    Related issues and pull requests on GitHub: #1700, #1701.

  • Switched CI/CD to tox-dev/workflow’s reusable-tox.yml driven by an in-tree tox.ini. The build, metadata-validation and lint (pre-commit, spellcheck-docs, build-docs) jobs all run through the reusable workflow; MyPy coverage uploads to Coveralls from a post-tox-job hook – by @bdraco.

    Related issues and pull requests on GitHub: #1711.

  • Switched the CI test job from actions/setup-python to astral-sh/setup-uv with uv pip install. Pre-release interpreters skip the wheel cache so each run resolves freshly against the current snapshot – by @bdraco.

    Related issues and pull requests on GitHub: #1715.

  • Switched the Aiohttp workflow that runs the aiohttp test suite against the in-tree yarl checkout from actions/setup-python to astral-sh/setup-uv with uv pip install – by @bdraco.

    Related issues and pull requests on GitHub: #1716.

  • Switched the Aiohttp workflow’s make .develop step to install aiohttp’s dev env through uv pip by passing PIP="uv pip" – by @bdraco.

    Related issues and pull requests on GitHub: #1717.


1.23.0

(2025-12-16)

Features

  • Added support for pydantic, the ~yarl.URL could be used as a field type in pydantic models seamlessly.

    Related issues and pull requests on GitHub: #1607.

Packaging updates and notes for downstreams

  • The CI has been set up to notify Codecov about upload completion – by @webknjaz.

    With this, Codecov no longer needs to guess whether it received all the intended coverage reports or not.

    Related issues and pull requests on GitHub: #1577.

  • The in-tree build backend allows the end-users appending CFLAGS and LDFLAGS by setting respective environment variables externally.

    It additionally sets up default compiler flags to perform building with maximum optimization in release mode. This makes the resulting artifacts shipped to PyPI smaller.

    When line tracing is requested, the compiler and linker flags are configured to include as much information as possible for debugging and coverage tracking. The development builds are therefore smaller.

    – by @webknjaz

    Related issues and pull requests on GitHub: #1586.

  • The PEP 517 build backend now supports a new config setting for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds — they will keep being built in-tree regardless.

    – by @webknjaz

    Here’s an example of using this setting:

    $ python -m build \
        --config-setting=build-inplace=true

    Related issues and pull requests on GitHub: #1590.

  • Starting this version, when building the wheels is happening in an automatically created temporary directory, the build backend makes an effort to normalize the respective file system path to a deterministic source checkout directory.

    – by @webknjaz

    It does so by injecting the -ffile-prefix-map compiler option into the CFLAGS environment variable as suggested by known reproducible build practices.

    The effect is that downstreams will get more reproducible build results.

    Related issues and pull requests on GitHub: #1591.

  • Dropped Python 3.9 support; Python 3.10 is the minimal supported Python version – by @bdraco.

    Related issues and pull requests on GitHub: #1609.

Contributor-facing changes

  • The deprecated license classifier was removed from setup.cfg – by @yegorich.

    Related issues and pull requests on GitHub: #1550.

  • The in-tree build backend allows the end-users appending CFLAGS and LDFLAGS by setting respective environment variables externally.

    It additionally sets up default compiler flags to perform building with maximum optimization in release mode. This makes the resulting artifacts shipped to PyPI smaller.

    When line tracing is requested, the compiler and linker flags are configured to include as much information as possible for debugging and coverage tracking. The development builds are therefore smaller.

    – by @webknjaz

    Related issues and pull requests on GitHub: #1586.

  • The CI has been updated to consistently benchmark optimized release builds – by @webknjaz.

    When the release workflow is triggered, the pre-built wheels ready to hit PyPI are being tested. Otherwise, the job builds the project from source, while the rest of the workflow uses debug builds for line tracing and coverage collection.

    Related issues and pull requests on GitHub: #1587.


1.22.0

(2025-10-05)

Features

  • Added arm64 Windows wheel builds – by @finnagin.

    Related issues and pull requests on GitHub: #1516.


1.21.0

(2025-10-05)

Contributor-facing changes

  • The reusable-cibuildwheel.yml workflow has been refactored to be more generic and ci-cd.yml now holds all the configuration toggles – by @webknjaz.

    Related issues and pull requests on GitHub: #1535.

  • When building wheels, the source distribution is now passed directly to the cibuildwheel invocation – by @webknjaz.

    Related issues and pull requests on GitHub: #1536.

  • Added CI for Python 3.14 – by @kumaraditya303.

    Related issues and pull requests on GitHub: #1560.


1.20.1

(2025-06-09)

Bug fixes

  • Started raising a ValueError exception raised for corrupted IPv6 URL values.

    These fixes the issue where exception IndexError was leaking from the internal code because of not being handled and transformed into a user-facing error. The problem was happening under the following conditions: empty IPv6 URL, brackets in reverse order.

    – by @MaelPic.

    Related issues and pull requests on GitHub: #1512.

Packaging updates and notes for downstreams

  • Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1514.

  • Made Cython line tracing opt-in via the with-cython-tracing build config setting – by @bdraco.

    Previously, line tracing was enabled by default in pyproject.toml, which caused build issues for some users and made wheels nearly twice as slow. Now line tracing is only enabled when explicitly requested via pip install . --config-setting=with-cython-tracing=true or by setting the YARL_CYTHON_TRACING environment variable.

    Related issues and pull requests on GitHub: #1521.


1.20.0

(2025-04-16)

Features

  • Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1456.

Packaging updates and notes for downstreams

  • Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1456.


1.19.0

(2025-04-05)

Bug fixes

  • Fixed entire name being re-encoded when using yarl.URL.with_suffix() – by @NTFSvolume.

    Related issues and pull requests on GitHub: #1468.

Features

  • Started building armv7l wheels for manylinux – by @bdraco.

    Related issues and pull requests on GitHub: #1495.

Contributor-facing changes

  • GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.

    Related issues and pull requests on GitHub: #1471.

  • Increased minimum propcache version to 0.2.1 to fix failing tests – by @bdraco.

    Related issues and pull requests on GitHub: #1479.

  • Added all hidden folders to pytest’s norecursedirs to prevent it from trying to collect tests there – by @lysnikolaou.

    Related issues and pull requests on GitHub: #1480.

Miscellaneous internal changes

  • Improved accuracy of type annotations – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1484.

  • Improved performance of parsing query strings – by @bdraco.

    Related issues and pull requests on GitHub: #1493, #1497.

  • Improved performance of the C unquoter – by @bdraco.

    Related issues and pull requests on GitHub: #1496, #1498.


1.18.3

(2024-12-01)

Bug fixes

  • Fixed uppercase ASCII hosts being rejected by URL.build()() and yarl.URL.with_host() – by @bdraco.

    Related issues and pull requests on GitHub: #954, #1442.

Miscellaneous internal changes

  • Improved performances of multiple path properties on cache miss – by @bdraco.

    Related issues and pull requests on GitHub: #1443.


1.18.2

(2024-11-29)

No significant changes.


1.18.1

(2024-11-29)

Miscellaneous internal changes

  • Improved cache performance when ~yarl.URL objects are constructed from yarl.URL.build() with encoded=True – by @bdraco.

    Related issues and pull requests on GitHub: #1432.

  • Improved cache performance for operations that produce a new ~yarl.URL object – by @bdraco.

    Related issues and pull requests on GitHub: #1434, #1436.


1.18.0

(2024-11-21)

Features

  • Added keep_query and keep_fragment flags in the yarl.URL.with_path(), yarl.URL.with_name() and yarl.URL.with_suffix() methods, allowing users to optionally retain the query string and fragment in the resulting URL when replacing the path – by @paul-nameless.

    Related issues and pull requests on GitHub: #111, #1421.

Contributor-facing changes

  • Started running downstream aiohttp tests in CI – by @Cycloctane.

    Related issues and pull requests on GitHub: #1415.

Miscellaneous internal changes

  • Improved performance of converting ~yarl.URL to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1422.


1.17.2

(2024-11-17)

Bug fixes

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related issues and pull requests on GitHub: #1411, #1412.

  • Fixed a bug causing ~yarl.URL.port to return the default port when the given port was zero – by @gmacon.

    Related issues and pull requests on GitHub: #1413.

Features

  • Make error messages include details of incorrect type when port is not int in yarl.URL.build(). – by @Cycloctane.

    Related issues and pull requests on GitHub: #1414.

Packaging updates and notes for downstreams

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related issues and pull requests on GitHub: #1411, #1412.

Miscellaneous internal changes

  • Improved performance of the yarl.URL.joinpath() method – by @bdraco.

    Related issues and pull requests on GitHub: #1418.


1.17.1

(2024-10-30)

Miscellaneous internal changes

  • Improved performance of many ~yarl.URL methods – by @bdraco.

    Related issues and pull requests on GitHub: #1396, #1397, #1398.

  • Improved performance of passing a dict or str to yarl.URL.extend_query() – by @bdraco.

    Related issues and pull requests on GitHub: #1401.


1.17.0

(2024-10-28)

Features

  • Added ~yarl.URL.host_port_subcomponent which returns the 3986#section-3.2.2 host and 3986#section-3.2.3 port subcomponent – by @bdraco.

    Related issues and pull requests on GitHub: #1375.


1.16.0

(2024-10-21)

Bug fixes

  • Fixed blocking I/O to load Python code when creating a new ~yarl.URL with non-ascii characters in the network location part – by @bdraco.

    Related issues and pull requests on GitHub: #1342.

Removals and backward incompatible breaking changes

  • Migrated to using a single cache for encoding hosts – by @bdraco.

    Passing ip_address_size and host_validate_size to yarl.cache_configure() is deprecated in favor of the new encode_host_size parameter and will be removed in a future release. For backwards compatibility, the old parameters affect the encode_host cache size.

    Related issues and pull requests on GitHub: #1348, #1357, #1363.

Miscellaneous internal changes

  • Improved performance of constructing ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1336.

  • Improved performance of calling yarl.URL.build() and constructing unencoded ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1345.

  • Reworked the internal encoding cache to improve performance on cache hit – by @bdraco.

    Related issues and pull requests on GitHub: #1369.


1.15.5

(2024-10-18)

Miscellaneous internal changes

  • Improved performance of the yarl.URL.joinpath() method – by @bdraco.

    Related issues and pull requests on GitHub: #1304.

  • Improved performance of the yarl.URL.extend_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1305.

  • Improved performance of the yarl.URL.origin() method – by @bdraco.

    Related issues and pull requests on GitHub: #1306.

  • Improved performance of the yarl.URL.with_path() method – by @bdraco.

    Related issues and pull requests on GitHub: #1307.

  • Improved performance of the yarl.URL.with_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1308, #1328.

  • Improved performance of the yarl.URL.update_query() method – by @bdraco.

    Related issues and pull requests on GitHub: #1309, #1327.

  • Improved performance of the yarl.URL.join() method – by @bdraco.

    Related issues and pull requests on GitHub: #1313.

  • Improved performance of ~yarl.URL equality checks – by @bdraco.

    Related issues and pull requests on GitHub: #1315.

  • Improved performance of ~yarl.URL methods that modify the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1316.

  • Improved performance of the yarl.URL.with_fragment() method – by @bdraco.

    Related issues and pull requests on GitHub: #1317.

  • Improved performance of calculating the hash of ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1318.

  • Improved performance of the yarl.URL.relative() method – by @bdraco.

    Related issues and pull requests on GitHub: #1319.

  • Improved performance of the yarl.URL.with_name() method – by @bdraco.

    Related issues and pull requests on GitHub: #1320.

  • Improved performance of ~yarl.URL.parent – by @bdraco.

    Related issues and pull requests on GitHub: #1321.

  • Improved performance of the yarl.URL.with_scheme() method – by @bdraco.

    Related issues and pull requests on GitHub: #1322.


1.15.4

(2024-10-16)

Miscellaneous internal changes

  • Improved performance of the quoter when all characters are safe – by @bdraco.

    Related issues and pull requests on GitHub: #1288.

  • Improved performance of unquoting strings – by @bdraco.

    Related issues and pull requests on GitHub: #1292, #1293.

  • Improved performance of calling yarl.URL.build() – by @bdraco.

    Related issues and pull requests on GitHub: #1297.


1.15.3

(2024-10-15)

Bug fixes

  • Fixed yarl.URL.build() failing to validate paths must start with a / when passing authority – by @bdraco.

    The validation only worked correctly when passing host.

    Related issues and pull requests on GitHub: #1265.

Removals and backward incompatible breaking changes

  • Removed support for Python 3.8 as it has reached end of life – by @bdraco.

    Related issues and pull requests on GitHub: #1203.

Miscellaneous internal changes

  • Improved performance of constructing ~yarl.URL when the net location is only the host – by @bdraco.

    Related issues and pull requests on GitHub: #1271.


1.15.2

(2024-10-13)

Miscellaneous internal changes

  • Improved performance of converting ~yarl.URL to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1234.

  • Improved performance of yarl.URL.joinpath() – by @bdraco.

    Related issues and pull requests on GitHub: #1248, #1250.

  • Improved performance of constructing query strings from ~multidict.MultiDict – by @bdraco.

    Related issues and pull requests on GitHub: #1256.

  • Improved performance of constructing query strings with int values – by @bdraco.

    Related issues and pull requests on GitHub: #1259.


1.15.1

(2024-10-12)

Miscellaneous internal changes

  • Improved performance of calling yarl.URL.build() – by @bdraco.

    Related issues and pull requests on GitHub: #1222.

  • Improved performance of all ~yarl.URL methods that create new ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1226.

  • Improved performance of ~yarl.URL methods that modify the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1229.


1.15.0

(2024-10-11)

Bug fixes

  • Fixed validation with yarl.URL.with_scheme() when passed scheme is not lowercase – by @bdraco.

    Related issues and pull requests on GitHub: #1189.

Features

  • Started building armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #1204.

Miscellaneous internal changes

  • Improved performance of constructing unencoded ~yarl.URL objects – by @bdraco.

    Related issues and pull requests on GitHub: #1188.

  • Added a cache for parsing hosts to reduce overhead of encoding ~yarl.URL – by @bdraco.

    Related issues and pull requests on GitHub: #1190.

  • Improved performance of constructing query strings from ~collections.abc.Mapping – by @bdraco.

    Related issues and pull requests on GitHub: #1193.

  • Improved performance of converting ~yarl.URL objects to strings – by @bdraco.

    Related issues and pull requests on GitHub: #1198.


1.14.0

(2024-10-08)

Packaging updates and notes for downstreams

  • Switched to using the propcache package for property caching – by @bdraco.

    The propcache package is derived from the property caching code in yarl and has been broken out to avoid maintaining it for multiple projects.

    Related issues and pull requests on GitHub: #1169.

Contributor-facing changes

  • Started testing with Hypothesis – by @webknjaz and @bdraco.

    Special thanks to @Zac-HD for helping us get started with this framework.

    Related issues and pull requests on GitHub: #860.

Miscellaneous internal changes

  • Improved performance of yarl.URL.is_default_port() when no explicit port is set – by @bdraco.

    Related issues and pull requests on GitHub: #1168.

  • Improved performance of converting ~yarl.URL to a string when no explicit port is set – by @bdraco.

    Related issues and pull requests on GitHub: #1170.

  • Improved performance of the yarl.URL.origin() method – by @bdraco.

    Related issues and pull requests on GitHub: #1175.

  • Improved performance of encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1176.


1.13.1

(2024-09-27)

Miscellaneous internal changes

  • Improved performance of calling yarl.URL.build() with authority – by @bdraco.

    Related issues and pull requests on GitHub: #1163.


1.13.0

(2024-09-26)

Bug fixes

  • Started rejecting ASCII hostnames with invalid characters. For host strings that look like authority strings, the exception message includes advice on what to do instead – by @mjpieters.

    Related issues and pull requests on GitHub: #880, #954.

  • Fixed IPv6 addresses missing brackets when the ~yarl.URL was converted to a string – by @bdraco.

    Related issues and pull requests on GitHub: #1157, #1158.

Features

  • Added ~yarl.URL.host_subcomponent which returns the 3986#section-3.2.2 host subcomponent – by @bdraco.

    The only current practical difference between ~yarl.URL.raw_host and ~yarl.URL.host_subcomponent is that IPv6 addresses are returned bracketed.

    Related issues and pull requests on GitHub: #1159.


1.12.1

(2024-09-23)

No significant changes.


1.12.0

(2024-09-23)

Features

  • Added ~yarl.URL.path_safe to be able to fetch the path without %2F and %25 decoded – by @bdraco.

    Related issues and pull requests on GitHub: #1150.

Removals and backward incompatible breaking changes

  • Restore decoding %2F (/) in URL.path – by @bdraco.

    This change restored the behavior before #1057.

    Related issues and pull requests on GitHub: #1151.

Miscellaneous internal changes

  • Improved performance of processing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1143.


1.11.1

(2024-09-09)

Bug fixes

  • Allowed scheme replacement for relative URLs if the scheme does not require a host – by @bdraco.

    Related issues and pull requests on GitHub: #280, #1138.

  • Allowed empty host for URL schemes other than the special schemes listed in the WHATWG URL spec – by @bdraco.

    Related issues and pull requests on GitHub: #1136.

Features

  • Loosened restriction on integers as query string values to allow classes that implement __int__ – by @bdraco.

    Related issues and pull requests on GitHub: #1139.

Miscellaneous internal changes

  • Improved performance of normalizing paths – by @bdraco.

    Related issues and pull requests on GitHub: #1137.


1.11.0

(2024-09-08)

Features

  • Added URL.extend_query()() method, which can be used to extend parameters without replacing same named keys – by @bdraco.

    This method was primarily added to replace the inefficient hand rolled method currently used in aiohttp.

    Related issues and pull requests on GitHub: #1128.

Miscellaneous internal changes

  • Improved performance of the Cython cached_property implementation – by @bdraco.

    Related issues and pull requests on GitHub: #1122.

  • Simplified computing ports by removing unnecessary code – by @bdraco.

    Related issues and pull requests on GitHub: #1123.

  • Improved performance of encoding non IPv6 hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1125.

  • Improved performance of URL.build()() when the path, query string, or fragment is an empty string – by @bdraco.

    Related issues and pull requests on GitHub: #1126.

  • Improved performance of the URL.update_query()() method – by @bdraco.

    Related issues and pull requests on GitHub: #1130.

  • Improved performance of processing query string changes when arguments are str – by @bdraco.

    Related issues and pull requests on GitHub: #1131.


1.10.0

(2024-09-06)

Bug fixes

  • Fixed joining a path when the existing path was empty – by @bdraco.

    A regression in URL.join()() was introduced in #1082.

    Related issues and pull requests on GitHub: #1118.

Features

  • Added URL.without_query_params()() method, to drop some parameters from query string – by @hongquan.

    Related issues and pull requests on GitHub: #774, #898, #1010.

  • The previously protected types _SimpleQuery, _QueryVariable, and _Query are now available for use externally as SimpleQuery, QueryVariable, and Query – by @bdraco.

    Related issues and pull requests on GitHub: #1050, #1113.

Contributor-facing changes

  • Replaced all ~typing.Optional with ~typing.Union – by @bdraco.

    Related issues and pull requests on GitHub: #1095.

Miscellaneous internal changes

  • Significantly improved performance of parsing the network location – by @bdraco.

    Related issues and pull requests on GitHub: #1112.

  • Added internal types to the cache to prevent future refactoring errors – by @bdraco.

    Related issues and pull requests on GitHub: #1117.


1.9.11

(2024-09-04)

Bug fixes

  • Fixed a TypeError with MultiDictProxy and Python 3.8 – by @bdraco.

    Related issues and pull requests on GitHub: #1084, #1105, #1107.

Miscellaneous internal changes

  • Improved performance of encoding hosts – by @bdraco.

    Previously, the library would unconditionally try to parse a host as an IP Address. The library now avoids trying to parse a host as an IP Address if the string is not in one of the formats described in 3986#section-3.2.2.

    Related issues and pull requests on GitHub: #1104.


1.9.10

(2024-09-04)

Bug fixes

  • URL.join()() has been changed to match 3986 and align with / operation() and URL.joinpath()() when joining URLs with empty segments. Previously urllib.parse.urljoin was used, which has known issues with empty segments (python/cpython#84774).

    Due to the semantics of URL.join()(), joining an URL with scheme requires making it relative, prefixing with ./.

    >>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    Empty segments are honored in the base as well as the joined part.

    >>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    – by @commonism

    This change initially appeared in 1.9.5 but was reverted in 1.9.6 to resolve a problem with query string handling.

    Related issues and pull requests on GitHub: #1039, #1082.

Features

  • Added ~yarl.URL.absolute which is now preferred over URL.is_absolute() – by @bdraco.

    Related issues and pull requests on GitHub: #1100.


1.9.9

(2024-09-04)

Bug fixes

  • Added missing type on ~yarl.URL.port – by @bdraco.

    Related issues and pull requests on GitHub: #1097.


1.9.8

(2024-09-03)

Features

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

  • Cache parsing of IP Addresses when encoding hosts – by @bdraco.

    Related issues and pull requests on GitHub: #1086.

Contributor-facing changes

  • Covered the ~yarl.URL object with types – by @bdraco.

    Related issues and pull requests on GitHub: #1084.

Miscellaneous internal changes

  • Improved performance of handling ports – by @bdraco.

    Related issues and pull requests on GitHub: #1081.


1.9.7

(2024-09-01)

Removals and backward incompatible breaking changes

  • Removed support 3986#section-3.2.3 port normalization when the scheme is not one of http, https, wss, or ws – by @bdraco.

    Support for port normalization was recently added in #1033 and contained code that would do blocking I/O if the scheme was not one of the four listed above. The code has been removed because this library is intended to be safe for usage with asyncio.

    Related issues and pull requests on GitHub: #1076.

Miscellaneous internal changes

  • Improved performance of property caching – by @bdraco.

    The reify implementation from aiohttp was adapted to replace the internal cached_property implementation.

    Related issues and pull requests on GitHub: #1070.


1.9.6

(2024-08-30)

Bug fixes

  • Reverted 3986 compatible URL.join()() honoring empty segments which was introduced in #1039.

    This change introduced a regression handling query string parameters with joined URLs. The change was reverted to maintain compatibility with the previous behavior.

    Related issues and pull requests on GitHub: #1067.


1.9.5

(2024-08-30)

Bug fixes

  • Joining URLs with empty segments has been changed to match 3986.

    Previously empty segments would be removed from path, breaking use-cases such as

    URL("https://web.archive.org/web/") / "https://github.com/"

    Now / operation() and URL.joinpath()() keep empty segments, but do not introduce new empty segments. e.g.

    URL("https://example.org/") / ""

    does not introduce an empty segment.

    – by @commonism and @youtux

    Related issues and pull requests on GitHub: #1026.

  • The default protocol ports of well-known URI schemes are now taken into account during the normalization of the URL string representation in accordance with 3986#section-3.2.3.

    Specified ports are removed from the str representation of a ~yarl.URL if the port matches the scheme’s default port – by @commonism.

    Related issues and pull requests on GitHub: #1033.

  • URL.join()() has been changed to match 3986 and align with / operation() and URL.joinpath()() when joining URLs with empty segments. Previously urllib.parse.urljoin was used, which has known issues with empty segments (python/cpython#84774).

    Due to the semantics of URL.join()(), joining an URL with scheme requires making it relative, prefixing with ./.

    >>> URL("https://web.archive.org/web/").join(URL("./https://github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    Empty segments are honored in the base as well as the joined part.

    >>> URL("https://web.archive.org/web/https://").join(URL("github.com/aio-libs/yarl"))
    URL('https://web.archive.org/web/https://github.com/aio-libs/yarl')

    – by @commonism

    Related issues and pull requests on GitHub: #1039.

Removals and backward incompatible breaking changes

  • Stopped decoding %2F (/) in URL.path, as this could lead to code incorrectly treating it as a path separator – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1057.

  • Dropped support for Python 3.7 – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #1016.

Improved documentation

  • On the Contributing docs page, a link to the Towncrier philosophy has been fixed.

    Related issues and pull requests on GitHub: #981.

  • The pre-existing / magic method() has been documented in the API reference – by @commonism.

    Related issues and pull requests on GitHub: #1026.

Packaging updates and notes for downstreams

  • A flaw in the logic for copying the project directory into a temporary folder that led to infinite recursion when TMPDIR was set to a project subdirectory path. This was happening in Fedora and its downstream due to the use of pyproject-rpm-macros. It was only reproducible with pip wheel and was not affecting the pyproject-build users.

    – by @hroncok and @webknjaz

    Related issues and pull requests on GitHub: #992, #1014.

  • Support Python 3.13 and publish non-free-threaded wheels

    Related issues and pull requests on GitHub: #1054.

Contributor-facing changes

  • The CI/CD setup has been updated to test arm64 wheels under macOS 14, except for Python 3.7 that is unsupported in that environment – by @webknjaz.

    Related issues and pull requests on GitHub: #1015.

  • Removed unused type ignores and casts – by @hauntsaninja.

    Related issues and pull requests on GitHub: #1031.

Miscellaneous internal changes

  • port, scheme, and raw_host are now cached_property – by @bdraco.

    aiohttp accesses these properties quite often, which cause urllib to build the _hostinfo property every time. port, scheme, and raw_host are now cached properties, which will improve performance.

    Related issues and pull requests on GitHub: #1044, #1058.


1.9.4 (2023-12-06)

Bug fixes

  • Started raising TypeError when a string value is passed into yarl.URL.build() as the port argument – by @commonism.

    Previously the empty string as port would create malformed URLs when rendered as string representations. (#883)

Packaging updates and notes for downstreams

  • The leading -- has been dropped from the PEP 517 in-tree build backend config setting names. --pure-python is now just pure-python – by @webknjaz.

    The usage now looks as follows:

    $ python -m build \
        --config-setting=pure-python=true \
        --config-setting=with-cython-tracing=true

    (#963)

Contributor-facing changes

  • A step-by-step Release Guide guide has been added, describing how to release yarl – by @webknjaz.

    This is primarily targeting maintainers. (#960)

  • Coverage collection has been implemented for the Cython modules – by @webknjaz.

    It will also be reported to Codecov from any non-release CI jobs.

    To measure coverage in a development environment, yarl can be installed in editable mode:

    $ python -Im pip install -e .

    Editable install produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files.

    #961

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @webknjaz.

    This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.

    Here’s a usage example:

    $ python -Im pip install . --config-settings=with-cython-tracing=true

    For editable installs, this setting is on by default. Otherwise, it’s off unless requested explicitly.

    The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:

    $ python -Im pip install -e .

    Alternatively, the YARL_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.

    #962

1.9.3 (2023-11-20)

Bug fixes

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

  • Started accepting string subclasses in yarl.URL.__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 PEP 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)

  • The packaging is replaced from an old-fashioned setup.py to an in-tree PEP 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=false

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

    The same can be achieved via pypa/build:

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

    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 yarl.URL.__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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yarl-1.25.1.tar.gz (246.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

yarl-1.25.1-py3-none-any.whl (63.6 kB view details)

Uploaded Python 3

yarl-1.25.1-cp315-cp315t-win_arm64.whl (101.8 kB view details)

Uploaded CPython 3.15tWindows ARM64

yarl-1.25.1-cp315-cp315t-win_amd64.whl (106.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

yarl-1.25.1-cp315-cp315t-musllinux_1_2_x86_64.whl (115.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

yarl-1.25.1-cp315-cp315t-musllinux_1_2_s390x.whl (117.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

yarl-1.25.1-cp315-cp315t-musllinux_1_2_riscv64.whl (112.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

yarl-1.25.1-cp315-cp315t-musllinux_1_2_ppc64le.whl (120.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp315-cp315t-musllinux_1_2_armv7l.whl (106.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp315-cp315t-musllinux_1_2_aarch64.whl (114.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

yarl-1.25.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (111.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (115.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (123.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (120.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (105.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (114.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp315-cp315t-macosx_11_0_arm64.whl (107.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

yarl-1.25.1-cp315-cp315t-macosx_10_15_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

yarl-1.25.1-cp315-cp315t-macosx_10_15_universal2.whl (149.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp315-cp315-win_arm64.whl (99.2 kB view details)

Uploaded CPython 3.15Windows ARM64

yarl-1.25.1-cp315-cp315-win_amd64.whl (103.4 kB view details)

Uploaded CPython 3.15Windows x86-64

yarl-1.25.1-cp315-cp315-musllinux_1_2_x86_64.whl (117.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp315-cp315-musllinux_1_2_s390x.whl (120.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

yarl-1.25.1-cp315-cp315-musllinux_1_2_riscv64.whl (115.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp315-cp315-musllinux_1_2_ppc64le.whl (122.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp315-cp315-musllinux_1_2_armv7l.whl (108.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp315-cp315-musllinux_1_2_aarch64.whl (116.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (115.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (117.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (126.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (123.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (116.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp315-cp315-macosx_11_0_arm64.whl (104.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

yarl-1.25.1-cp315-cp315-macosx_10_15_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

yarl-1.25.1-cp315-cp315-macosx_10_15_universal2.whl (143.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp314-cp314t-win_arm64.whl (102.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

yarl-1.25.1-cp314-cp314t-win_amd64.whl (107.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

yarl-1.25.1-cp314-cp314t-musllinux_1_2_x86_64.whl (115.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

yarl-1.25.1-cp314-cp314t-musllinux_1_2_s390x.whl (116.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

yarl-1.25.1-cp314-cp314t-musllinux_1_2_riscv64.whl (112.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

yarl-1.25.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (119.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp314-cp314t-musllinux_1_2_armv7l.whl (106.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp314-cp314t-musllinux_1_2_aarch64.whl (114.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

yarl-1.25.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (111.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (115.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (122.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (119.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (104.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (114.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp314-cp314t-macosx_11_0_arm64.whl (107.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

yarl-1.25.1-cp314-cp314t-macosx_10_15_x86_64.whl (106.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

yarl-1.25.1-cp314-cp314t-macosx_10_15_universal2.whl (150.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp314-cp314-win_arm64.whl (99.2 kB view details)

Uploaded CPython 3.14Windows ARM64

yarl-1.25.1-cp314-cp314-win_amd64.whl (103.4 kB view details)

Uploaded CPython 3.14Windows x86-64

yarl-1.25.1-cp314-cp314-musllinux_1_2_x86_64.whl (117.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp314-cp314-musllinux_1_2_s390x.whl (120.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

yarl-1.25.1-cp314-cp314-musllinux_1_2_riscv64.whl (115.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp314-cp314-musllinux_1_2_ppc64le.whl (122.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp314-cp314-musllinux_1_2_armv7l.whl (108.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp314-cp314-musllinux_1_2_aarch64.whl (116.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (115.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (117.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (126.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (123.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (116.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp314-cp314-macosx_11_0_arm64.whl (104.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

yarl-1.25.1-cp314-cp314-macosx_10_15_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

yarl-1.25.1-cp314-cp314-macosx_10_15_universal2.whl (144.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp313-cp313-win_arm64.whl (97.3 kB view details)

Uploaded CPython 3.13Windows ARM64

yarl-1.25.1-cp313-cp313-win_amd64.whl (101.9 kB view details)

Uploaded CPython 3.13Windows x86-64

yarl-1.25.1-cp313-cp313-musllinux_1_2_x86_64.whl (117.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp313-cp313-musllinux_1_2_s390x.whl (120.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

yarl-1.25.1-cp313-cp313-musllinux_1_2_riscv64.whl (115.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp313-cp313-musllinux_1_2_ppc64le.whl (122.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp313-cp313-musllinux_1_2_armv7l.whl (108.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp313-cp313-musllinux_1_2_aarch64.whl (115.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (115.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (117.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (126.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (122.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (115.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp313-cp313-macosx_11_0_arm64.whl (103.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

yarl-1.25.1-cp313-cp313-macosx_10_13_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

yarl-1.25.1-cp313-cp313-macosx_10_13_universal2.whl (143.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp312-cp312-win_arm64.whl (97.7 kB view details)

Uploaded CPython 3.12Windows ARM64

yarl-1.25.1-cp312-cp312-win_amd64.whl (102.6 kB view details)

Uploaded CPython 3.12Windows x86-64

yarl-1.25.1-cp312-cp312-musllinux_1_2_x86_64.whl (117.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp312-cp312-musllinux_1_2_s390x.whl (120.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

yarl-1.25.1-cp312-cp312-musllinux_1_2_riscv64.whl (114.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp312-cp312-musllinux_1_2_ppc64le.whl (122.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp312-cp312-musllinux_1_2_armv7l.whl (108.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp312-cp312-musllinux_1_2_aarch64.whl (114.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (114.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (117.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (126.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (122.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (115.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp312-cp312-macosx_11_0_arm64.whl (104.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yarl-1.25.1-cp312-cp312-macosx_10_13_x86_64.whl (104.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

yarl-1.25.1-cp312-cp312-macosx_10_13_universal2.whl (144.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

yarl-1.25.1-cp311-cp311-win_arm64.whl (98.6 kB view details)

Uploaded CPython 3.11Windows ARM64

yarl-1.25.1-cp311-cp311-win_amd64.whl (102.9 kB view details)

Uploaded CPython 3.11Windows x86-64

yarl-1.25.1-cp311-cp311-musllinux_1_2_x86_64.whl (118.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp311-cp311-musllinux_1_2_s390x.whl (122.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

yarl-1.25.1-cp311-cp311-musllinux_1_2_riscv64.whl (115.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp311-cp311-musllinux_1_2_ppc64le.whl (124.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp311-cp311-musllinux_1_2_armv7l.whl (108.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp311-cp311-musllinux_1_2_aarch64.whl (116.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (116.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (117.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (128.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (125.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (116.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp311-cp311-macosx_11_0_arm64.whl (104.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yarl-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

yarl-1.25.1-cp311-cp311-macosx_10_9_universal2.whl (143.8 kB view details)

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

yarl-1.25.1-cp310-cp310-win_arm64.whl (98.9 kB view details)

Uploaded CPython 3.10Windows ARM64

yarl-1.25.1-cp310-cp310-win_amd64.whl (102.9 kB view details)

Uploaded CPython 3.10Windows x86-64

yarl-1.25.1-cp310-cp310-musllinux_1_2_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yarl-1.25.1-cp310-cp310-musllinux_1_2_s390x.whl (122.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

yarl-1.25.1-cp310-cp310-musllinux_1_2_riscv64.whl (115.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

yarl-1.25.1-cp310-cp310-musllinux_1_2_ppc64le.whl (124.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

yarl-1.25.1-cp310-cp310-musllinux_1_2_armv7l.whl (108.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yarl-1.25.1-cp310-cp310-musllinux_1_2_aarch64.whl (116.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yarl-1.25.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (116.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

yarl-1.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

yarl-1.25.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (129.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

yarl-1.25.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (124.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

yarl-1.25.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (107.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

yarl-1.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (116.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

yarl-1.25.1-cp310-cp310-macosx_11_0_arm64.whl (104.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yarl-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl (104.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

yarl-1.25.1-cp310-cp310-macosx_10_9_universal2.whl (144.7 kB view details)

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

File details

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

File metadata

  • Download URL: yarl-1.25.1.tar.gz
  • Upload date:
  • Size: 246.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1.tar.gz
Algorithm Hash digest
SHA256 03dd38de09bc213e9a8b29761eec33ee1d5318dac0e49d8af36e4d27830e23a7
MD5 e79fd328e8d575b8c7a1766fc7fede31
BLAKE2b-256 7516e8be8e2fb175bbf41a0680381a319f1199fae256588241a2ac8677eafb49

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1.tar.gz:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-py3-none-any.whl.

File metadata

  • Download URL: yarl-1.25.1-py3-none-any.whl
  • Upload date:
  • Size: 63.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-py3-none-any.whl
Algorithm Hash digest
SHA256 681c758b0490f9e96b78e5fa8e8dc6e648e9185bb6eaebe73183c33ea0c445f3
MD5 0832650882c52260c68d56ee12591b66
BLAKE2b-256 5422318c7980066769c6bcd9221ed2248294f5698811da099013098c670565ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 783dd1467083f4d3f7722ad6a313f24c173e7571372738fcb7a6e6d1ba48df25
MD5 1ebcbc27821ffee24068ccfab38b5909
BLAKE2b-256 889141e284ca2cf5211e05dae031d126a3668aea88fa759df56e7e35c6ad25ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 106.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b13b88747769537f3d32e89e3a735da10c0a9e35d7322928c701b5f93d3afffd
MD5 22690e32cc71703484724d86b5b19b00
BLAKE2b-256 3802eef443559563ef8f2e10469387b8b1e97cb5efee95b288a56da60801f7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfbf531053a0935f2e871bcd4753f90313688772ff8c017f5ea402e315a78c1f
MD5 066a7446ffba4282058bcb831233c23e
BLAKE2b-256 2b80c386593035ee3f9c6c6af0847b5578f2830c674794a9d7701b744a3ebd42

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bdc8d8b8c22e9e43ac68316b5e6cf083dec537f4ec213cb4aa967b583bc3fa64
MD5 93258bd2aa408ccc60b411c5445e88f3
BLAKE2b-256 ef3093f5d471230c74ccd06255d0842739f86551f937f9e63a5e947853c6244a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1e80dcf1446e1b080b1932b0d103c464a04112f5bc31f0f983ad418172063cde
MD5 ad35e02c1be64d36fea75ebec88185ac
BLAKE2b-256 4e6c0a46fbbf9ecbcbd0cc20d2193394254b9e19817f22c814aab60f99847400

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 77716e245c90f058466a05e6a465bb8600f767a8f4b18b4d40f3aff958e5f73c
MD5 6659d38a9dd2b4f380e96793c058c9ff
BLAKE2b-256 468a19877c193b7c5929f4b07118c18bbe390f3fadd0f59dd98c0cd12b31fa5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85a18376073f8a39aa07be34f9fc77e2869aa72c55c441efdd2cf79a0407504d
MD5 5364554f3c2abf85c47531d6d445813b
BLAKE2b-256 62495506e5b6d29aab91bd845cc9016d88c3d3f81b81bc242b8100bdd5737825

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cb414a73e21a7ab58254926073f2930cb22f5b4314ea4260a687e2b3fd4dce3
MD5 f5689d14b563b8f2b7f93108f7dd75b7
BLAKE2b-256 ba787383278f1b3cf8e0496bd95b3281a7b09b89217b6b428db24c6b99b3deca

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 80a063f8297fc796296f00f100be520f209b23dc98f93ce8eba6ee7122598209
MD5 437af778f180000d47e8cce5852cb875
BLAKE2b-256 da6ffbaaf619423578a7d898d0f226ae47bc1906c293865c416d83c17b828b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ce4d6ccafb33d39bd78444612d14938ead674c25702ded2ee9c54a47735d225
MD5 1f1c68ccc771c80232e497d5678898f0
BLAKE2b-256 8b8335f222d17fa70a14c7c74fdf112ccf5515e0c2a87082b1f9b99f7693bf57

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d1c557dfd5e3db046053a0bdc72261ade790ebe8e2c7a41b36b0ca1f14cb95f3
MD5 5041a002d9306df877b0da3427b893b6
BLAKE2b-256 5d7a6fe9da56ec77927baa669fd86c39c567ce6205bab53d581082c6744c8ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fe01645169a2112aa1d4ebc3e4c5f029c5c8f97adfc32e5d37c993b39a994d75
MD5 59d20b7103bd90e900a047e0ed9d067e
BLAKE2b-256 b17c95c8bc0c8f97d71e59c94525ad60d76f5c57d3f2820f08137ca8b9f0542a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7efc9f082dfed77c316edffa9deb52888e1bc6789171887cc1f68e06d65465c8
MD5 8985b271558ed8419a7469683836d622
BLAKE2b-256 69ea002b66df53bbd1aed1c23358ff99c9bdc744fe3f4d2740e1b2fdd7192885

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbcef5a9119ef653653132cccaf999b30a0af6f33bb0a4ba80bec30056868487
MD5 cc06835558b07a43c0ca917c70f5e830
BLAKE2b-256 da4f2df41fd738d46f23ef829ae8b4468d94bb6070038fc6dfab6165ed44fea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75baa6cf9b6d1c52f3e111a130e202fd8cf0a5b3a066c3f73d615e885092e4ec
MD5 2725a220361c30cd5a4d38535c070d59
BLAKE2b-256 e14be7af56177ac8d40094c82d7728224c0b8472157d50d362e5fb3b014b2bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eda19ea5ee88742f47a2340816e6f2d40b53bed3ab5b69794769f36af9f35bb4
MD5 e2a5238e3a44196a781b1c2992f3e3eb
BLAKE2b-256 7f3bfe554d879692650bca70bfbc0df124e82e4d2bb7456f698c7756f1279a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b5402a340723fa7da00b5cff987ddab61276be6d11251ea71ae02bcac54890d8
MD5 b1ae6cc7614de94cbbe26b07933fadbf
BLAKE2b-256 bdd3a1d09b32cb6ab14f66b44939f5b4255b8b9e747aef3974af1d5d80ccc2fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315t-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 a78b50b4f7918a3de71105d5c0b93bbc57bb8339a4d03a9dfd449f9068e76f3d
MD5 d90fac0914d9da89899a2672f841d09d
BLAKE2b-256 3ca1766a906b0704fb26d52b19dc22bed48a8ba0544203b70dcf44da350e8194

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 103.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 a2059a2d891bd156bc5184e7ab7a56e78a84dfcfdeac8c501b552533ad1c36ee
MD5 3040f66e9ace6079b6dabcfe3e493077
BLAKE2b-256 f55cce6c4ff1247fcbe4b33d462c23a097106d909b173fde7042bc52290466e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 319e070a01db9920fb63761843f96a104c8e2b9427266731810dc1e22595b17c
MD5 7de5c12edc61d912a7af4ac36aea9498
BLAKE2b-256 128352fceb22891a41f168db7ec22fd1d81e06b6a0b8d9f70921bd3e785defd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b51c159a9794633f5e0db7ecec7b2b6e3734eca1f5d17dc989ff3552a43ff78b
MD5 643d3708d641734e47d641fdca764737
BLAKE2b-256 cf37f9cb020331997d3eb887bd28d5410ecfd3d80bf163c23d7cec490d78dade

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bd0912757081f89b107d6c00b2ff8a194401b0b87eadcf4481de2b865a8fd44f
MD5 ba4c6082f63340325a21892fa0293442
BLAKE2b-256 abe94f7b79700f88cb9e8bb66f8b54f9bce1844c013a2c39fdc47112e9334c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87796fedc3ba97ec14fab55acb48584276e6c1e4c1e89c422bda62c838e754a9
MD5 0ff94d6dc600c1aa628f9f29fe43c496
BLAKE2b-256 da14f348eb967f31a58348612a2b93bd8a2ab664548e2b5e879cac7f592f7201

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59ba3a6e1aa8cfe5adf4bd270fd965db21955401b7ca6f1696010c55ed4daec2
MD5 68e7852c3194d6c254256630711a43d2
BLAKE2b-256 ad384b1a686a3758878f93d2f1ea943f5a165f3555769cd16e761cfd0efdca17

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0136d640dfa9b0523853e411430a99f8a91eca85774c6420285a33b755bc6de3
MD5 c8d8be7771ef8b132d3a18792357fd74
BLAKE2b-256 8c909a46eac564c437e128285c5c1d7bb385d268394e9209d84f6bf4a14471ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d45673badd08456d0340e9364eddafe1c53a9d2896424294de4d7dd71ad3ee57
MD5 f08890a76ed3f9e131ef9420783f7e81
BLAKE2b-256 2f720faa30e02605d56127d42bb987dcc97da3863b7bf70b9bfbf5f739c05e30

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23bf5b403c879a54964e0feac7285688e04bb220074878d737d331522da0a5bf
MD5 aa96ab7fd799f925679db94acc867338
BLAKE2b-256 ad608674394ce43f4dadae573a1d6f451716438e9eab7d7fe8d643c673a32d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98d370568f393215d605304cdb77b3d5539bd192c75b623c7304c42c8d6d8273
MD5 cb34fad5722ae2f71eefff998f68af45
BLAKE2b-256 d72d1fe96cf5c2aeab10095e48f38585cf5a8451fb7253234822398e52aa5336

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 42a66563d8cc056ee32e6191e05097a7b2b3bc302e0bc3133daf8710eb18bd26
MD5 74a2a0c7362f19f72d0ecbc3c4ae51a8
BLAKE2b-256 c5c158b379fcb1d68d907b7fcf75200c44321896509b2a6a74abbb4b19d864d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aa4ed3dd308548f9e707d9caaf005d2d7f8c1e7868f858dfeb47fe76e16b391d
MD5 6705fccc6a547dc2c94f887bb631a4e5
BLAKE2b-256 e2cc1a91b685afb55cc18608443ace95280e96e263a97565811732b6788d3269

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d42e7e3ca399555578b4d617e3a6ecf13371b3743a115995fa010c7bf341459
MD5 df94c049cb36d121c710a993b1562b5f
BLAKE2b-256 3835884beab53ed88c7247d1671972b5ef116f7351fe0c7e6de8c3558372cb16

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f074e8d4aa0a5798920ddb6de3d08b228c614ff3724c3e8bd7577f4bafea867b
MD5 234cdde226a0009af741fcdf01ac0335
BLAKE2b-256 12ee2fba0aecb52e7020e189f684148783aa0b9cfa3b3bfb0b400646eef70ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e7011b8fb8c4054bf0c12e5edc6cd83778b0028e99ce59b18586ed036f92cfdc
MD5 31538d2b312ca0f91d7dffb7594afa6f
BLAKE2b-256 4105bbd58fc063f5f299a883f810760b265ca26c8167c91cb9a494d0fe2387e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9b1bdaae98bc016825dd3c9d8ee1832f829b3341f9cc6ebd1a1b0a7fef7367cc
MD5 37313ddbdc446abb5c670609452e9054
BLAKE2b-256 c73b4f51eab40c2eabea6c3d5b121dff4b8988dc35087732ffede12d2be8b8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 102.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 287e99ff5aa4dc1c7630bfc683ded6f106d756c99dec432a2d7f197a784f51c6
MD5 54b49ceb20ee4d6d99f60e75900988bd
BLAKE2b-256 2a99f6431c8968e89be608d74b28ae2d024521b2953f27dd44e0dece5e04f67a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 734f6e5400352ac4254456003d462866c684703570929cff7a7bde015d0cb371
MD5 5f279491882970a6e6315066b60945db
BLAKE2b-256 7eaf19fbdce41412e1b96825544cc52cd7029d3724655d0988237972f078bd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65b5b2066651b7432d389e9799d979c703bcc6ef44266bb8153ef54e91e4aab3
MD5 ff01f5f906a55a55d7abbc3aeecc269b
BLAKE2b-256 b0aa157b940428da80c104ca09666a740e51c94963df65d5b112e06b52e4d7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a1e32763e641a1566507d90a8d3b19bfc3cc04a9d4e5ae3e32189874ed4b58a3
MD5 23c5cd1a12f38e26bec0a0e39247eb79
BLAKE2b-256 aeb4974e3edfe0d188393ce1cb9de400111c63fe61f4eb3b772a500d84c970d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8fb0eb4955adf0579001581f2f71a126e8781ba61bcd120f127b0401163c6c2d
MD5 15fb4f41e98b0540ec8d1489b05544ac
BLAKE2b-256 76164763f78dcdc0b3b9fb3842b04afe72b9320857c6a69300c62a0eab03d119

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f41753a76f4f63927d03a0d8ba8f5ce0f2083bec29a8cfaccc55371b1564b96b
MD5 5a6faea19dd29c0dfd1deb01f146f39b
BLAKE2b-256 7b2d549fa46240781513ebc47ae7eb418df428a163a2a3d644cc9cbb3ecb7846

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0f1489233a254bb3643d2f05de7d59019254d81daeca6b9162fe9edef57e0c7
MD5 03ce1d5285a7161524bf88002cf861cc
BLAKE2b-256 e518e5942a16723f5b72f9b1297fd5a85a54f6300cd15c0dcb5005b90cd89156

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 882569ff613758cac762a457a5d72d6e211b28d4bcfea89d1d71ea942b02eac0
MD5 7459f1b59c6e9b755c008af15f413583
BLAKE2b-256 296b7ac49d8ba84a5c4bd73415a4c949d22c749cb3762579b3d50e48019a78aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 35dcbea443fafb3eece757ad4e514560ddeb6c34cfae1582c620d7b293d7feee
MD5 f73a33bdbe05fbfc64b3b08e8f7c0aa1
BLAKE2b-256 8e9d2577896554cd310dc470adb6da0b7dd0b435cb63e2565204a7ac240e504c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c88edaec8c349ad4c5ad4c486a3defcc4b80ceb2f074436ffa0a87caf5e76a6
MD5 06ddf103c2356f776c409fa89a6258f5
BLAKE2b-256 d13897d79b81c342b78246cfedb74809e68841f3198d21653e10d3232bd9c622

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4f1c91f5a5980a937ff8e238e98e6897e1ad74a4b1e2c0d68c73b5ffbb3f5c0b
MD5 90541b496bdc553a4b0e594f47f162a1
BLAKE2b-256 1a820898bdce9b1ae403b308b9c733d0d24af4a3464270c2c081f457b16c3e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 664ec6a520b74a1df2810666eb67695fcb77fa663e6ea0a25aaf2e529cb24dfa
MD5 fb78a5fdb41f90500077249322e15500
BLAKE2b-256 86d4ea08615c4edaa6049a13a2f1128944d068d1893abda7d708d4d7ea01599a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2239a02249d9326655419e0168a28ca9008938eaab31dc29fc875c217927a6c0
MD5 bc6b804d2571ae317646ddbd23c1d80d
BLAKE2b-256 73230d82838a05c57fdc05bc8b66e8c92dcc0df15e27463a5f163142d521c682

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7abffdf37af1cec6a2ad69b827aa84320db5894791bc8ed932dc93fb274b7e9
MD5 5931481461054d5f9614dca5fc216e6b
BLAKE2b-256 ed7066e8c76b569b450d16e190f15071c916c3df70b0e33927e415ac497cf0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29273edf1530e397bd07cb784db1fbe0d2590b77569f2e24679a9c0a2d763b94
MD5 87a2bd5843715a7ee966de86877a864b
BLAKE2b-256 51e29a6ce2e334ebf218a30335ae76fb1696459430d42f733b8cb0d7d65b84d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17c9877a89fb6e2bca6f9087eb24cd7fb434653946ef5075e470d23d49b52287
MD5 72afa1e59ea6b1a78927cf33c6af9c00
BLAKE2b-256 64fcb245e448124bcda9340df38e3553fa222b50260fca027a84095e9bd8642d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d21f0fa80a02d05299207eeaafef345d812ace96d5306e4ef265e1d419a615fa
MD5 14efe90dd043af7432527099332b98ef
BLAKE2b-256 477d92d2220d6886b70ab1ed8579533ac2af2dfac716d5d929001daff7986df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8e7d98cdbb6d71e726f7d525952867096053d1f290dd4e3c50d7d313a136f414
MD5 da6a07d0ef260f0c640432414a210b9f
BLAKE2b-256 5cf08ec63180f77912f0dc4e5a42760cb8c08d20da1d5ace3578a01b84d1f3d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 103.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 acfa7e22aa6c6e7a5996a41d275bfa01efa7ea56ab890590280e9063e2cf5c1b
MD5 7b533b74c9a6a40a8eb8e0222c20e790
BLAKE2b-256 f501349c0386caedbbe488d519f252df54efac8a1459282d466c474bdd84a620

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90c30ed53546da833c700115c0064c22120d1b1560f474699fd31f22dd668233
MD5 6a0454c3e75e1c867d51aadb76ac7c1a
BLAKE2b-256 bc4152be6505e85b0f76b4f85b01b5de7e06a0512201abc2c95e14e099549174

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0ae12ff2b805fa02c4dab838005caef735e39986322698c48588d3beacb65c62
MD5 430d76a2a892c224f0abfa909aeea5f1
BLAKE2b-256 322ba773ac867e4ab53a98ed98e5cefe3bae31e6f550252ca9d1de266f1a40c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1ab7618921a93767387a4b83776f751588f5b5ae9bb5bc96620e2e2e00bca868
MD5 e321372c2fcb1049878e768eee1da70d
BLAKE2b-256 427da179c6757818bb59372a4adafd09f7f26a3b4a0f04c3ae404b544c0b0c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ca89e4e21854ed27ec753297dde84b16c9f8e53b14a4866fb44457d643c19f8
MD5 53b41472c9c93e711532780d479328be
BLAKE2b-256 c03980b9a55a3335590451d9ecf3eb593a8c635351f4c905ef056d7e8a8fd9e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f38a70074041d3b7e138e452799f5174198bae5bd5ab2000917badf403908c5f
MD5 a59623124787e3b242cc4b923d24ffcd
BLAKE2b-256 f06939fff459916aa0fab42215dc47b759586fd80f94aa56dfc4a7c15ba6e0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d6ed3d17bccce4c05343e1ca8da13bc5c02c812a4e7282ddd05e8769322d3fc
MD5 af4a898ee14530ea046447ac6f90527b
BLAKE2b-256 39b77a81d0be1a502a26a0d4326c6f2ecb736c824f570ea1c6529f2b0b227b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 12b6bc4906e11f5e1a1cdcb12296e7afbd366c783cc8073403cd2fb74334e453
MD5 b49e4cf68e400aeb73397d9bdd74ad5a
BLAKE2b-256 97273d8c63ddd3e8bcfd033748ab93876678ce59bacd66e4cb1ed851c9c5b37e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 30eec96e8a91bd588ce897c9543f6d5d8d34b28fbcba28a4dedf20ebeae9fe57
MD5 e32ff266ab6ec61fc79273b9969f4852
BLAKE2b-256 a2be415b00c0fe5a0615b062a456b26623d7ec91c2bee20faea1a14045aa0469

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 632da579b2d879f6bad20f2cfa35ded1efe2f4f77f8abb26a6234a5b236acd2f
MD5 9446a22b384fe52eb7b1fa34cbddad06
BLAKE2b-256 6a3ee2afcde10d74e53b3fa889960991efb3019beda2b1682a01de720a302056

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d5f90e44653c4e0f78501ed9bb7d3fce835a8d62b7c6ed0cb16557534087e743
MD5 6ea3ceead5eb1c10a65a0841459abd31
BLAKE2b-256 c165bc1ae564fb4b04a30b6a8f250e787772581c57e4c3d5cf07ac3359de3103

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6efaf45df6a849cef613a03a94c845647456662f85438c886bb67a9c027c8c2c
MD5 325310af83c0368e5d322490712b80e3
BLAKE2b-256 a2af2185daf56b99830d3356ecfada46faaa49945de6626e842b7728088d4980

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77e5099b99b37f3cf79c246998ca9f7313a78054cd1809ec46bc1afad47e1c4c
MD5 fef3667070ede5307512c1ddef7d10c5
BLAKE2b-256 e55fed1538bcd06009fe990d6d283dd7667f639e62a81e35c6d8c6ef6c08fb3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a5c3115595995779ee21f2567035793911c3802a43c74f3fbb0314929ec67ac
MD5 1b1fde023cb16d129960a6a5b237f6c7
BLAKE2b-256 6ebbdda344765ffd3430afe1a1c66c866a57fae67786537d4f14607df6505ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a5877f2255aab518ebe528289037699201d5dc5f045f2396cb30aa02db22f57f
MD5 2481103b66f958e3c2952bcb8a315ab4
BLAKE2b-256 d7a8e6c1be0e6761d0f2d10bbf33a3e1e02b99dc83874d92945d7b461a72481e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a9ca696eb02e5c02a8afd872ada510eba9b7fe6e68b9572c2e9a9b1941e31e2e
MD5 a7392f5e1879954c0d4d84bd79877b9d
BLAKE2b-256 80cf54023edfab7aa773b860503db0c56e962ccab0922803ee97988c176ea090

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 97.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b10dd0557ba422715b5206b3743192135a6022acca8baec51aa127d0a75db8fe
MD5 b4b8acac43c62665abe46256fb085c29
BLAKE2b-256 c05e3ce00497c5c0babb74d4130c10c3828ccd215b4819d12020c42429f991ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 101.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f51020b2eb8a003c84925638ec63c21a750a4bddd3a22ec8eac6a742dadf1b9
MD5 b2cf51b9d870ce1bfab66c3e56e0fb15
BLAKE2b-256 3a8f4db01cef62caff0d7a4593ed694fb8a41a27a11158cab80d290221f13e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a66db89ea473abeac4b70523cafd94db3772380e565f9d28af7a179b7af71fa
MD5 06e0a18e2560c66214a605d1090570f2
BLAKE2b-256 918db1b35ed7903da6669b1d367cb2c09436acd4ff508029b4f39a0c0c2058fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ef74070ac553c59eb4f04258722066d6c6135b7baa03b2e9f2da65c096e96d98
MD5 d40dd0934a1c7e77cea64df7c2d62823
BLAKE2b-256 cfd51a1798ea4dc6b7ee3260010a27907ebc697c95dae99817d817ed446d24aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2b49375d22299b0a834c2bca72f39aaecc270d96fb24c30424899676f487b22a
MD5 8776249954ea9c0f432fa83dbb75256c
BLAKE2b-256 63d6d8b689ab7ca26edeb85f6ff28812aac7a25376eefc1780e303a7bfbaceff

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2ed0ba415ccdf08f14bf544cb78346d0f76086707ffee24921a2c84dbf1305a
MD5 094529e8d305a75fc6af75738e6856ae
BLAKE2b-256 43357b8f1ebb45d7ec3dda7d1909bf44f458de41ef91e2937f107733582a5166

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3feb99222553a8cbedfa52c2f59dd84c3f50d5b582c728d522caf8d72769a54b
MD5 7c1aacf81a939bc6f018189667b5a098
BLAKE2b-256 e4499d1978049bf646b9ea918313926453c6901b71c92f097467777d47d36a88

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb96ed1ae6c7d072d60840c0434aef07a2df611812810807fbc54263a6053e9a
MD5 67e2d24c5d55bc904ab3065b35cb77fe
BLAKE2b-256 2f1151d82b852c64f7fad0fc7a7ff3031517204887e874c722bbca839c0b23ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e07595c7d6f4db270ceede356a1bd1c07a34f1c26f958d1ed0cd7b48e0d2bba3
MD5 ca8a6f24c6829df716980e91d7ed0a8a
BLAKE2b-256 ef785d684b411e3f3602464ee9b538db48205038f8605872985f61efb809ced0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be80550d9bfe83d9b62398a37081a90434e6df2d978ec345c3d2820de6beddab
MD5 abf07865ec4a2cb3233d7caae9a26328
BLAKE2b-256 0eb7a82a49bf88340b837ef6972b508a1604ae377b9e6904b46b10cf5f1cf925

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a3faadac7d812ddac258feb57b9846b60c1b437c4f4b9ad42595c6f6fe4390df
MD5 6bcf906545235de43c3fc2e86fbec7b9
BLAKE2b-256 0392d54fa70236c6036271c9c9c09fd978df5cbe3ef49ef6c46e9b833476d215

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 126a2533570c554719ca40a1288fdee1700b6bc82e7131aa69fa85252d92e651
MD5 7b26f16767da522f194c83a159372827
BLAKE2b-256 f553780653d5e0f73831f467cf13548912e5eec97f21dc49fc8daf21da027df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4bd6340d20ae2c7ca719b87b426e808e90743b676d05d4c26c4fb5ca71f41184
MD5 f0e52e7cd844bd72cb54a5f2e239f9b8
BLAKE2b-256 71e15ba1e3a2a22139213655e760919038e8ed7e2d4a99826d0bbddb3beb96e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14b79a30a93a3ce2e8832603fd0ab780ada281b0ba5110b519a634f2d7d7d1fc
MD5 a84d897ac9207a6aab4457d0ea577b06
BLAKE2b-256 30d27d1e0ab9f8390e1fbcede5a6dbf70d23c96ad09b8c5567f3a514d1ddb0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f12afda4eea8c8994a76d4df1875c765194f5fbe8a9d197929ea303caee29ec
MD5 29a746783139a91edb1e529e978fb0af
BLAKE2b-256 a8aa50acc5c3e5da04172ae3c281c75405af4d2ca911e16120ab0563f4dffb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10b2fd95332f0d716d5eee3c9fb2ce8eada19082de7fee83d32e37992fd75c26
MD5 d076583b892073d7f92d42c537a46da4
BLAKE2b-256 17e1f1bc3390fdca352826676b531d0712736f156919090206700421d46b2c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 25868beca8b6765f8f7d0e11fe6dd7c66dd4b0793b9500286d20cc92352126a5
MD5 89c042eb5e273a006d5a00a4be9aae98
BLAKE2b-256 7bed2f3129bbcc9a5c8ba12cc2b29d8060a3bab9c8043c456cfd4b5ca3188890

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 97.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bc3ac7bf569f6b64dad04dd7808c7872dae8a97df657856eac05e9b7e3614a85
MD5 a85bd3856f6020978193f90d46f2b803
BLAKE2b-256 9d210941a6b93a58b59a1ec75e5333bf06929b671309c43c0cd201c172d9c39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 102.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d575b54cb3863ef9bc290ea4b009999d55dc237326131e4853cf33e888fee03
MD5 d8a010f3855624ef7f65f7e47f849a69
BLAKE2b-256 bbcc51a7b4abf4ac593b8e7eb3794b28e5a35ae26eed8bc04787628d215af82f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68782fdb4027b8d1eee25ec35e9a6db05e863b899eb0310b3a33b6c3fef55707
MD5 46a55034b5abc054f660e5b902386619
BLAKE2b-256 0579ad94f93ca731bc9e44d321833ab96b82a4f9f5f63cf773f81a4aeea5ecc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 af4ea5b37403ef4e30f3927eaed540db942bde01d8d3ff083527c0704d1c9c68
MD5 63e5ba9faf588ed3cd2fa84f59647d86
BLAKE2b-256 0faea4cf1cf372313734b17996d4007f9f73596e7a178b9485802e5494ecf484

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cce0727fd5ac04d372fa9bbfde9febc2bcf209aadfcf0468e45dec72719895d1
MD5 d9231fe901a5ed4910c7a36e4a634c8a
BLAKE2b-256 f81f118e9e5b8f07694d63fd3222e801d7782270003f1a222aa798df3f8d5933

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e546fe1d4a93ebc2910f0d768baff19faa09843ab3f2036a67ed6e69fae4419d
MD5 a649b7a6ec8741ce21898189eafa0948
BLAKE2b-256 a428779a2ed9e0152a601a27039bed9aead3f0b79797a67e2c44bfa444622dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f61964f235a43738bfac50da46fc4254943a7eea3051aeb0b6fc7c992c29fadc
MD5 e9d2eea55a18950e4a5e55281565ea0d
BLAKE2b-256 da84baa5bf504d51fe062c4bcaf62936da97fffb43285978d0b39984824231fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e80f557716fd765439577131e526b8942ffc2c07bdbc5e39fa62f660ba1e963f
MD5 dc8b589ab9986b7e000b386e9f664eac
BLAKE2b-256 e843268717870f9ba0cc9701a95181587f6dc8c5f387aab4aeecc83158f38a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 80e47012e730da131c9f059c80936783f9659aae22dc31c03c0595590d11ed54
MD5 7be2c5a12d4fb33340429d0cc78c8a97
BLAKE2b-256 cbc372b4938cdbe619ad71ac156182faef4908846b84dc3ca4dbb4c4e6f84014

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6f117789d22dce188e5754e8bc65b7e6ebf8cb73963b9fa761f672a5883769d
MD5 ef36aed0b67f88c828f3b5d5112bdfb1
BLAKE2b-256 bc7bca212cbe170ac8b96e45317ecbcf9c3c3ecf0cdec98d5b088a9c4088929b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 419f392a1da624877975709e3864dfe833af6cc7671b39318086d456e288380c
MD5 eecbba375939ab0493e92650954a8d70
BLAKE2b-256 bdb51b60dbc3cfc9c5712b15148c206748f2bc93953ffdbe25ea75b63dfc89c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7e4de3ac4adbad3d0bc7c6f4360a7dbff5de2f15e3b723be3198074e17fd9c40
MD5 43f730d768df021ae5e54ece6e92799c
BLAKE2b-256 86b33c4dd7e1af43b931fba95e0a722737f2ea94a6d199c802585282831d7abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e12c538e00e7c1b286a07061046b90e8124e6a9793efae2c70db6a4aad07faad
MD5 fb01a8d6c0f86d462291ff2c2c38edaa
BLAKE2b-256 db3929693446cf0cf6b15a0e2f75a5d40f93c56819b05b0622196f45e95b5cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d781294bb815ecb5ea57ff6bbf8038e0a31a95fdf3e1788f66e0dc100d64b58
MD5 7510eb735355bdcc442574ccd3a2bf91
BLAKE2b-256 1eb3058dbfb1857b484c9cf9cc135659f50b85ce66e03c99e44dc2f7b6161f55

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e029648f9c951db30e98a7d7ec90835db88ec4b32820efe2a9bdc2287e032eb6
MD5 6387c39a3907a2b295002bc4608a70cc
BLAKE2b-256 beddee38aec8e09fdf957e50d4085453fbe202f56c6c3b4cf07b81cdb4f09ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83d4a37e4b95da4d8bda930d6d35b75b4cdadbacbb4980cae290ea3100b5d51d
MD5 1f027bd387fcb7203ae0789ce2bdf6e5
BLAKE2b-256 61fba2c52a8007c2051ba74662afb112ecf3d00346af4c25e33df9d80fd14fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 94d7aa6debf92a1dd14cb5280b083a764169a13cfb23a452111160274ed989f4
MD5 5c8f6a9991fc499d71af5e2ab082c72d
BLAKE2b-256 75b3cd32ac66ae622b854c2df0ac52106dda220d361b65a64fde7d5b3684aa3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 98.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 abb1384477f5901d436b5d2e5465954de46ea6098f59163d243660b5c4461d35
MD5 02df17beae5e1102b29ed3003ca51229
BLAKE2b-256 17f17ec357db1d3ad2863542d71e8fe64a126bbec17b134cd7d30951196809a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 102.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7306dee25b8a0e737363f347362b875094b4dc4e367311470656ae420fdbf8e
MD5 2c52ed71a776870d5ec1bdbc1df4dd2e
BLAKE2b-256 aa9d8cdceec66a9b940700cb45931741403f045b162afd79bcb93c41cadd0972

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9489e6abf47ba37f332075a91444c7cfedb03e6ce99fbb2f116bfe1ce810da3b
MD5 a0ab2ab094cb1f8191c0dfbe37775bef
BLAKE2b-256 a00b07f7a2d881f7e16c385b47fc1753382600847cad305dcc7fa0c25828acf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a1daf47cd95a7c3a63456336bc5aaa8c86dd3a47d07ed3d0e76132ae4666a5a1
MD5 0ec765264fcf4ba7979780b2f2d0aa5a
BLAKE2b-256 1859f7586271136c3ddb0126bbfe661844699369b76b555fe38c4efe86870b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 efb01a106f971cb3752856bca2318bbdf7f01bd8823779c461586cbe5ffd5258
MD5 09f01eb82a6d0f90e76db3b14358608d
BLAKE2b-256 befd2b022109a6b4af0f7dc371cf7500af380b0d4f034010243e1b0ce218dc93

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 72849d892954be4d09e569b8b831ac39ce58417fedc767d4308a0fe542018a40
MD5 4b041a9a6d5ed5c04b5072e575f1ea72
BLAKE2b-256 e8d23a35ae791c9cb6522c106923ff25c3230d999091e5e65511bca23bbd9914

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71f42c5b9a948c113bbdebfa544598321431d064ff959d32e99b1feb61d68345
MD5 a7bead739d5253e8d0d4daebeb8112da
BLAKE2b-256 2ad46a8c1e29f33338687ca278cba0a8fbf6525a322c2c02a9a500ccbe041152

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a191bfdb30a79b98e5d175d75285f9fcb78bf0e46ba5efda042e1c72071a0de
MD5 c167f55bffed08332f80025d866c4300
BLAKE2b-256 8f69fad57ee52d648431718ee0f1f68966a99c1352c3924688ffbdcc9d3fe51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 def538065f9e4d4cf1ae164bd59aba00dfa84f03923e0de4c3788f252d6bcd17
MD5 2d5756394ed3bb23edfc6ef36258677d
BLAKE2b-256 e76fc3267ca01defeed9ed9c4ff9b17bd54915432c405945233265b707475d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5add7b4ca7afeea91d52e4d4e4db3b1fe9885b71f07054560d8c4296b7441a2
MD5 db669b32f312adc772bce5cbcf737e9b
BLAKE2b-256 950ca71501bbc1a674ff72c4d6c2b75f4d9a5af819f5244c3a7558080a8802c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 72c34ac7ad4314c19362d5ce27626dcc8429bd30bbf8c179f4234078851f9492
MD5 edb8062f22555fe04fac9e3549d7685a
BLAKE2b-256 50260cce366d54a93cdc8342965dc7663385e4db161625cc1e8b18e786753d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e92b6bcc741b86d67606c40d3cb9c7cc8e6c737f81e31f4a94efc204456c92e3
MD5 044ad913440d1cbd2a1bb397def03488
BLAKE2b-256 aacfc8e0aaec886840a6c4480fe44eaec7cd4319f79a563b79321473be79c56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1fb2a01ba8cd9c5d2c5dc1ec35e0fc951d04b4f037541d4ac090c993ce58b3d7
MD5 4ee6cca0010b3dd1aed3a613a01890e1
BLAKE2b-256 b68ad1a627f827b0a404ae0f5647cab0534959081cde13b0756a783469fb3b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acae6b45d1ace09b6ba3876da43b88366ef368f73b988c7f57e14231753d4420
MD5 b813badc7ab6e98050d8b194fccb7676
BLAKE2b-256 f00b5a516f70641092283f57cf3670bdb75e7327bcc0dcb5038697e4dfbfd569

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564fdc7085d2245ab84f88882fdb1d6ac0723124bff6ded35bfb1c00f812630d
MD5 a1e32d8d19f14166626dea7af5d9f1d3
BLAKE2b-256 ce7cfbb40fe2d53747c40aa36a9e2bd2178a202f942bda0b670f3306d4aefbce

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab2054c5531af2a9ba7b69b8ec91e4f884420e83a8c5e579b013084cb57e5e5d
MD5 a06323158308a047c6e1a4a4b2a17a0f
BLAKE2b-256 55e6cd145cff8e5cf60b8b3c41fbecfa2a45028a8dec3fbc52bec03595ff3d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d693bf4bf534e9ba3ae2780cfd577f5135629f7b5ac653490859d0b77864865
MD5 ae779e35627731f8735690a991901755
BLAKE2b-256 83b32cea721d495ca57f8f414aa4867ee263f486b274e07463158cf52f02ba7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 98.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 48796ea00a303961507dc6c8437c4b325a6fc3f95f7c36c71b91ea9a8150963c
MD5 09f0b8e247bde706c150911f62a4d645
BLAKE2b-256 2f859a1e98de10fc0e738d517efd2a9984c3e7db6cf35fa72b2b373988a9e9b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: yarl-1.25.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 102.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yarl-1.25.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f4d48a6112712973e676bd792121fee470e432d749177162d9949d5c9460a1b
MD5 94a20e90e7382607f94bbcc869ee5d93
BLAKE2b-256 4267cb5ea1baa0c0ac60bda44ce59f601133154af2a2e67722d3517f8793855d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 192a866877a49993949ef1975864ad8728bea28ee810f6abe1a0729c2b500426
MD5 f687e19e30ee014100be68f30e2ba7e9
BLAKE2b-256 c58ee2ba83b3a9bfc1d3b882ad35fa8abc04a7af4d9356f2e329a23d0c8d889d

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ca32926d7d77bcc8838425c4c95e040a3ace1cb7dfdae599013458dcda2607ca
MD5 962eaf46da6be48da9119dd79211f80c
BLAKE2b-256 a8794d93f13c3b05cda3c962805dec28cbc255c50239b3457808abc5633a00c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a8c2b841478068440d8b733005d13a5ef535b9928cbc05f17182d410f32ba449
MD5 4ceb517538ba17d0dcb770ee554557b3
BLAKE2b-256 d63fc93f76a218258c7bfc60dd27fd56e9102bdbc625517f4a6ee673295fe4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b8075fe90bc08e40b8b8a1874fab42ee4c7b56af05c5886e9cc841397f916908
MD5 7b1e64538feecdf0dda8cdbb4cac17d7
BLAKE2b-256 83e194dacb650d4963d5f844bc3df7ba70288cb7b68ed5a4d070da71acb19b14

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f53dcd26694f148f738edc052b5a69234833e739f10f4c3287bdfd8ec0f7b326
MD5 95718ac4903545f337469b1b065e3344
BLAKE2b-256 b18eb3dfd03732236b86b0bcf06a72a37de412ff6f82e719a947c3c651d4dece

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df23df54b5114a17c2d0ef192433e2e5a9f0c5178c32375e90b7cfc965f349d0
MD5 15b5f0613efa8b105011e5daa72174e1
BLAKE2b-256 209cfbe9432478d87e00eef80242e15179639df162cb3d5d8d978fc56dcb6c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 683e362b8ba453080f7489c66f4ea794e751c35b72e7eab3575ef784c2fbc7fb
MD5 dd7a3f879e122756953ca922cb5f792b
BLAKE2b-256 b2e38d098cafb30a64df7283b5a5dd0d32d22a71b18a1b9ec071d0776ffe5c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5637ca8d0bd7fb72648a6c7934af4baaccb697657f7438c9d264fc2abb8b0b1
MD5 07df165b6a22a3915d7a78b8d86a2906
BLAKE2b-256 28b97818ac6dec7fbcd16be2d19495807c01e2c38834e57d41c63356a75e786b

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e636b64d24fd9c38053c5e389a1174c66361fa49dcfd220f4dd35b4abde7cb89
MD5 782c3648e83e88e19c96b6fc67732791
BLAKE2b-256 9937718789d8004775d6a2db86b2afc72b1d156e0590b88a1b8634ddd4bdb8ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 83e9f4a25085bd4b7214701a0794ff1f50fc633ffb8bdfebf07abdd81c2db126
MD5 253ef31eedc208a59c4717e1b249597a
BLAKE2b-256 a115f3d18743d3688b5f01aa83034b6c00665692ab20e1d0c89a29000d4979ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5df89f769cc8ff94c3d7e7603386fba309d25ce5240132d26c15baa8d0e96c4c
MD5 c4ef22fb3bf0a132f7b4e925fa207891
BLAKE2b-256 8f3190891ddb61848c067ebd1fb505ab5902a6e7d4707c2f3823f67ff37883d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ee202350cf57abf0e9502a41601841019c25d3db7ff52d980aaf31446254059
MD5 0d4cd5b7027664165df6262d4a99afe7
BLAKE2b-256 1dfc21d74789198ad68a23a209ab0d73fe5a52d39ebbd9945041e72827acdd77

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e23c82b63cd7652fc24d33ed6cc17099d607aa3b4fc4ddc75e95062f3d82df4
MD5 00ec1edb750d727d42ce4cb392b6e8bf
BLAKE2b-256 aede4204e6646e278b1cd4a9cf73ebe8b7cfcf16693f1249b324eb273d67602a

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24ce942011a61953e7d313438038f4d32ff21387b775f58a957f7a07dd55ef95
MD5 d7fafc2cf21e798120cfb4913481bad6
BLAKE2b-256 16b49edc8e605b16b2eb5bd0c2ccc73e2b15aab583862460767fb43f91f11839

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yarl-1.25.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for yarl-1.25.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 142c06c4d6a35ee3ec5da08499805e879cb3ca7c1fbfbecb0140fe72403818d6
MD5 edce624bcb1924aa8d1ee249404db82e
BLAKE2b-256 859255fa9ee84cb8ec9930a910b5753936a926f918d8cc8965bdac571479c095

See more details on using hashes here.

Provenance

The following attestation bundles were made for yarl-1.25.1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/yarl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.25.1 This release

138 files

1.24.5

104 files

1.24.2

104 files

1.24.1

15 files

1.24.0

15 files

1.23.0

128 files

1.22.0

130 files

1.21.0

122 files

1.20.1

104 files

1.20.0

104 files

1.19.0

87 files

1.18.3

82 files

1.18.2

49 files

1.18.1

44 files

1.18.0

82 files

1.17.2

82 files

1.17.1

82 files

1.17.0

82 files

1.16.0

82 files

1.15.5

82 files

1.15.4

82 files

1.15.3

82 files

1.15.2

98 files

1.15.1

98 files

1.15.0

98 files

1.14.0

92 files

1.13.1

92 files

1.13.0

92 files

1.12.1

92 files

1.12.0

92 files

1.11.1

92 files

1.11.0

92 files

1.10.0

92 files

1.9.11

92 files

1.9.10

92 files

1.9.9

92 files

1.9.8

92 files

1.9.7

92 files

1.9.6

92 files

1.9.5

92 files

1.9.4

90 files

1.9.3

90 files

1.9.2

74 files

1.9.1

74 files

1.8.2

74 files

1.8.1

59 files

1.8.0

59 files

1.7.2

72 files

1.7.0

72 files

1.6.3

37 files

1.6.2

33 files

1.6.1

33 files

1.6.0

17 files

1.5.1

17 files

1.5.0

17 files

1.4.2

17 files

1.4.1

17 files

1.4.0

17 files

1.3.0

11 files

1.2.6

9 files

1.2.5

9 files

1.2.4

9 files

1.2.3

9 files

1.2.2

9 files

1.2.1

9 files

1.2.0

13 files

1.1.1

13 files

1.1.0

13 files

1.0.0

13 files

0.18.0

13 files

0.17.0

13 files

0.16.0

13 files

0.15.0

13 files

0.14.2

13 files

0.14.1

13 files

0.14.0

13 files

0.13.0

13 files

0.12.0

11 files

0.11.1

6 files

0.11.0

13 files

0.10.3

13 files

0.10.2

13 files

0.10.1

13 files

0.10.0

9 files

0.9.8

9 files

0.9.7

9 files

0.9.6

9 files

0.9.5

9 files

0.9.4

9 files

0.9.3

9 files

0.9.2

9 files

0.9.1

9 files

0.9.0

9 files

0.8.1

9 files

0.8.0

9 files

0.7.1

9 files

0.7.0

9 files

0.6.0

9 files

0.5.3

9 files

0.5.2

9 files

0.5.1

9 files

0.5.0

9 files

0.5.0b1

0.5.0b0

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.1

2 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