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

Uploaded Source

Built Distributions

ada_url-1.23.0-pp310-pypy310_pp73-win_amd64.whl (443.3 kB view details)

Uploaded PyPyWindows x86-64

ada_url-1.23.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (478.6 kB view details)

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

ada_url-1.23.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (468.1 kB view details)

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

ada_url-1.23.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ada_url-1.23.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (465.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ada_url-1.23.0-pp39-pypy39_pp73-win_amd64.whl (443.3 kB view details)

Uploaded PyPyWindows x86-64

ada_url-1.23.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (478.6 kB view details)

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

ada_url-1.23.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (468.1 kB view details)

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

ada_url-1.23.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (462.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

ada_url-1.23.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (465.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

ada_url-1.23.0-cp313-cp313-win_amd64.whl (435.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ada_url-1.23.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.23.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ada_url-1.23.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.23.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.23.0-cp313-cp313-macosx_11_0_arm64.whl (480.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ada_url-1.23.0-cp313-cp313-macosx_10_15_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

ada_url-1.23.0-cp313-cp313-macosx_10_15_universal2.whl (708.1 kB view details)

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

ada_url-1.23.0-cp312-cp312-win_amd64.whl (435.4 kB view details)

Uploaded CPython 3.12Windows x86-64

ada_url-1.23.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.23.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ada_url-1.23.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.23.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.23.0-cp312-cp312-macosx_11_0_arm64.whl (480.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ada_url-1.23.0-cp312-cp312-macosx_10_15_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

ada_url-1.23.0-cp312-cp312-macosx_10_15_universal2.whl (708.1 kB view details)

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

ada_url-1.23.0-cp311-cp311-win_amd64.whl (435.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ada_url-1.23.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.23.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ada_url-1.23.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.23.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.23.0-cp311-cp311-macosx_11_0_arm64.whl (480.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ada_url-1.23.0-cp311-cp311-macosx_10_15_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

ada_url-1.23.0-cp311-cp311-macosx_10_15_universal2.whl (708.0 kB view details)

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

ada_url-1.23.0-cp310-cp310-win_amd64.whl (435.4 kB view details)

Uploaded CPython 3.10Windows x86-64

ada_url-1.23.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.23.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ada_url-1.23.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.23.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.23.0-cp310-cp310-macosx_11_0_arm64.whl (480.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ada_url-1.23.0-cp310-cp310-macosx_10_15_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

ada_url-1.23.0-cp310-cp310-macosx_10_15_universal2.whl (708.0 kB view details)

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

ada_url-1.23.0-cp39-cp39-win_amd64.whl (435.4 kB view details)

Uploaded CPython 3.9Windows x86-64

ada_url-1.23.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.23.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ada_url-1.23.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.23.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.23.0-cp39-cp39-macosx_11_0_arm64.whl (480.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ada_url-1.23.0-cp39-cp39-macosx_10_15_x86_64.whl (486.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

ada_url-1.23.0-cp39-cp39-macosx_10_15_universal2.whl (708.0 kB view details)

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

File details

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

File metadata

  • Download URL: ada_url-1.23.0.tar.gz
  • Upload date:
  • Size: 259.8 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.23.0.tar.gz
Algorithm Hash digest
SHA256 67579effb7450004d7731cedaa7e292a75fb2c7ddfe77a71d28a85728a4c38c2
MD5 5bed74286de3a7320cf8a236eac29a2b
BLAKE2b-256 77268e60dc971ef6595c21d4147709c49a90696941f98d8a6c77d2ca783f7e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b4945f1cdb874e9994d2cc2fce2d738bcfe15de2b6c6cc4c3fa800feb334b35c
MD5 07dd484ea66df3bd4e79b5d03b82868c
BLAKE2b-256 4131d1dbaa68bccc6660655bd2984ca1a2cf9a23a1a38227657e2eaceda9ecd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp310-pypy310_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 226c5a29793f542a3fea1874ad98694b4385cec6d212bee0b78d6e937cbca80e
MD5 c4290761a097945b85845290315acb8c
BLAKE2b-256 2c155bebe32ff216a0202a22c96ac7bd081b21859efd98a2ca25058ee1bbc8c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp310-pypy310_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ba10e4fcbf4207bb4ee33b82a4c026dbc4e3ced5a1baef7fd8b2a56e6f08ebc
MD5 935fad5cb2faf304c559082e4b237195
BLAKE2b-256 e142b5dcee262158792c00f5d0c8dc40b5d3f70dc76d68136f24b54c9a1d298d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fd88f393fe1a9e62fa52872068ffd776dc37a2569f535b5339df24efe2926c5
MD5 9d6cb14e9aedce4584f69c314343b499
BLAKE2b-256 1a39bd31a8277fc840a3b614d28cb3a1e9da28026748427a671b1c1ea863bfda

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a27e5c977f546192082f22bc533712440d1af6ce1ed27462c87b54e1d6e655cf
MD5 08991bef01a3e495be5b639222211c9d
BLAKE2b-256 e51d4a47ad2cb38d66b83597393a7e650b57e6b40ebdbd00a356d53af7e73c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1cfc11ca519aebe921b36a1dbb3cccf42b88632b1881eccb9683e68c728e7253
MD5 ea905ecf2f71e26dedd78df44030f7f3
BLAKE2b-256 2686c07d16b2e3d12984d3699406e042cb0da2ead5cf92255a4c3c11fa53bb5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp39-pypy39_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03f55167267f9e4218c6e57d0a3078d05db155a52d039177ad21f289d0d9c40c
MD5 de29700ae57ba82be22364f2c4f9dc09
BLAKE2b-256 3e9c698e27d459b578b05b08f2ea2c2d4d40ee8a2bb835440d55476c183727ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp39-pypy39_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5eb7b501b973aa08de77eebac9f75f593050cbdfde9d432dacdcd443385d41fa
MD5 5da5ffec972103634abe164402109b4f
BLAKE2b-256 522dbbbcf7c76b5dc24859717e1e9da04a3cf65e6e5a4579ffc439bef3da64e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07cbd0f84686c91b2f7354c1660d4fe577ef391560274823d84c8060b07a9aa9
MD5 753c5e8999f318d8a3f26423380c5840
BLAKE2b-256 96ad228d383660d7b4d00f2614e7cc177b02e4701123313ba7bae72a6d2cbb3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 701e4e9bfead55e05ec9b020746e6a65b7e498c04bdd4b8b7e97fbddd0816355
MD5 f78ebd572eeed7cfbec6142ae8565be1
BLAKE2b-256 2545baf086ade25bffc49c3453061ab44791b19242cc9536b52d7fdd2b168c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.23.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 435.4 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.23.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b732350d8d1f7d184e2410e4372ecc91e0755243cae15087d8031ce93b7625f
MD5 bfe0af7d68598ee1e345dfb99ba4c14a
BLAKE2b-256 f2ec1fd5e6e8a0e75a7d378ff68893a511c19220025a65b96c6424cc54babead

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82490d7a30ea79a83c94bceab9591bc7ddfd62c0e58992b4dce2b1ebdb2307d3
MD5 0583e882b1e15a05184ddd9e81e74366
BLAKE2b-256 0ba8ca61ae23e922e2f0984104152860084717fb40fafc1ca3d86379bcb5e2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f60575bd7308c76b3bc012e7b1b64367d7dddf5e92d081f12694d2dabca9b40c
MD5 d5107d75d30b5c2121c74a88f4c306d4
BLAKE2b-256 10e3aee800505e5ee77c829617a66cbc1f5680133aafe47ec2b6a9f609a678f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f48463e053cac7dda81d1d6482271516dec65feb8f74440f2a804358afbcd5b
MD5 abc7fd209a557bc9d99e101e9295515a
BLAKE2b-256 eeb3f91bf76093729828e51cf1af99dd35c66092f369bc6c7f2c87e3b5fbadf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ad6a50eab438642c502ecbcb3851e9562b9c275e6a90fed69b4c48fdf375fcc
MD5 8221a6349544a193058b2f73672c7e0b
BLAKE2b-256 8c16083dc2562aeb6ab3fb7272aaa1c9a25cc42e8c24702d39174986f6743e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51ad943b40b32d853b97f873231810f713d0bdb42ce9319bdcfdc69d192dc51f
MD5 6a9828b3e1fdaa5c873884c99aa4ecd4
BLAKE2b-256 7e5d08e02fb2aa904efcb343c670bc514ae2475b3f2d48a08e6f4252562a1c92

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0476daba7cd03162c993d672c311c2a3625dfc5bb7d05645f5c0afaa403e4464
MD5 94a30526c789cb3ee9566dc61548b420
BLAKE2b-256 78088cac3f6ac1455199e2aa104f0538bb0c471b4b77c086d1bbdc44002be63c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 de18707dc4ee0052c714e1c353c847c0d7e3dd8568cdb9677f7bf478ed131644
MD5 fdd27b3dba57007e69164f1747c499c8
BLAKE2b-256 67ceffa539f50ae859a3f3ace725cc4449ab587a3f339b4ffa201038d87e3b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.23.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.4 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.23.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 100ddacd2d1eaf5fd24dc0cf4dada35420f36f5106987b0ce473ac0aa28af89a
MD5 a92adbf5d1624b52324b23912e49d0a6
BLAKE2b-256 6387f262f0e632d0b7f942615c16217fddcd46f5d571e9b2daa97301000e173a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 543edb985512ce8581177b576fddb9554a438d8e3e1869fd34d537648ba3f9d0
MD5 6a47a6143963ae772c89a8faca76d482
BLAKE2b-256 43ee372c36621ecb589c222440ad392d2cdb3e56ed8fff6949639c7fe64bcf24

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ff97fc2a7c0eba3c29acc082e85cbcfdf3267e47884a6b9db1e6e17c63b5fed
MD5 694eb27b2d3f670fc751febfe4b16dc8
BLAKE2b-256 36511c4e84bc54d63cb1f1dc7110b79740c13ded5f39621673e9b6d968c27310

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baff4131d3233d8e444acb8f51a18348c974303578938524fb2e7969b5b60f5b
MD5 2c0785536e51a501490ffe4d4456e896
BLAKE2b-256 83ac06dde2778be316f3bd0e64b4694af8a79e7977b098effb1b46e529241a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f9c612aa126dd87d5d4142a01715c6298dfff20ed25f27bd73e79d813d3c3db
MD5 d9a79b65d0ca62e7dc29fcd4084a7baa
BLAKE2b-256 8f12aeda7bb3bc0a42f3848edbd7d34d1823d37a990236713a9971d56bbe4e41

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1120c032ae2d98d3ba0cafb4e0e826d3de21f125b80de2668075b877cf662b5d
MD5 d2f0e71829bd3127bc1c05ff24d1c6a4
BLAKE2b-256 17546a40ef77a093c3ad8448c201a74a17701014758022a50dc1a58e1254f43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 859b11c1f59ec3f688cc632c7b8a4aa3c3419ef48d993269208b931a1983ad9e
MD5 634a040563eec04bf9d9654e83d91faa
BLAKE2b-256 acff2bef60f44b160e9e17928776f0e10e419ac0d38d059fc30240f24c660e4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a6916fd6493f22d905682cfce50881a4face2158760117b8222aa8c9b7a2b6b0
MD5 95a6fe3fa96ccd9a6388c7e710cdbe01
BLAKE2b-256 188297ede334a10ccece14c2172b614a9ba2b15f402f806d0ef4efebd42f9d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.23.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 435.4 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.23.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c65626a18f02955e15b700ec982bc5373dde468192479f6fdb0908dd290f628a
MD5 256563e48ea2761fea6fa1f158668ef3
BLAKE2b-256 5afc523c6d1b5ccc117a0801c50774f41f832054917e41e212dd92087759fdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fc3bab40e46e65f39eb1dcc513f7194af4aac7fe13edfb66d2feba32a73fa82
MD5 22e35cb813d5dea0451bb93d01d908f1
BLAKE2b-256 ec0f88693117278e120e6ec2314a976084c9d6cbc217176afd41332b586b0f8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0400093e7abe48eb92b0aa5f0cdd96f3aa24b78e75a80bc55b718e1c94e0e27
MD5 a3a658c65b55f6a216db6338291a9122
BLAKE2b-256 2b3d5de7b8f6d0a0c13339082538779d10b095ad0d129b7532e7e3026d8f8fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a262cca2c51b955e1c63398359999d1529609ef644df7f799ba1ad69aeb74818
MD5 5bd27d908a9ac1c50a62ab847cf76808
BLAKE2b-256 09a1644bb57ce3a397d37fe92b7f204b1d580b4f7213bb77e78c8adf3b130457

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b856569721365f664f5cee10abe7842e2bd349b9aa920d26dfb5cb213e061971
MD5 ffed91d63782e95facebed6ed83df8bc
BLAKE2b-256 84ffc6450a3fc06f093fadb40e5b634075b410cabfee3a61ed3060c37e56c79a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0695c7ca6cdf81b89844cb3c44cde79b27815cab480198bf0d072b40fa953100
MD5 85cd7545542d7513ba6ecf0aed44ad38
BLAKE2b-256 6fd7227c11b50bcc77b350d0536dfc397e09fbd2aa86527f321f828e82b2e037

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 83e19d0c34f8b24d31571b1505b410a2314a5eff0827a8b7367869e6311b9132
MD5 4e5508cd05af87cb651bcf9ee268b4ad
BLAKE2b-256 57f4425c2987a9f9dcfb075708deba52d40f7ae9f9afdfd0b7110df0147b49ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 874dca498a1007210a89d314387bf3dd2f3683748486417fd3f0e8971c1e1221
MD5 2e814501ee65a212cfc9ea0ea375430d
BLAKE2b-256 c8873bb513522b9374424c5cf3120921e9c357fe47dfe46477955d87ca5b7a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.23.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 435.4 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.23.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7afc31917c842d5d2feb7833aa60d6eaaffb81ab4b24a6664a84e8b1aa624d6
MD5 5c1f7341c77dfdd365ae8253b862c3e6
BLAKE2b-256 7ba59b7c2c67b178b5f127d63794681e8599dcd37a13eeeb703f5771de79e747

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea29bed7362613e2be415e21a746af8a2c9c1fb4f7f46b58c74bf01764279384
MD5 4218b2890bcf882dd2f5e069b4264a3d
BLAKE2b-256 1dd747c8accdbee4db484271ddad960ac597dcba91615d96896d071adbd354d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1d3892f0d895f80ab25c7cca322cc531f87c585da4e48198508ad3b3d902742
MD5 9a1f3c5191f2a9105278138816a346a2
BLAKE2b-256 f466941ed9bb20908912922f039d3888a2f19189ff2bb825aac2633fd04f5979

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec3259ab2ffecf7087fb2e5479270ee954459364fc4054c923b2e360f91e93c2
MD5 9b0ebfcc4824db3133ebea9a4c0642f5
BLAKE2b-256 e623613ffc26e242407410146f967cc37c9df35f0a2e8c90841abd3505b0ebf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ceb19b43ee6d54d23f21d0f68b76e26500bd976c64ce7a9cacf65952d5b25412
MD5 e900e3f0350662d07923ad14de50eeab
BLAKE2b-256 6af7f1ae08653c16af9d850c86093d931e0ade87d4c04f240692495319dc3555

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccb2283a37b17761beddfeb1d90a2ed2cb097c09536c7af84235b85ab8831e1d
MD5 4ee8555a3db795138afe93e5f32b7d5d
BLAKE2b-256 212ac347916e193a510715b1f36c3ea20f08e4fe5fdf1c7dd87894758b21bf70

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8cbdb264698a81fe4dafb519234063b8edcf99d716ba320fc6c12851982aed68
MD5 688e4fe31c38514f8ed475c1c1daee32
BLAKE2b-256 70edbc107563fa963d0b02e8ee0ca3c8d6ee95e92d584fe4d6860c1896b1efd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 66e7e332891066c6678092a46b9c58886c004b6c7cd41a6460680bc14635c543
MD5 841ad796cab0bb2ade4d4f876477be92
BLAKE2b-256 13e2f32078abb49a0cb81b5a8d6f759c8bdfd7c209974fee84ea356bdb542dd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ada_url-1.23.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 435.4 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.23.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c3c37217ee5438afb32625e0b3eba94f61447c151ae6060ce4f630832093b94
MD5 6da34e078e6325631e3d4d7cb4324032
BLAKE2b-256 c555c9644d5df0d9f36891547fafcc42fce27342ca0a1748f85769821842cac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39ca32f7461ad32f4a9e9f35d3f26e25bfd771779748bcd87c1b18cfa08df2a5
MD5 9e5dbb7f4ae5b986afc6f35983021cee
BLAKE2b-256 5c0def2e2d024459aa864295950fd78dd7e6737c71aff6c65caf60edba3a05f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e45148b8916282bfe4e9b815cbe0a2362688786b882aab6a8cace9b11976a75a
MD5 35002faee11998d7cb3240db3398d770
BLAKE2b-256 b06e186babfa2f88f0cc06b3aefd97663cb28793493a9ea5b6d698b1795ca1af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6b1fd13f61ec70a8406d9586223e67cb2335d5e720f7f24b6f34768f619fb84
MD5 982d47985c0d8f90cdc3dac9dbbfa0ef
BLAKE2b-256 c24f0a329db2b267086867ee960d63cba40070a1ddda281ba974a344c949a326

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f80a43baa0b5b343a16daece379a33faf33bebc209c2d8ff544abbbb1544e204
MD5 9c82d3893c7a4a88bd40db7210edd657
BLAKE2b-256 da646c2cf38c1a4d94c91a42dcf1d6cb51b245705932fbed1b06c0c11915cbde

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81a431250fd3be18ce550e31edfc445dc97d37bcb6ad0071fa1c33ff24f9d113
MD5 e7d81c7db49cbd7a815686ad529aa552
BLAKE2b-256 38d02565a07f7c35b473be693df0c72c8ff2a95ccdeb72d232ef16b533908082

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06843d9d6cd1c318134f619095275a3acd85ddea8d49f2d05c14974c3a31fc48
MD5 60d986d33b6a5be6ac5c506b58fc50b9
BLAKE2b-256 46d32d43cc688a137aab11583e33b3bb3d77e27e187e5e448e01f25042e9d41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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.23.0-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for ada_url-1.23.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 70452f8c7f6cc1c57fdb4f3f5698fe03b2e7e22d19f6da1608129cb83cac8b58
MD5 97f3be5b1bc3fcca5a8e092bd648e1c0
BLAKE2b-256 620aa0c77158a67bbde9f95d74708d60940e975b17c1c5d1aa4abf292eac636d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ada_url-1.23.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