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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file ada_url-1.15.3.tar.gz
.
File metadata
- Download URL: ada_url-1.15.3.tar.gz
- Upload date:
- Size: 217.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d3bd341082d887c9503bffc10a3b5b33bc514a89c425b656078065a2c8f599 |
|
MD5 | 2bbbafaa264c3d1216a1de3d51988f4e |
|
BLAKE2b-256 | bf9673903c06cff317f0cbd921e7ce394d9e114cd849c10759dd0d0c784ca953 |
File details
Details for the file ada_url-1.15.3-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 389.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81d5a0923c9703cddd2dde90f03d132d29282d5e48a0ac796fd4c2be39ca8780 |
|
MD5 | 94befcdadd46e079e40929fadb6bb1d3 |
|
BLAKE2b-256 | 137e2ff2ec3b66ae5f3f9a6675e26078ddc3308fa8c78a72e35a4a0aec1b0444 |
File details
Details for the file ada_url-1.15.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 442.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2112a62bba370db2281323afb7d757bf6ae0d0aada736b59b142233825f11998 |
|
MD5 | 743345056918699ea692d13a6b4cf8ab |
|
BLAKE2b-256 | 4d4e2aac3932a59a1689dafcb6575e08e68e024caf3da7a57b28f474b7343f63 |
File details
Details for the file ada_url-1.15.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 440.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8d52db4880d274ac0936f3742685140389a2a28be932a97d9a2183efb6ecece |
|
MD5 | 196bcb953841605a5081f58a7396171c |
|
BLAKE2b-256 | d4431da07c05940ae375baa38c38716d1fe3d2512f152e9c32b6148bb6aeb6f3 |
File details
Details for the file ada_url-1.15.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 404.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b14d002085e6ede41571373b23bca367f89c6e97542be73053b0d8ddbf77c80 |
|
MD5 | 93bac4023d9c998a350ddb0ebadb8461 |
|
BLAKE2b-256 | cbea737c6cc3bbbe763b395b717a0e6a5f1c5128d7e33ed50e31e9654309b465 |
File details
Details for the file ada_url-1.15.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 406.6 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9a9ebcd27c2cb59b049fd06664c98f7505b3f856c3ac7df087bc45e518f8cd6 |
|
MD5 | da8f034c3bd9e4e56b225b89dda477c4 |
|
BLAKE2b-256 | 0ee7820563728cf84b72fb42a72d860fb97b41495cb207d4d2d2240707c910f4 |
File details
Details for the file ada_url-1.15.3-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 389.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eebc0242333320602f078d7c4d4e72191180e2db2b05797c650537083beb0560 |
|
MD5 | 2169fe4a2b10c5d2101d5dd1e9f9ac19 |
|
BLAKE2b-256 | 9195901554c2489297b1059f705a1103bbe43aa432141d7a3689fe4a8b9c6689 |
File details
Details for the file ada_url-1.15.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 442.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c6bb39c48b1c1632134ed73f4eaa610aafd5d3a3a77999d07bcc338c3712c95 |
|
MD5 | 9b7c45a5168d450f79de103b792dc880 |
|
BLAKE2b-256 | f9f457bacea1a2d4490ad9a8929efc0109ce5b6813055de4215f40548cbcd980 |
File details
Details for the file ada_url-1.15.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 440.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 007bcc66296e1c3076965be77147bb9e088276665d276e4d4358d6c06771f73f |
|
MD5 | 925e52893820fddee730c3e61433d917 |
|
BLAKE2b-256 | a711080c392d3ad2e65ee95919408801f20f3445f3358424b4d38da8615c28cd |
File details
Details for the file ada_url-1.15.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 404.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 893922defdfdcbea2363ee9fea326e095ad2f95dee117841bfdf57cac4d09d84 |
|
MD5 | ce31e610f0675b6c3681fe72ae936095 |
|
BLAKE2b-256 | f2ba1d35b79b4df6d48837277e1e50c60cf17fd4ffbf691f67c63654971037c3 |
File details
Details for the file ada_url-1.15.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 406.5 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 966401b06212f4328ba9df21a96e483e3e206659762e7bdbfe482fe6342b56cd |
|
MD5 | 5ee31d035a2a9775c4bb6d4806fe3726 |
|
BLAKE2b-256 | d69431d7a7742b9fd097c7dea460693dbf029a46cc79c1f730bd195b36f51232 |
File details
Details for the file ada_url-1.15.3-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 370.3 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be5a2210110c9a7c09c063c6c46f6501a08eba1b5d1b2ed117c7fbc48e21c8aa |
|
MD5 | c56116c25dec31142966a8ab4b5dab8c |
|
BLAKE2b-256 | 80291d345ecdc87678fd624b5ea94deb4709d4acdd0486a436392c96c8ec4774 |
File details
Details for the file ada_url-1.15.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 442.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 823547085c3a84b00913a009c8688bfbce5e347284558777d8d2d1fe88708388 |
|
MD5 | 6d187401887d96e52509e0e3352d90f4 |
|
BLAKE2b-256 | ece16b909a1f6fb2d3d05b07159ad045200522cd04a9eefab78acf0e7f76adfa |
File details
Details for the file ada_url-1.15.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 440.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3906efeff1f5d34390aefcf33812fdbea4e62eeae2854358bd0b83797ae944c5 |
|
MD5 | 70081bf15b7dca23ad1f10908ce2b77e |
|
BLAKE2b-256 | b086d13ef542d4b4e258e90ce5d2e39f3054a75c5455a7585d32952457df433e |
File details
Details for the file ada_url-1.15.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 404.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63e5a8527573d2cf9c0c788cd104c6d784ee1af5ff9cbb9de67e1b4197186dfb |
|
MD5 | 1d18aa04dc514925251aa8da40c3546d |
|
BLAKE2b-256 | 3115afbf21de6f9d8560644799081ee13f61adc891446b2e7f516f49d335be48 |
File details
Details for the file ada_url-1.15.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 406.5 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0260dd4f1df3b33193699939b925547dc551e81348a53a65b911a50a9d5f1473 |
|
MD5 | 756ec1f458dcce5538266f624ca2e619 |
|
BLAKE2b-256 | d17432b8a1ca0d36f4ead6f21e1f842de794d2f927617e63e11be74b23616148 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 380.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d2efe08608f2f1be01ac33922edea808083dad01b4512a661895028a25fb0ed |
|
MD5 | d66563b717f63d1d056c08283441be3c |
|
BLAKE2b-256 | 43b339b09954cd0c08c152765aeb68532ceeaaec91c906ea9f60f4f60a761e87 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddc159a70eacb54afb1ed3590ae79c29e19c0b4031c5bdc915d47b6c40222c45 |
|
MD5 | 7bcca4e2a9f5622a390dac187ebd381f |
|
BLAKE2b-256 | c32999a6bdb96d4e1a1682036f2a91f8c0d8b12c224e8c9acd8bdaddef7d1a58 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f87a642809852cf686caaf9c2ae0ee1e2d2e89449683a92a433a8e81ab3e13a |
|
MD5 | 9e5fd3ae2fe47d4ed37bcc270e42b697 |
|
BLAKE2b-256 | 272e75ecb0f6547807d59fb5e87090647a7075fd4d132381ec772520fb16ca37 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c253ac0c82680e2aaef793acba35d10170474dbd02bd3db8a46375801e4a8ab2 |
|
MD5 | 9fac1c0e89d13ad2f1cfec29026494e0 |
|
BLAKE2b-256 | 5e2ca9bfa3e22190a228f7de770a179f37e7cd24a5309f3087bdd389cba3ef0e |
File details
Details for the file ada_url-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 580e64e0e29cbcd55f95896037472028765f28cf7d1f43a27d5f670d98a3e299 |
|
MD5 | 99b4c8dcd3d1ed82c461c1145c544478 |
|
BLAKE2b-256 | 7db8178589103aa9f66a2945cca918c57ea118c6d4b8a2fc36d0f42b951754dd |
File details
Details for the file ada_url-1.15.3-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 421.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abd9ba0783eef17a94d119a64d8efb1ee73b0bd328f521caa9919924c61da409 |
|
MD5 | a9aed19cc5fa52e78b5ad8424548ef69 |
|
BLAKE2b-256 | ab50d440ad6bc4c2ee67d8f997af2a4aeeeadb0d355a271163cb79b66c0b6a41 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-macosx_10_15_x86_64.whl
- Upload date:
- Size: 428.5 kB
- Tags: CPython 3.12, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f70bc89bfbfbcc51cc1ee8cb9cab12663945acac28a724b1eb64eb2830f9f0f2 |
|
MD5 | d30078075c1703d4987905dd55c24f52 |
|
BLAKE2b-256 | 585d26b56472053ef01a5924e63d622b015fb2a03e965e4a2338807b957eca40 |
File details
Details for the file ada_url-1.15.3-cp312-cp312-macosx_10_15_universal2.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp312-cp312-macosx_10_15_universal2.whl
- Upload date:
- Size: 634.6 kB
- Tags: CPython 3.12, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82797ae677e3ed5399c209932d05db32615118d550cb77c184c6a98f80a4a42d |
|
MD5 | 0e7e46ad37b84161f58f5c7fd454aace |
|
BLAKE2b-256 | f85671dfaf58fba3850f41606b6e662510e1eaf8632946d17b9d60155e0859e2 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 380.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e97d15973e1a5d952a3177669e320756b3b8eb6bd4d9eff48f5077710e575156 |
|
MD5 | 666e5b5442136b161731ef4f94ce1e42 |
|
BLAKE2b-256 | e9ffb60d8f71ed4211bacad27308029b546b35114b3c60075eebd1af73dce000 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a48193a753e24d130e6a731aae95f3fca32535bfd3db7c295f7040f60d777e2 |
|
MD5 | 2fdb2bbeeea462c0020c4b7eedf05b4b |
|
BLAKE2b-256 | 92b6b53598c4a33f1c8e20ebf6d1e9327d5a132c808d86a119b327940ef7ca74 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb25a889c47938dbdbd28377e61a0c785292e1bb8808e82bb1591b7c9a327451 |
|
MD5 | 9c1eb4bb8cac64e004271734530af467 |
|
BLAKE2b-256 | 39b259d24f85c5ae1aa5c1323ef949771b08c0441d9a08b7f717cd9359bd2f47 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84d6dda6442c43cda776031874c28c4b83658688665ed1b13deee9a433271bb7 |
|
MD5 | 98f7df6c838d6d21aa72412c22e82ab2 |
|
BLAKE2b-256 | 29c5ad863e0481286db1b1b3569137a6608d1538a02dd215ad8ea277e36c7477 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 017cf3a213ff274b3ab74a44834b052632f18a2e137e2d550c9b77ff0877fae6 |
|
MD5 | ccab239a47a26211a1583ec825699356 |
|
BLAKE2b-256 | b25e34d5e0d4f4c8223057ad899cbc39a8cf009dbe73a1c023480ce9fe6e161d |
File details
Details for the file ada_url-1.15.3-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 421.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89655b4174c4f730f9f43c5df871f1a74904845caec540d0419ac8520cba8073 |
|
MD5 | a8d7de734ea288db371fc6b633c21610 |
|
BLAKE2b-256 | dcf9bd71c0a8ef8747fa20c767bedaa9c17e62b984d3d16d40499eee1d596151 |
File details
Details for the file ada_url-1.15.3-cp311-cp311-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-macosx_10_15_x86_64.whl
- Upload date:
- Size: 428.4 kB
- Tags: CPython 3.11, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2137025c87c419e5360394c8150a8d1a5d3e8f0dc9e63a3a0c42bba0aa1b872f |
|
MD5 | 109aff1f98cb53f172ab4905fb72605a |
|
BLAKE2b-256 | 5237e29c0814a73dc6f5d16f163993f7b9eb2693b9db406d5dfe40631509045d |
File details
Details for the file ada_url-1.15.3-cp311-cp311-macosx_10_15_universal2.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp311-cp311-macosx_10_15_universal2.whl
- Upload date:
- Size: 634.5 kB
- Tags: CPython 3.11, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31d927fcb72ad77e7cb077e706259c20449460f6cc3fc5705dc4a13090ba49e7 |
|
MD5 | ab015bca9a4bd563da2e3365773e3136 |
|
BLAKE2b-256 | 97417fdc3f5251758ea7c76e32ced598ac3783b1f949ddd949a6cb78b46176e8 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 380.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a38f62abb9dfe7c1bf8c13c3c9d1da94412242199b767f4d7b9b1705739cad4 |
|
MD5 | fbbcebaacf8895acf5246caac76428bd |
|
BLAKE2b-256 | 9f0582194f72f1863e161fee3131c895ffa5479d68a6e99eb66aad060e203d97 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79144b5a24dfff82cec6b72995668b3d461f21a1e6ef1a57657f5470dfd2c23a |
|
MD5 | 6ce6adfc5f55d4d8025709c7714fae90 |
|
BLAKE2b-256 | bec866fbd7a7f9b36e26ff75977ee139b601a726b9ad05cc7298453dab40f42e |
File details
Details for the file ada_url-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1cf1e261b94dafa9f9d7eb946a1d76a4d5e760422988236ef9d583b0580e67d |
|
MD5 | c28942d412d2c7fe509dbea593f986e4 |
|
BLAKE2b-256 | 1c7d5c0d047c56c99fb4e10aad48ef9ca6fb6365b3477f463fee73b429f6dad4 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3835ebabff21bcb870bba21908e34a642bc8a4ae8a40e4a83b7343f04316b0fb |
|
MD5 | 573322ca9e67516be3267f502b3b1a94 |
|
BLAKE2b-256 | 8573ff01d61ad2c08b46e62b6f0bb8a294c0d39987912121f2e34c09f542dae1 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97e0a17dc90d2c42293a44a69308468d2b892564736cc01ef47326824cc9a708 |
|
MD5 | a7a46eca430eaea692026e9df7654c59 |
|
BLAKE2b-256 | 0c58125ac770680eb346934d1e7b6fabfad82128c0afaaf6468ca3b01bd2f0d7 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 421.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2af6a7453bfd11d7ff3fb9710447887888206e5c3a81ceb7f0f23390d48876e |
|
MD5 | bb1014ecd8ce590cb7321a37e8bd412d |
|
BLAKE2b-256 | 0e6b13128a5e30763d09693ce4450e181aa3ad86c757ad04cce7948aa7033165 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-macosx_10_15_x86_64.whl
- Upload date:
- Size: 428.4 kB
- Tags: CPython 3.10, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf0facdc4e66cadafdfb7ccb914e03aae2571dd8f70a28531a60019d8888641b |
|
MD5 | 25add76646c01c0c21dbebeff72a23d4 |
|
BLAKE2b-256 | 8a13c0670731921023044e6714a08fe8c9dd94b2bdf578b5e1f0028e3b3970f3 |
File details
Details for the file ada_url-1.15.3-cp310-cp310-macosx_10_15_universal2.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp310-cp310-macosx_10_15_universal2.whl
- Upload date:
- Size: 634.5 kB
- Tags: CPython 3.10, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 486ed6775faaf915efb82e4dea9224d388ca743aa572996240ffda20e19dd769 |
|
MD5 | db1fa5e30d0f8512bfae05855bce89c1 |
|
BLAKE2b-256 | 51e99e1a85f422c9f59275c089ebcd048a776fb946340516af37160ca199a200 |
File details
Details for the file ada_url-1.15.3-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 380.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0466b7ec95a43a6997184a67a0338a7177d01dade3d39426b2a810a85143f0dc |
|
MD5 | ce5ebdcf031a16998683c300291726d2 |
|
BLAKE2b-256 | e95bb72685232de0aaf5b70112d80895fa13f5f9f0085a7d3e6a6fb6d48e7b9f |
File details
Details for the file ada_url-1.15.3-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 279f64ef3821cf870667063973b0f35ed6bcf9752c1e4fabeaf5d81bb6eb15fb |
|
MD5 | 464d304d4d19e559911ab729c64b9d1b |
|
BLAKE2b-256 | 84ce8c675cf19af86a40466086e06b22133b99488b55c495902944b22d00615b |
File details
Details for the file ada_url-1.15.3-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe6192744b54d729034994b7e2643519c09a8b4a00f7b0e368757fb9b5aa5145 |
|
MD5 | e2c77e585a049b0b096ee9bd461f9cda |
|
BLAKE2b-256 | 4151135af08dbec08ee20ec95ae0ed7df1db38602df66b1cac013ca4ae2b9471 |
File details
Details for the file ada_url-1.15.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b5c45c9e0f04caa5b98decb64c9da9d32e26f8f3a262616ee3b78748f103fdb |
|
MD5 | 3e78fc30b1deed1d1223394306c58ac9 |
|
BLAKE2b-256 | 18c55e8f6ca7ac42490c8d20ac6e4742765f679bc71cefe468feeac39f23be22 |
File details
Details for the file ada_url-1.15.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75166e872b1e5618d9b197baf0ebb26f3b2432cdbd186c1765126cdc92946ac4 |
|
MD5 | 6e157ca9b8d9e1d152fa714177e41a14 |
|
BLAKE2b-256 | dbd75f1c38aeedf3d95627b2e630a118b69e8d175de0f078ed3176f40bcf880d |
File details
Details for the file ada_url-1.15.3-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 421.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6731a9c7ec646b70e7c4c6b9f68a3b7d3f0f0e0e4eed600bae3f5bb976df0b4 |
|
MD5 | 2bec5aa5ba0a0b4a27385f543c7e98f8 |
|
BLAKE2b-256 | 6bc2b8509490e5db84a9be0c362d1126238fbd2fc28ff9633c8cd9950907301b |
File details
Details for the file ada_url-1.15.3-cp39-cp39-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-macosx_10_15_x86_64.whl
- Upload date:
- Size: 428.4 kB
- Tags: CPython 3.9, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 923f1f13040134a7147c5530eca6c832b6958704bf7dd0c593f7b6786bcdc535 |
|
MD5 | c354383e77eeb2ad933341a552686e21 |
|
BLAKE2b-256 | ebf4cc7c2322aae3ca7c18e0a5cc6f259cf99fe2e0a49bdc6e1aadb9611983b2 |
File details
Details for the file ada_url-1.15.3-cp39-cp39-macosx_10_15_universal2.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp39-cp39-macosx_10_15_universal2.whl
- Upload date:
- Size: 634.5 kB
- Tags: CPython 3.9, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8030483ee0f08852eeb9c7870841a0e1d0d773071fd05ff1b21d45efabba8954 |
|
MD5 | c856d131b9511f41ff8f12e06a7859a4 |
|
BLAKE2b-256 | 52bf2e31ad041a3785de848a6065ca2203e916573fe6df0ca57436d9fe32fae4 |
File details
Details for the file ada_url-1.15.3-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 380.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bebfc6d909aeb7fa8f1098924219a414c3d4d339a45b468b5b6b3b3f05f81ad8 |
|
MD5 | 43232005f43f49184edb90a010a2780e |
|
BLAKE2b-256 | d7e549301ab39bc8c8bd3f64b1f567f006038417da587809a4da62975e2d032c |
File details
Details for the file ada_url-1.15.3-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84f4ea55c937ed9d7f37986a757fba87cef80f805cd54fdc4f616dd45bd38e33 |
|
MD5 | 18ea345309c50e74e0142e934f0d0230 |
|
BLAKE2b-256 | 725c7b9e27cd98e555f55a3769477979003b157593204b3d4f9c2c734463476d |
File details
Details for the file ada_url-1.15.3-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39a51d4a881adfea6430a74e0042eb21582cfd4974883ab51980ff54c64447f7 |
|
MD5 | d5a9820fcca853efc11a9db43181ea93 |
|
BLAKE2b-256 | 72822b2b6f02ef316d35750c9c3043289ecbb15143a4ba61d3b9c724e3d41af6 |
File details
Details for the file ada_url-1.15.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d68ec1ed7e3572807b489ee6a6f3da27ad9b6c292f1a32b4ef1cc8ec7775d623 |
|
MD5 | 3c4e139e34122e2cf2cfa3ef97ed2cce |
|
BLAKE2b-256 | 813618c7474ebfd0e80579ed844ef05abf27c4d2a8d0d44b37768926119fdf7d |
File details
Details for the file ada_url-1.15.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5f9808e1f051e33f1a1adc27cf708de630cb0495178249cb3b132dfe535c569 |
|
MD5 | e74ca2e7d9e2a919a6e9f1e4872a9cb0 |
|
BLAKE2b-256 | 8fee835005989a57a27410904aefd258b51987787caef1e6a93bcba8e2152f4a |
File details
Details for the file ada_url-1.15.3-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 421.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41023e4d62d6df874b333491290b094efa7ecdbe352004ff2ecad45a8b12c743 |
|
MD5 | 2d408b575291f605da50686df0ffb504 |
|
BLAKE2b-256 | 4f30f7e20e2b5e2ddaa9ced5dc9a0ebf0eee77b311a5e56bed1c51f4c6d3d5dd |
File details
Details for the file ada_url-1.15.3-cp38-cp38-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-macosx_10_15_x86_64.whl
- Upload date:
- Size: 428.4 kB
- Tags: CPython 3.8, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc3fda231f10618b6fbc54b4f2c1485e68ec54726bddcf51c826917ca637fb34 |
|
MD5 | 1b2f7c94b0dd3765afd116c1dc800c52 |
|
BLAKE2b-256 | 19326f67001804c236f0555d6428c355f4504178f5ffa8c3c27aa96da9d5f423 |
File details
Details for the file ada_url-1.15.3-cp38-cp38-macosx_10_15_universal2.whl
.
File metadata
- Download URL: ada_url-1.15.3-cp38-cp38-macosx_10_15_universal2.whl
- Upload date:
- Size: 634.5 kB
- Tags: CPython 3.8, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc6c9108111a980f9de2878bb380efacab286cc77e1d832ddc4969554bc8231a |
|
MD5 | 078bfa6fd2ec336fe5131a592f312505 |
|
BLAKE2b-256 | c81bc1004153a185e41dc93c07aa6ec5a61c8fe11abd86f0dd9e9fdedb7ceaab |