Skip to main content

URL parser and manipulator based on the WHAT WG URL standard

Project description

The urlib.parse module in Python does not follow the legacy RFC 3978 standard nor does it follow the newer WHATWG URL specification. It is also relatively slow.

This is ada_url, a fast standard-compliant Python library for working with URLs based on the Ada URL parser.

Installation

Install from PyPI:

pip install ada_url

Usage examples

Parsing URLs

The URL class is intended to match the one described in the WHATWG URL spec:.

>>> from ada_url import URL
>>> urlobj = URL('https://example.org/path/../file.txt')
>>> urlobj.href
'https://example.org/path/file.txt'

The parse_url function returns a dictionary of all URL elements:

>>> from ada_url import parse_url
>>> parse_url('https://user:pass@example.org:80/api?q=1#2')
{
    'href': 'https://user:pass@example.org:80/api?q=1#2',
    'username': 'user',
    'password': 'pass',
    'protocol': 'https:',
    'port': '80',
    'hostname': 'example.org',
    'host': 'example.org:80',
    'pathname': '/api',
    'search': '?q=1',
    'hash': '#2',
    'origin': 'https://example.org:80',
    'host_type': <HostType.DEFAULT: 0>,
    'scheme_type': <SchemeType.HTTPS: 2>
}

Altering URLs

Replacing URL components with the URL class:

>>> from ada_url import URL
>>> urlobj = URL('https://example.org/path/../file.txt')
>>> urlobj.host = 'example.com'
>>> urlobj.href
'https://example.com/file.txt'

Replacing URL components with the replace_url function:

>>> from ada_url import replace_url
>>> replace_url('https://example.org/path/../file.txt', host='example.com')
'https://example.com/file.txt'

Search parameters

The URLSearchParams class is intended to match the one described in the WHATWG URL spec.

>>> from ada_url import URLSearchParams
>>> obj = URLSearchParams('key1=value1&key2=value2')
>>> list(obj.items())
[('key1', 'value1'), ('key2', 'value2')]

The parse_search_params function returns a dictionary of search keys mapped to value lists:

>>> from ada_url import parse_search_params
>>> parse_search_params('key1=value1&key2=value2')
{'key1': ['value1'], 'key2': ['value2']}

Internationalized domain names

The idna class can encode and decode IDNs:

>>> from ada_url import idna
>>> idna.encode('Bücher.example')
b'xn--bcher-kva.example'
>>> idna.decode(b'xn--bcher-kva.example')
'bücher.example'

WHATWG URL compliance

This library is compliant with the WHATWG URL spec. This means, among other things, that it properly encodes IDNs and resolves paths:

>>> from ada_url import URL
>>> parsed_url = URL('https://www.GOoglé.com/./path/../path2/')
>>> parsed_url.hostname
'www.xn--googl-fsa.com'
>>> parsed_url.pathname
'/path2/'

Contrast that with the Python standard library’s urlib.parse module:

>>> from urllib.parse import urlparse
>>> parsed_url = urlparse('https://www.GOoglé.com/./path/../path2/')
>>> parsed_url.hostname
'www.googlé.com'
>>> parsed_url.path
'/./path/../path2/'

Alternative Python bindings

This package uses CFFI to call the Ada library’s functions, which has a performance cost. The alternative can_ada (Canadian Ada) package uses pybind11 to generate a Python extension module, which is more performant.

Project details


Download files

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

Source Distribution

ada_url-1.24.0.tar.gz (260.3 kB view details)

Uploaded Source

Built Distributions

ada_url-1.24.0-pp310-pypy310_pp73-win_amd64.whl (444.8 kB view details)

