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 urllib.parse module, which loosely follows the older RFC 3978 standard:
>>> 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/'
Performance
This package uses CFFI to call the Ada C library’s functions, which makes it faster than the Python standard library’s urllib.parse module for most applications.
An alternative package, can_ada, uses pybind11 to interact with the Ada C++ library functions, which is even faster.
Release files for ada-url 4.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ada_url-4.0.0.tar.gz | 265.3 kB | Details |
Built distributions (wheels)
Total release size: 57.5 MB
Release files / ada_url-4.0.0.tar.gz
| Download URL | ada_url-4.0.0.tar.gz |
|---|---|
| Size | 265.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9f399ec867349800a4c2d3aa8df8c533c340494b04d34b1f082b97d9a8b76a07
|
|
BLAKE2b-256 checksum How to use checksums |
984ef62ef579f693298f62a4657a0429823444025f342161d53f5c1f7bd629c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-win_amd64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 438.5 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8ad116df43579c0c49dd1807e182137c38a3784927181a26ea4f5d051da155f0
|
|
BLAKE2b-256 checksum How to use checksums |
97f03a6bf91fc2e6a0ee808e7fbf0981f7b6bb44b466dbfad19f2d229d32185c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
f24ac26a6e1c8cb00abfa84426e5419cbe619439d55ba1266db4c67b5af066ad
|
|
BLAKE2b-256 checksum How to use checksums |
124edaa6b344240c9ea7776d211f2875731638d607c32a7f6b66cd3fdec7f2b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
cc2c47eb1fc2e3fa164c8c64be6a3c63b5d30f72d5ceb3698d31c738bdbe953c
|
|
BLAKE2b-256 checksum How to use checksums |
12a551e2c2da49fb0e2f82ee8df154fb37e2e32222a7cea85cec33919cdda404
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
ae36e49770036978ae9a3c31f24b69a1020d83dcc53b9a134a1ba5cafb85bd28
|
|
BLAKE2b-256 checksum How to use checksums |
7b11d09f9563c844ca03a57000fd186ab4c478dd5e8c47f3ca968ac589edc9b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
23992e6adf1ee199cda3f740dc4b180f766f2221b664e867822bcd769b4319e7
|
|
BLAKE2b-256 checksum How to use checksums |
e8af52a41bd417d738bdf9f02c13dd4f9df14bcf632a780fe3bbd2d41942eb38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 483.8 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
21fb572120df103bc5596ae7e1989aa9653ad67876ee1f0c0479c0b7dc1987b7
|
|
BLAKE2b-256 checksum How to use checksums |
e0d9b961166186fb879207606061c53c5f99ee541d932f9d8138ec6094ee321d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | ada_url-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 488.4 kB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
528476f914bcc0f0f0d61edfaaad74762bb250577ba7a057fe498a01da74d0dd
|
|
BLAKE2b-256 checksum How to use checksums |
f2d25085234207eba6988714b1baa39f9ec02f2547d30f013fe99ee0689705e4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp314-cp314-macosx_10_15_universal2.whl
| Download URL | ada_url-4.0.0-cp314-cp314-macosx_10_15_universal2.whl |
|---|---|
| Size | 706.4 kB |
| Tags | CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
39f4bd73f700a69c5b8a90e961ef941a6a746a0702267626d1c963d375bb9262
|
|
BLAKE2b-256 checksum How to use checksums |
877874c5cd93ca51841cbd78af1cb4b1b3cd2c09a9d7915138c402491f25219c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-win_amd64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 434.1 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5563001339c7f19586df57d832238c45ab065c012c7d884cfd5ed73db8be46d6
|
|
BLAKE2b-256 checksum How to use checksums |
2539498e9e2a848a8fc0744c2d3fd36436de837bc0bd58a99041ddee832e37ea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
6f13b0cff78ad3ff48c4179f2eafaa0231be1ca1a4f52d841565a69dd3c7ceeb
|
|
BLAKE2b-256 checksum How to use checksums |
0266a673c258d4aa76b888758d5a468f231bb12686dc3c10ee51c2e5c2dffd7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4bc8c4f6cdc816379c14d49ae987a9e35bb5e8ee35517735a49afed08fd16e9e
|
|
BLAKE2b-256 checksum How to use checksums |
910c4e7d2ae2c72c963d1c0ee004a88a088ee8c0c669c9910947ea722e144eaa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
bdb9e57c9f2d2c4c29dc2b49eeb7c370a8c9550fcd95a44d8434444e236537a2
|
|
BLAKE2b-256 checksum How to use checksums |
5d67525a42ce8f4de030423c497b1a70261921f0347070cb3b22f9ae6ce6a14a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
0f691beab142575e6546a37cac142e3abfe3bb7d0b586b648fc56917b5b88ec3
|
|
BLAKE2b-256 checksum How to use checksums |
88acd02f27798ed2b15067d25e62cec97b6d1626cf9cc9ac8b3d3a45877a830c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 483.7 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
be53094f4cf0d435b51cf738486de8decaeafdc465d0b24a1462ecf88fbb2f58
|
|
BLAKE2b-256 checksum How to use checksums |
d8196f881a4c36ac84f7ab12426594a12fc2155e82976bf2ff7ea1d080779ad7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-macosx_10_15_x86_64.whl
| Download URL | ada_url-4.0.0-cp313-cp313-macosx_10_15_x86_64.whl |
|---|---|
| Size | 488.4 kB |
| Tags | CPython 3.13 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
e1abb7c8bf5acbee94a5bb0b2e3100dcaf0aa3b4294e31e17c5645c85f473595
|
|
BLAKE2b-256 checksum How to use checksums |
4d6b4357e137aa0c894671ddbe975d4056dc2855626f0d1e09398c4e4a81fbea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp313-cp313-macosx_10_15_universal2.whl
| Download URL | ada_url-4.0.0-cp313-cp313-macosx_10_15_universal2.whl |
|---|---|
| Size | 706.2 kB |
| Tags | CPython 3.13 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
da4040f51e6c17cf827f38031d3546e4a940c1440523ec0d0319048da21de174
|
|
BLAKE2b-256 checksum How to use checksums |
d574426e9a200d80dbc368c26441e5978e8b2ebc7e3d9af08726d36439ef584e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-win_amd64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 434.1 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d5ab0c75e227d46dca70376193eb70387c605eb43866cf425a03df9655e02303
|
|
BLAKE2b-256 checksum How to use checksums |
b2fe13e01dbdc2ab9d7b9d150c386437d68ce0db9f3c3d2028130613cc10949b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
4608f6aa98fc736a4edd751dd017c9f146b8d3d86e08d86bfc0df5cb7f3eae8b
|
|
BLAKE2b-256 checksum How to use checksums |
dc226a5d890f541266f5b7c345947c633bdb686a856c734502131161c52e3ccc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8e975816ec664690d78f26b479f41098f6cb1e3142b42821eef9eb9ee199f287
|
|
BLAKE2b-256 checksum How to use checksums |
f6f3ed5f9b121dc460c2cc555393394e0d14a660bb1ed753abc0f1d60de04297
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
da1510328ffbb5a505815f322061137527946a3698bbb70dc53ec086b8086e21
|
|
BLAKE2b-256 checksum How to use checksums |
237c144b315890c7c6bc6367bcd9101bd29f4343bc2a93a944bc5815dafbf48a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
d85ab449fe23d2ac612d34a869dd6a0b5968b45819ebcae40d6307c7f951db69
|
|
BLAKE2b-256 checksum How to use checksums |
263e5d931d6eba90657470f0ee9d4049685f177e34a452a1805aad5fe1c8885e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 483.7 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b3c6fd8148c1efde18f71a7c241d3e0ea98de36091a12940656cfa545a84da14
|
|
BLAKE2b-256 checksum How to use checksums |
3f8e65fac4fa8846bffdc3d8c4e17294ee435385fcc8980ba141ed3b6f03b224
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-macosx_10_15_x86_64.whl
| Download URL | ada_url-4.0.0-cp312-cp312-macosx_10_15_x86_64.whl |
|---|---|
| Size | 488.4 kB |
| Tags | CPython 3.12 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
75785fb7242411d1d0ada6e6abbe5cedcb87bee7d38272a1fd8beb5fc512bc2d
|
|
BLAKE2b-256 checksum How to use checksums |
9aaa6718ba57b57090db0b2f675d78a3762318e0f2c477ba718f76c6d8ec7e30
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp312-cp312-macosx_10_15_universal2.whl
| Download URL | ada_url-4.0.0-cp312-cp312-macosx_10_15_universal2.whl |
|---|---|
| Size | 706.2 kB |
| Tags | CPython 3.12 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
909658402abad0c35422b3306d1464131c25b926cd203399b18bc1667f0778d4
|
|
BLAKE2b-256 checksum How to use checksums |
496e13bd71c47fa7096a3c74ae6536a8b465c2defedca43135e2881e3c590ccd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-win_amd64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 434.0 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0641ecdeb6b226967077f52404af455a11e2957bcbb31b5921d6eb405859f831
|
|
BLAKE2b-256 checksum How to use checksums |
f36134e2575622c6db1f30d1bd20f709c1cf16359a7a1d1dee5add01ac2dc07e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3f5efa01409553d15b8b27b4640cb43427a53c2995d2e2c5de505bd1faa9fb55
|
|
BLAKE2b-256 checksum How to use checksums |
d3561ec2bb5240810e53998eef2b8fb540fe25c0fefd5c26ff2bd25a1f9c3871
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
d25ad705c3e720661b5defac4af046087a048330d6afe80b892053d1c47c23ac
|
|
BLAKE2b-256 checksum How to use checksums |
7d8f8f76f385fb47b50148d81bc215295cc9b61cd2969df3f1ba5041fd6767cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e86c86ffe4d310095ed50701afe5c1e76c2efd1c268ecdc91bfcd8a4609d80b4
|
|
BLAKE2b-256 checksum How to use checksums |
965f3b3f5a17f75f690fd757183f31cc27f39101a14e664dfb0c5c6f71bf30f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
74e7aff0596381d35a2db6a473beb38bc9ca5e16f64a97e20c0ae3206059dfa2
|
|
BLAKE2b-256 checksum How to use checksums |
9e2f0203f4d74dfd718e0f117c28906c0b9d90ac89dd90766efe61ce944e0a8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 481.5 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8c0a10891bb775ebf9b5eac2a7a14150a208a43d94ff5c5e98829fa7770b7d99
|
|
BLAKE2b-256 checksum How to use checksums |
b749aa3c27d40b6eee2cdb74781bd4d1ec4dce654a922475a07331f757400e31
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-macosx_10_15_x86_64.whl
| Download URL | ada_url-4.0.0-cp311-cp311-macosx_10_15_x86_64.whl |
|---|---|
| Size | 486.3 kB |
| Tags | CPython 3.11 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
39b4223ef9a226a3d673c8905f551308051f7c10781a25383f806bd7e33cf681
|
|
BLAKE2b-256 checksum How to use checksums |
17618932be53b468a4f3cdf70fee7089624d532883e0e1ba72c934646e2741d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp311-cp311-macosx_10_15_universal2.whl
| Download URL | ada_url-4.0.0-cp311-cp311-macosx_10_15_universal2.whl |
|---|---|
| Size | 701.6 kB |
| Tags | CPython 3.11 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
6b49f6bb47c3252f673eeafed5f24a10449829a16ca02852cc19b2d1fa39c2d2
|
|
BLAKE2b-256 checksum How to use checksums |
06254b6407fd8584debd46cde4775c8593bb1173d523de51bf2912db3b32a511
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-win_amd64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 434.0 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9ec145a74027c7be028c5558813302d27d9bdcc848947b9c00ff5e0e92c6aed1
|
|
BLAKE2b-256 checksum How to use checksums |
7753a3052700fca22443defe1d856654a9db94f1a61a5fc731439c07a31071dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 2.9 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0d8081fd0e939823162afa6d69cfeb5815c0035b56227cda2aa66357ba63917d
|
|
BLAKE2b-256 checksum How to use checksums |
daa40e0469f7d2fe343fdfcfa353c8886a3d8a99e21441a3ec59cdaa5d43ee4e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a0e0464aff6800b21d22f9f9683fd5625d1e9539967032291c88305361d2f6da
|
|
BLAKE2b-256 checksum How to use checksums |
99c0eb5c9fb3e6478213e376b78d75bf1d44cf3e098c7568f74db0069630fa62
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e18557b30431aa1e19fb570416d4a0186a470202d113c47283c311757f08cf1f
|
|
BLAKE2b-256 checksum How to use checksums |
07670179da20490a258922071cf87d8d5558ec24c83e23831ddb304b44002442
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
2094db65d134d3d87c65d28fb7ab5ce4b7c16480e02c3a5da4da0756bcab5025
|
|
BLAKE2b-256 checksum How to use checksums |
27b4b304d6b74961888f2f0756542848025f5c03a7709d124aac0b0c3c9405bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 481.5 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e8ae79506463092bc01c3f430fb8784720ab6f3fe49ce65427ad7dd838cb1b4a
|
|
BLAKE2b-256 checksum How to use checksums |
5bd98195d44667f89697b279c7441e81af63d607d6e357c8a2e7f3c9d6cee0ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-macosx_10_15_x86_64.whl
| Download URL | ada_url-4.0.0-cp310-cp310-macosx_10_15_x86_64.whl |
|---|---|
| Size | 486.3 kB |
| Tags | CPython 3.10 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
19a73177721fa710cd336be18cfbd8c7de1d81201f895fb1df00b3a15b06c9f3
|
|
BLAKE2b-256 checksum How to use checksums |
7bfe80b2c37bc58579e17e9d95f21573f126ba2e29944411c659e07d24bdd614
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency logRelease files / ada_url-4.0.0-cp310-cp310-macosx_10_15_universal2.whl
| Download URL | ada_url-4.0.0-cp310-cp310-macosx_10_15_universal2.whl |
|---|---|
| Size | 701.6 kB |
| Tags | CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
28a1d13716d127afe59bb46d91e19c4e02de103eabf965394d7944dccf7540fa
|
|
BLAKE2b-256 checksum How to use checksums |
df0dfcd5baaf23238abeb34e0cfc7e5be3100dfddcc71e6b91e4d57a2d55b6e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 28, 2026.
Transparency log