Uploaded PyPyWindows x86-64

ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (480.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (469.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ada_url-1.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ada_url-1.24.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (467.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ada_url-1.24.0-pp39-pypy39_pp73-win_amd64.whl (444.8 kB view details)

Uploaded PyPyWindows x86-64

ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (480.9 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (469.7 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ada_url-1.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ada_url-1.24.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (467.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ada_url-1.24.0-cp313-cp313-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.13Windows x86-64

ada_url-1.24.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ada_url-1.24.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ada_url-1.24.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

ada_url-1.24.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

ada_url-1.24.0-cp313-cp313-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ada_url-1.24.0-cp313-cp313-macosx_10_15_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

ada_url-1.24.0-cp313-cp313-macosx_10_15_universal2.whl (710.4 kB view details)

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

ada_url-1.24.0-cp312-cp312-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ada_url-1.24.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ada_url-1.24.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ada_url-1.24.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

ada_url-1.24.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

ada_url-1.24.0-cp312-cp312-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ada_url-1.24.0-cp312-cp312-macosx_10_15_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

ada_url-1.24.0-cp312-cp312-macosx_10_15_universal2.whl (710.4 kB view details)

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

ada_url-1.24.0-cp311-cp311-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.11Windows x86-64

ada_url-1.24.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ada_url-1.24.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ada_url-1.24.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

ada_url-1.24.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

ada_url-1.24.0-cp311-cp311-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ada_url-1.24.0-cp311-cp311-macosx_10_15_x86_64.whl (488.6 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

ada_url-1.24.0-cp311-cp311-macosx_10_15_universal2.whl (710.3 kB view details)

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

ada_url-1.24.0-cp310-cp310-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ada_url-1.24.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ada_url-1.24.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ada_url-1.24.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

ada_url-1.24.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

ada_url-1.24.0-cp310-cp310-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ada_url-1.24.0-cp310-cp310-macosx_10_15_x86_64.whl (488.6 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

ada_url-1.24.0-cp310-cp310-macosx_10_15_universal2.whl (710.3 kB view details)

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

ada_url-1.24.0-cp39-cp39-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.9Windows x86-64

ada_url-1.24.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ada_url-1.24.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ada_url-1.24.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ada_url-1.24.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ada_url-1.24.0-cp39-cp39-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ada_url-1.24.0-cp39-cp39-macosx_10_15_x86_64.whl (488.6 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

ada_url-1.24.0-cp39-cp39-macosx_10_15_universal2.whl (710.3 kB view details)

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

File details

Details for the file ada_url-1.24.0.tar.gz.

File metadata

  • Download URL: ada_url-1.24.0.tar.gz
  • Upload date:
  • Size: 260.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0.tar.gz
Algorithm Hash digest
SHA256 0cc015891c63165e034cef9362d76a973dcad31189da7ab80432cbb63d3f4858
MD5 01ca44db2874184cea44eff63c2d85e9
BLAKE2b-256 3400297c7002587ce5445e970451328764458b9e7ddacfbe34c93db84c9e24a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0.tar.gz:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f35c75a6841c1f6c71550f076a2b8202919eec57b71a485433ee97e5e81f441
MD5 1bf5a30b82f9a174995c20005586946c
BLAKE2b-256 b5dbcc3d07bb35579d15203f49f694ec73d0a076a9caf51fd5c977330d1ad2dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16b1de495aa888c6340eda60a2beb84ef1762ae4f660e1508dda4a892ac8fff8
MD5 4d5a4a4278b8bbc8d69ff8ec61ed7309
BLAKE2b-256 9ff374f8fa67c1cb93a44983cd2ee0c858d6c8b8774f2301520ea9b881b81c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88bf3e3769682baf138871f2fb4510722fb729994521ff6125c24bbc42b14a78
MD5 67332a2eb76715e13eb21a0d91387307
BLAKE2b-256 1e42a8231894ea1c11d9e035f54d1dc16b205db183cb382bde87428edf2311d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e79d64a5afe6357b879c46781458646638264fe9ca2021a58c72233125a6b5
MD5 62ce5bbf5ddb7195ca3eebc89f29ceb8
BLAKE2b-256 40d0f8729a6292c577a7f8ead8610e4dcf3c64bb004e16ae13c19f728c5d3bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1eaf49500cedd5ef2f83301c75f6f22bc2e71d5261d73ba449cdf518d7094803
MD5 9e5f8f99ea541ffd1b9db06462c0912e
BLAKE2b-256 da2dc4a7ae4866aa64f38d5653201f279a079da6791711cac80816dffe686d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f26055475fa04ace3cfefcbbb0d4c16fe196fadb707e54e0af37c91f6e4203b3
MD5 3273b0313893d7d9a635f4c3ec7d4541
BLAKE2b-256 f7a832a4294404def3fcbc2a73551b200d0cd5fb50916da202039637e93da471

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e23f4e851f03be5c7b9a9e2dec9f001fc7cacce1bcdc9e71d54b309b5904064
MD5 f9295017c2d4eead33bdce6b4ace9702
BLAKE2b-256 29cc5dc81e45499d954e204c884ccd9fbbb12a5fde172916f50654e4fc5b3d19

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f18306bd9ad1dfc67c207b2566954e738042f1a472afaeaa6ba302d4a6d27fe
MD5 656b7a3c6d22a6571dcfa4c8a47ea77d
BLAKE2b-256 47f097ec841c8f43176bbe0f6c8d8a516151a444cdb3d2538009e0a9d0532f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94107579a99780ee1bab092f00fabe07cac2d41efadc80d081d8ca2737503dfb
MD5 94849d6d463bf1dc04994cf0bfb270bf
BLAKE2b-256 59f87539328ccdf41a52fa27a6558496991bd120349293d342a09ff5f4f7dcfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db0c33d8dd8b815b9863fddb9cc3f2572e3d80d3c68bceaf89906c43f3348e7c
MD5 41e76a1bee5a97d0562c57e09e8479b8
BLAKE2b-256 efc5a4b69f8cf46ffdd1d0c32948ae6f3a2bdaaff1943e96f23d85226109ad69

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.24.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a5a3d053be12599962f44157a5a77466085e7d3a176e5c46c301341b9c07a119
MD5 4b3edf4c0fb3db8db92bae75b304c854
BLAKE2b-256 46f3007615b1199b2a89248b2717d9dff1729ef33d4f2e9a602b1e71bd77e754

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf4f5cf49ba183a25f494ac64a6ed68e802eaf7b470c353621b9aa114a949de5
MD5 15fd5c78a73fe503df84d412b2124581
BLAKE2b-256 6e6f4981a626946ed20e76621254dc43dd4beea457f1e3d5eba967d400d7a9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 893c88f06dab933fd061667ab235b7db2daa6dcd51dc0d7a3e24d65a126a2b8a
MD5 9f5de98445d1f4119d7e287f687af3c3
BLAKE2b-256 56c758bdb87bf6ea86f974ed71e0e0d88da887cfeb23308c2e95efbbd0ecaf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b1213cf1a8ba3fba3db3a4b80cfa6288b5ec4f1823a374efae806a61f6a64f7
MD5 1578445c12458264797a4352ae681e66
BLAKE2b-256 a5a0f518896680f26463d0d10791c2678601d4d9df8ecd3ead688619399903a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55cfa43f5e86c19c57b07f3f45a8969255a325c49db73d252eeec79d1f0005c0
MD5 fadd29c33342bad7afff1d7e7a6950a0
BLAKE2b-256 6f5e0b98f4f1a4860284b8c42d2748f0697ba5cfba9ee8fa691725baf417214c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa505fdf4d2a33cb253745ba07193f12a1b0c972ec7c5b73bd58d589f865d803
MD5 2a9a5b14679b88c519761c5b128b86b7
BLAKE2b-256 1804bbedfd44d41e880224a26065c8aa6f78caa900a66d5eebd0529a99864339

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5e7eb280dd9a156f01fb4148940a3f8d6d59794ffeef52f90ce795b31020708
MD5 8d91c718ba85fffdbf98f68bba92a3b5
BLAKE2b-256 0c3c91c1bbd33f3baff6728787dd8e23642773a864c346a44d905914dc7dbded

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a8625fa7115956df58a7c030d5855184a3cc4f079df4c2807c5883fa8cb1789c
MD5 d000ebf2813b9037b2a29a18f06b0e4d
BLAKE2b-256 eac93468a1446d662b1f1b6ab164e0e03ecb95eaa65aa51b90ef9d7318b9ee82

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp313-cp313-macosx_10_15_universal2.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.24.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 510e5b43536b945f1c4bc2f6aab4e99b59f4825227fce059d373f53fed6c927a
MD5 e78231b78d92ff7b2ead4c8753a96feb
BLAKE2b-256 2161b746a8e73df1e113e4becf57a6c9d36584d14c96eadb317de3e21e537bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 285327652a4f151a29230de516133f5ce77dd6aeae196fbaf97c8bb4b57144f2
MD5 b17c5494202f52510cb29352c6d65f1a
BLAKE2b-256 3de735d3594ac0fc0b1c1de3e0b51dacd129a2010c531296d649561986f17297

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e86a818c28f7fe5259503111dc7970777f6ebc5f0eb49d62659f4f8337db576
MD5 c2c923fffa2cad4def68b05ebf712fd8
BLAKE2b-256 70edcc608a49585c9afadaaf1c2be639fdaf43dd093bff483cc48160fa1dbb9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 651d0e132f7dadbb42429226b2f5c0cbe02c470de3cd8f6e7fd726998bd67fc1
MD5 9fa5ec8d71ed3dc40eb0a130bd648b6e
BLAKE2b-256 7289ea08097c3df52a517d6135735b1836f36a630b6914c868ced9c160d1580b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9a9efa46e69cf8bb12cc7351025ede477d2544631256340ba92c643cca2fd89
MD5 1c0b9ef9abc0827320413e49a732ec98
BLAKE2b-256 15c9d5ac27aec59694a462c84c6eacdb5d55845bbca6a02194f9de0494b56761

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c95bb063dd440a1a2041e90ea77971b49fd2cab9b0e27bdddb076a8af0992f70
MD5 4542ad1203c5623289996614ee3035db
BLAKE2b-256 83cf43c68732f9d6db722a8457c5c457dc83727c4cff7f7eee1aa2dc8dce7035

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d5e9e835af8639185f79f74c3b545c6f13167293fd713bc97f153a275f7029b
MD5 69a0a7335c1f0dad15c2a871eee66288
BLAKE2b-256 6b3001ca7a04058a38ce87d6096682e92f2cef117bfdd30ece3f7220d1385541

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e84af1f1f4d393b6ed0baccdc9ed20a7418354aa8f19749a460af8d4bfa0483a
MD5 f49159dc0bc5bc3e269d7e9bba91fec5
BLAKE2b-256 e2c3525f2327ccb8aa4594623a8f4fcb47cea43b39329d7d85b229cf0ddc2ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp312-cp312-macosx_10_15_universal2.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.24.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9b2fb3ee271e210ae067ab1d0396ea24534c4ee227095c101f3ebee8a109c23
MD5 be5689e8e4ab09c1afe5402d80486b4b
BLAKE2b-256 1b39129b688ea39eddd27e084a952289c50636db7caf16516ac702b06d74cdc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afc1883ee927cf7d103b69c56e2a201d1e4180a935abac691819ff568e9e4e17
MD5 ec80cfa73756fceca15110d722bdce36
BLAKE2b-256 57497b3ae957d1bf216077dace5aad8a62d2542995ced135142fb70c3bf093ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7048db996ae18bd23c54602b7534b84381c2d0ebb88d7ad35d188291b04e74c
MD5 d35da9d25c8a83b9d361f35f1a3dc978
BLAKE2b-256 c389758017262164a01f3bb3bcb85e8ddbe3b96cfe79abf32163a8e26cb7f32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90fa345e636958e28b16a341c0f2c90628dcb45eb34cbd442ef3dbf674417cac
MD5 fff2f0281a8861a4ccff46a441bb46ec
BLAKE2b-256 423e3bb2efdbe575124a178d41b4d5567407d97c8170325ae8e57cf37cebeaba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0fe2a13488c73fc379de0b0e7eca57fcaa5c8eea12c07e459e24992f648677c
MD5 122b0b29bfddf4c4dcee1da1d1289df2
BLAKE2b-256 6a7f30715cec124811319b2875641d867b0d7d3f03f0d7d177662233c1dd57f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b92218b1dd6325dc175f6e42bfbc96fd023ab2d6a113a188c13388cf7d1f73fb
MD5 4e1c0218870ba419f2524b2c2d65bb86
BLAKE2b-256 5d4affaaa034e90834e077f4c3f5b7185ea4a6a875ec336c38bce85b704b983d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cc6ff797ce9dd3f1fe2ef585b5f76d9f4721edb7f40c652ca220ba0527aaaa6
MD5 81b2774d881847b022e6557ac3b59742
BLAKE2b-256 5e1c665bc91d1dc5ab3a348c6281163bd8f143be11fba41aed01c8abda2d7d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c4084b14ac41896506efc37b6c3a567e17f7090b1fb2cf17b81b91f3cc2cb99a
MD5 9daef4108cc71d68876502ee9fec38b5
BLAKE2b-256 634cfbbf75b0fdd1e6dcba9e097a8881132b4e1972f6e4723f68eb575d0bc935

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp311-cp311-macosx_10_15_universal2.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.24.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d58d5dfc8523a82286d4a8a55d78598400076473105bbddd51cf25f9d0e55cca
MD5 44eeb14bc6108aaa63afc3bd5565cdb2
BLAKE2b-256 ddd62143a366dc169d4c251acbdaed83639668240e6515fe51e65596f9855123

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d79965df94f600c8cf0553d2f1cd4ac98f171db13bf81f86fb82d8b7594eda51
MD5 08f671026378ebea70baf2cf9c2251b4
BLAKE2b-256 39425fe93c80dbf97a1f83ceed7a2fab24add852456da372ab6a7d99b99fbf5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ad28b75bfd9372d8485c6a3196437f00d07755c35ee91ef5519f47cfaf6e5b2
MD5 8731d51dbc64a21b0edd594c0faacfa2
BLAKE2b-256 e3440c2213b4663d1b16979b70e463e86af15232bc1c3b937feec16cc81b3c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0168587ca1ff498fdee13367678edecb616a83eac4442ae283667bc33fb427ca
MD5 7448e391af8e599a9c2d3f63a3308658
BLAKE2b-256 694f6729ff8f86589786d614bdf4457a127844c41914022d3115d6b5fe7b824a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6a614c74bc421c976e3a68d4ea2a2f5c7cf10623b7503a90f97ab05d1d17742
MD5 facb5c5de6defc334cfbd1e25a19047a
BLAKE2b-256 028c17b23538fdbd60c835513d3492ced0339ad927635905d404f89e8109099f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129c187ebeb0c688b8275bdd1b10ebfe20ac204b4c4b543f5b34fa77e4d4ddf6
MD5 a483a6394e4f6f9559360bbd70a514b2
BLAKE2b-256 7626199395d079424b10c399b89bf66f41f68a57c75296e834b862de3909690e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2b3644fd0dc1e972b78588284993abbe2899254ee24ae79c3d89ffaa168b8501
MD5 46a34142325dfe1ef2faf8e0776bc085
BLAKE2b-256 fd106e113b8b111176849e4d57338a0f784eb9ac3c1a64e6c7f5922b5380fb17

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 28c8383b01c65def055c8b2032c988a34d75d0e9930522697f82565809dfcb2e
MD5 f862c67bd790833c8edc1de227addb99
BLAKE2b-256 d8291954a1e8cc854cee6452b0a534b24b04ea4a292d8ce57f67f96d2d45e8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp310-cp310-macosx_10_15_universal2.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.24.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 917a0ed45c27402d02742934d0f2d3913349d8b6d5f772282fff96738612c19e
MD5 0c80a430ee51ba542a05a6866bd21fbb
BLAKE2b-256 b9cd45d72bf9e5aefe3c286670a8a64f6398a61a59d02c69b4eef3e0ea18a2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03c04a702087a9d76af9dfc7b4950cc156926f4419ef296ad5eb782c0b9827b9
MD5 2054d7665b3bef209a9e97cfa18b4996
BLAKE2b-256 60a21d1e33e069a86207978b8a570f171446fce7cef739d3c754a7220477f06c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65fc01b2dc053dd29e7a3708e7fb56a7e4c8acd366533bbdd8ed6fc9435b71b6
MD5 fcf4e1b464e0b0e2e32588ac2cf774a1
BLAKE2b-256 9fdd845fdb6a5038d5db93eef8a81ca0c0648b19f8c2f8c98f7edbfbd301a9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ef0d430044aeba3088d090084dfa2f898792e8608e81ce897c3af0d7bf6c177
MD5 16bd60cad07cdb026fa7c0121afc80b8
BLAKE2b-256 c40257bc4ce67585838b6d3c91ac3be4950fbb0252a9745bba0918c50011946d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ba5b64e372528c7987c1c7df0d645a7b8ed053e0d492a5f31ad97add7b2f9ee
MD5 53c6ecf7b29f4bc3e212c091a9d12b01
BLAKE2b-256 d418201cb7e6533cdc6e293a9cd2cafc24e8e9a8bb00de883db6d160e2476921

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55284276995e28d7d1c6d0473e66d376440beecc50d5af04b69986f4d89ed2c2
MD5 af013bf47bc52c724af3221c6847311c
BLAKE2b-256 70a519cd733dd3a3ade83bc47a37db3014e5b104fc805522b10fc3f2b470694e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04d0838b8f8fee6dab180050acff3c9306154e285cc582b92df41c270ec9fdbd
MD5 a52d537c0eda583a0c1e386b58cb3ec5
BLAKE2b-256 a025cf9475565c73bcd744b28460d23094d0a8b87379cf9d82ea5d8977358480

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: build.yml on ada-url/ada-python

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

File details

Details for the file ada_url-1.24.0-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.24.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3996387b112641aec4ed8672b0f69ad79ebb7bd22f4049846a542d60a68ebeb3
MD5 f9fcecff2a0f379151755f8509350d1c
BLAKE2b-256 e2cb75519736dc4f4db55954ba49ebf7b594791ccc376a40d854d2bb1034cea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.24.0-cp39-cp39-macosx_10_15_universal2.whl:

Publisher: build.yml on ada-url/ada-python

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

Supported by

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