Skip to main content

Ada is a fast spec-compliant url parser

Project description

can_ada

[Fast] Python bindings for Ada, a fast and WHATWG spec-compliant URL parser. This is the URL parser used in projects like Node.js.

Installation

pip install can_ada

Binary wheels are available for most platforms. If not available, a C++17-or-greater compiler will be required to build the underlying Ada library.

WHATWG URL compliance

Unlike the standard library's urllib.parse module, this library is compliant with the WHATWG URL specification.

urlstring = "https://www.GOoglé.com/./path/../path2/"
import can_ada
# prints www.xn--googl-fsa.com,
# the correctly parsed domain name according to WHATWG
print(can_ada.parse(urlstring).hostname)
# prints /path2/
# the correctly parsed pathname according to WHATWG
print(can_ada.parse(urlstring).pathname)
import urllib
# prints www.googlé.com
print(urllib.parse.urlparse(urlstring).hostname)
# prints /./path/../path2/
print(urllib.parse.urlparse(urlstring).path)

Usage

Parsing is simple:

from can_ada import parse

url = parse("https://tkte.ch/search?q=canada")
print(url.protocol) # https:
print(url.host) # tkte.ch
print(url.pathname) # /search
print(url.search) # ?q=canada

You can also modify URLs:

from can_ada import parse

url = parse("https://tkte.ch/search?q=canada")
url.host = "google.com"
url.search = "?q=canada&safe=off"
print(url) # https://google.com/search?q=canada&safe=off

Performance

We find that can_ada may be faster than urllib:

$ python3 -m timeit -s 'import can_ada' 'can_ada.parse("https://tkte.ch/search?q=canada")'
1000000 loops, best of 5: 378 nsec per loop

$ python3 -m timeit -s 'import urllib' 'urllib.parse.urlparse("https://tkte.ch/search?q=canada")'
500000 loops, best of 5: 491 nsec per loop

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

can_ada-1.1.1.tar.gz (160.5 kB view details)

Uploaded Source

Built Distributions

can_ada-1.1.1-pp39-pypy39_pp73-win_amd64.whl (193.0 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (294.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (235.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.1.1-pp38-pypy38_pp73-win_amd64.whl (192.7 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (294.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (235.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.1.1-pp37-pypy37_pp73-win_amd64.whl (192.6 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (295.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-pp37-pypy37_pp73-macosx_10_15_x86_64.whl (235.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.1.1-cp312-cp312-win_amd64.whl (193.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

can_ada-1.1.1-cp312-cp312-win32.whl (180.6 kB view details)

Uploaded CPython 3.12 Windows x86

can_ada-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl (803.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp312-cp312-musllinux_1_1_s390x.whl (871.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp312-cp312-musllinux_1_1_ppc64le.whl (857.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp312-cp312-musllinux_1_1_i686.whl (878.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

can_ada-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl (787.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (312.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (305.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (231.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

can_ada-1.1.1-cp312-cp312-macosx_10_15_x86_64.whl (237.9 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

can_ada-1.1.1-cp312-cp312-macosx_10_15_universal2.whl (468.0 kB view details)

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

can_ada-1.1.1-cp311-cp311-win_amd64.whl (194.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

can_ada-1.1.1-cp311-cp311-win32.whl (181.5 kB view details)

Uploaded CPython 3.11 Windows x86

can_ada-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (802.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp311-cp311-musllinux_1_1_s390x.whl (872.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl (858.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp311-cp311-musllinux_1_1_i686.whl (880.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

can_ada-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl (788.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (301.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (314.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (306.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (232.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

can_ada-1.1.1-cp311-cp311-macosx_10_15_x86_64.whl (238.6 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

can_ada-1.1.1-cp311-cp311-macosx_10_15_universal2.whl (469.7 kB view details)

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

can_ada-1.1.1-cp310-cp310-win_amd64.whl (193.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

can_ada-1.1.1-cp310-cp310-win32.whl (180.9 kB view details)

Uploaded CPython 3.10 Windows x86

can_ada-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (801.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl (871.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl (857.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp310-cp310-musllinux_1_1_i686.whl (879.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

can_ada-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl (787.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (312.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (305.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (231.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

can_ada-1.1.1-cp310-cp310-macosx_10_15_x86_64.whl (237.3 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

can_ada-1.1.1-cp310-cp310-macosx_10_15_universal2.whl (467.1 kB view details)

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

can_ada-1.1.1-cp39-cp39-win_amd64.whl (192.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

can_ada-1.1.1-cp39-cp39-win32.whl (180.9 kB view details)

Uploaded CPython 3.9 Windows x86

can_ada-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (802.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl (871.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl (857.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp39-cp39-musllinux_1_1_i686.whl (880.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

can_ada-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl (787.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (312.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (305.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (231.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

can_ada-1.1.1-cp39-cp39-macosx_10_15_x86_64.whl (237.5 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

can_ada-1.1.1-cp39-cp39-macosx_10_15_universal2.whl (467.6 kB view details)

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

can_ada-1.1.1-cp38-cp38-win_amd64.whl (193.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

can_ada-1.1.1-cp38-cp38-win32.whl (180.8 kB view details)

Uploaded CPython 3.8 Windows x86

can_ada-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (801.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl (870.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl (857.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp38-cp38-musllinux_1_1_i686.whl (879.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

can_ada-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl (787.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (299.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (312.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (305.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp38-cp38-macosx_11_0_arm64.whl (231.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

can_ada-1.1.1-cp38-cp38-macosx_10_15_x86_64.whl (237.2 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

can_ada-1.1.1-cp38-cp38-macosx_10_15_universal2.whl (466.9 kB view details)

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

can_ada-1.1.1-cp37-cp37m-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

can_ada-1.1.1-cp37-cp37m-win32.whl (181.8 kB view details)

Uploaded CPython 3.7m Windows x86

can_ada-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl (804.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

can_ada-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl (873.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

can_ada-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (860.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

can_ada-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl (880.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

can_ada-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl (790.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

can_ada-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

can_ada-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (301.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

can_ada-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

can_ada-1.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (308.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

can_ada-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

can_ada-1.1.1-cp37-cp37m-macosx_10_15_x86_64.whl (236.9 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

File details

Details for the file can_ada-1.1.1.tar.gz.

File metadata

  • Download URL: can_ada-1.1.1.tar.gz
  • Upload date:
  • Size: 160.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1.tar.gz
Algorithm Hash digest
SHA256 080521ab2b0089d5725aedc840c924a5f7247986a05d82f6903bb3dad0bcb889
MD5 55eacadd07ffc5531bb2e9accc7c9eb9
BLAKE2b-256 f16e9dab26eccfabb2735c0c7a4815177fc44b8207c92a0cff69d5ce370ef048

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9dd41ee8ad664ffba1a035ac4614099ecf8503ec7644edd52d6f15a84cc9a1c7
MD5 ed725339c556226a3e9b6558948d711a
BLAKE2b-256 64ec38a466ae40b131b6cd4abb4da368cdab8b064f1dbb5e0556ee4b3d7f33be

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 267e0936e0c37d8ac39eddfb4c5c27788c4a6d83b842f3268a7de46b199e3049
MD5 1d0cabbfdbf6d8465451aa7c92ce4ce2
BLAKE2b-256 b7f07ec969fd7f793553709d493819dc238fd73890cc15a3b6a4269bc413dbbc

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5101199f848874451ae26e78618e421c24364f692c8d4bef583a33953f45ae2
MD5 688a078ab4e81b3bde266d2402939032
BLAKE2b-256 357fcb39bddc238986af36386c4de5ad1199d71c7e41ce496557408099ac6930

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f01ce8fdc9d01b1c60d9bfca8a69b0d9cc64245f8489c4762f1adf5f6fea0e96
MD5 5d33e7961efb58cd598971290b23bbc8
BLAKE2b-256 5b89dec8449c685d0c44262ffbeb23973fe95dcc1b9ea46609cc1a8c5c998baf

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 067eb1fb36e337eb3ef3e874e0dcab6b503755374138c7edc8fdf974379f0cf7
MD5 b88712fe6715a065c6905bf549dc2245
BLAKE2b-256 31f1ace57aad33fd7c4b0e210f47131b9ffdb606f67b41c7019f43f5f07a0569

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 399041597bc603773049ffdca620740e4094dfe36449f6eac4186e2741c49fa5
MD5 fc734b4a36bd3fb9da09ca04b48997c1
BLAKE2b-256 4bb582402f9cb2da702eb787d3a059e0a90d6eb8362405a3fc46545247d9ad74

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a84a3e20f63211a66294c8a812a06f7f2ae4e8e5fde28a4b09ad1b318dc20ce3
MD5 724d3a6edbb69264ee6373e9bc5ae220
BLAKE2b-256 cf3f7179853d07f6bed3bfba14f1a7204508434ca2b03c014b4d6b68504eec48

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41cf7830a8a0cb29df2eecf40f34358ccf0d90f24b43580b12f2ffe0e71dea33
MD5 44f91053e97d3f36df28de1c8d0b3707
BLAKE2b-256 b9d24c8a88a4cdfb95ee4504e333ae9943599b53b5f2b07d44d91a9ed43b6a3a

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3717af9732ef05071026bdaebfb39ab6c6b27b9755a3040ec8d233236160c2e6
MD5 831f4445f45111ab1a291c241686d2bb
BLAKE2b-256 85e05a703121720354c0d2b33bffecde8eab2f2f52f74b4ebdf8e2f5beffdc19

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be7e5b380ace56cc30b8ab52784b7254c59dcbfeaf161f6f0c28c1e4f62c93c6
MD5 b4e147b5d645ab39f7a5d2318565bf4d
BLAKE2b-256 0665844ab169d0948c2bca13a8a64d66bb3c0ad912cb9c852f5dd1b26b8ab285

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 06eda76f9847f28f3bb8fc7c69e46b580ecba461ff7edcdded095d77265c5c11
MD5 2b1cfc14b641e65dbcea7045956f82dc
BLAKE2b-256 3fc26a08573a6a4fc2bc504a5baa7ebb33c15c41f617324e253b66e0f88128fa

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1b4cea8ee5162fba39a329037d19c27590fc22a1dc83b5d0ff960e6dfe6ef9c
MD5 f10ee182a9cec54a8c5e3b4b5017bbe4
BLAKE2b-256 c02c0aa4f56c38d199037b849a9654a4257096f26043817d400243beb7fb943b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 048dc8e4090a796f3fba5ba37e99c27c464298873797c7ed67e576c3e3754d5d
MD5 563ec94fd8263bf523e11c60c3e8436d
BLAKE2b-256 24898e49240143dd71a038ab4a554abdc93a8ad358af0159f38566f25970fb69

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a598de7be3870f0f091a2bdaec4281a76548431a217f4ee9241c344c53e99a
MD5 38a016c48b912366dc968c18579980e1
BLAKE2b-256 f8dbdef1f66f9e84d5f8cad8260b6b08e0029a01b478d4f5ed510960c7d0da18

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-pp37-pypy37_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-pp37-pypy37_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9fcb7aec36bb671527c8a814ad51b492a7210de5090b2386fe02361407b9aed9
MD5 418c4415280a2db3caebcf81de8936d3
BLAKE2b-256 646d258204f3fc622a2d1d94116bc11b02ef908a9fa73208b9c414fc61eb7c15

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 193.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1250ff1036c971261a34ea425e3242f606fcae4d7193ceb56f44201e43545e92
MD5 bf9ae98793a1038a1ce2feebc1e7422c
BLAKE2b-256 c1f3bacdec2f40103095c244326a31bb655762542290da3a6a58eaa907047b4f

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 180.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c058fe49fe4ebae4126fb19f4d5a486a307ba66b04e8f6687f785e2aa839aa62
MD5 b587a942c5f78dd8b1f2a1eb1015c1ea
BLAKE2b-256 790555378a6463640b4c9a760d44c087e52c7e950bc6ce83f6705205206a1689

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf71d2eb4b62c620393615bbaa1211a1a7c9ae45885c12db704ae70f0e681199
MD5 d4207edc227499f85164834539c5c721
BLAKE2b-256 a1640ecf740c5297696bdf816fcf8d026e7e4172e91173bd8790248fe6b11385

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1405d8a00332b392058d36b75367ccd0fa18d5d64076d4a39e955b1474620352
MD5 e398c2af59efe1d78433498bd1f55821
BLAKE2b-256 0cf3185c5a39b9b02b7cb03ef34b004362c6b6f3ac1f78134c2da03dfb009eb1

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b4de7d75d94c3080bb0cf8861b9bbd7839b70b5a1dc9a0dc5325a854637142ec
MD5 7d4be2c0b050313de18846b1a28393cf
BLAKE2b-256 8875824b695fc1ec5bc5e164f4d0a33ac6d09efa9df7a7af477ad77dc2cd5933

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f457c051f46cee2307a3c24c74a0c9a897431ed1fdfb5e106a25553f6c1192f4
MD5 eccfdc607a08fa004f49a2d22ea1b311
BLAKE2b-256 7ffa44a99a843bd86f71a041d709ff1d3daa4abcb697ab91fa5d1f5dab9a65a1

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 226f715cb45612c76536b84c9e5c4cebe58d3b21c3f7a78c9872ff67298cf0d1
MD5 39d98b74e434c756c3c7c31c940fd3e5
BLAKE2b-256 2aca401b116e57fbf79a3d16af658636bef8175d149be928b875278a91563358

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673967a7a674cd0450be82cdee7f12768767cf358409aa6e3b05cbd5aa4fafae
MD5 1ccc5bdb78388c1888ed1cbd7e151105
BLAKE2b-256 613e981136d8f2d1c9c2390a93b801c845714fc4a3e087f8478cd6d79a118b5e

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0864d00b87b8d47c7231787395b951dd957ca0d6bca58143b3c9abe34dd69247
MD5 49edbe231aa7c5326a1fec00b4d05e58
BLAKE2b-256 f3ff7ad0c6ac5e4d7c90ba0c88d1c988e38717cf82b18cf844f6566ae5451111

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4b93338ef504e3c4235b46926603e659f2f79cb35b554639fd0335cb5ea48a0
MD5 ae1f951266b7617562d80591c4343db0
BLAKE2b-256 d87507c18f44c5e8123a80222031c18544d36b542c72f411b2a1cf4eaa409260

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f58674edbe2f7ac926b99f88f214ccd1a4d4a61aecd1bcbf9bb747989e16245f
MD5 7357153cd75eaed96fa4713755fc82fe
BLAKE2b-256 16409eaf04ed57df476453fbaadf6bd6cfca704ecd7360abed88a576cf567df3

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a1ec05d95a72c1cb60419d341af342a72f84b4a00e42a6a75fee52a1b13c330
MD5 b264839a85f531047e40bdc9bb35c635
BLAKE2b-256 1e4d926ee4d7b3db2532298e5d4f3a09f872b1dee4aa6d7665799494aff83362

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5caa695e5cdad1bcf679acf1e870eadd0cbdcbed6249560d772c65d9afd9b022
MD5 0b12194a16c99d78aa05a2e6d069781b
BLAKE2b-256 d0a0e0c9575370cdb0457b525b468bad7aba7003f08408cb7700267dd0d27fd0

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e77a8d1d99d7d402ec2ebcffc224d9d1eb81b6ae6b5675bc6ff8911ac01d1a1
MD5 322974440eb6d0e3421675426a7fb527
BLAKE2b-256 0891547f6d554d7ff0ebbdee7f0c844fd4c19c10f47b2a5758e8e4a723d5f38c

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5a4a760083f62565d1667c5d5c2a5b1f2456f9c67ccc230d805d79ec338f2737
MD5 4312bf3253b896ae6cb9f0ef65cc3e98
BLAKE2b-256 89ed68b2f19741204128eda3e8672fe0a15af9f67cfc99c4559b182e30a324fb

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e7d4d74b1f022efb5e339b9431b3ee5fdd1599380b183f73fac3a63d9802d51
MD5 29e00f26fb44064c86bc5867fb857f93
BLAKE2b-256 8b15dd9494b1440fec560b4da0e29e8b3e4ccecc36e42d87ad5b35156683cfd4

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 181.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad1fe8270d095e6ee67e8334f518f12df9dcffa695281132963d4b5df4ed2d05
MD5 07fcf09ab185f9b4b2d55c58e3081c87
BLAKE2b-256 dddad412e4760cdd245ebf3c21b1cfabc2f7525e4d099137850ccb502e6602ad

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d7d72ad24310f0ce36eced181a72a36979c6d2f7d454e3c285937dfe023276a
MD5 026ce9b4887e4e86316187829a75033b
BLAKE2b-256 83e16224112ea2165b7efc0504804a1018a37e8ffeebdd19f02370e22469bc02

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0d3a858e36ecd44b6fc124baf93a907477eda55d9f035b717bae3004025b6305
MD5 11f9b1f385cbd73e51f82feddb2b12d3
BLAKE2b-256 c9f86206271b624d2078256e3b28ab86b9a918fd853c77ba9d656537cfd74202

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 80d7e3c14facddbbd5cbb3a3acc8843a549256c7a0090ccb2cd2c8b096942b91
MD5 09090058617b3aaf80db82ae7e61b62e
BLAKE2b-256 f1e9d1d8e2b57e52b572774b7ac9c721d2e47d157e644d89ab87e96b4b4869c9

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 41aa57db46ae0971cfd137110d3ab4dfe4a3c465de81b6de303beaf9c955ed2c
MD5 49d0c091e0c6bdfafa0a6b58aa42eeb4
BLAKE2b-256 20a62baa5000cd57c83ffd850910ad6bb04390b61a9c5e30e835996ea79ec469

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e621c77695515c2fcf56847cc041098dbc91b4329635e8b46d927f6cc0c1ba6a
MD5 dec88b31f19c9af41d4f2784c884a454
BLAKE2b-256 c91b82be9d6535eaf48e4eeafd690602f0ee9045816a4f4d8d73a47abaa83c4f

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cbed4b1466e47d336f97badbfd3ded7ba3346ab601ccb4ad10359005cf747e6
MD5 21a016134e83ed449e61954037c86873
BLAKE2b-256 2467e264709a9d4bb10e71dfbde2d226032499d3280c00cb2f177432c251c394

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae774d48b9ef1de459f3e99c77b7bd7a9d8f61b50ec26b175de4b3c667c44b2d
MD5 126988d3ca3e32a4a000735e67aa547c
BLAKE2b-256 f1cfb7dc493d6d6cab6d2ca414c477f655f64fbd264d0f9746b667dd05ac0e44

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 deabccf596a48f19dd0832f03be013cd46b6cbf3f89591a3ba43f1d7e3c0c3ce
MD5 29ab4b0e6487426c1d68113d4eb0a6ff
BLAKE2b-256 6bbaf78c188281ccb75944d65295a668cac5ee717cb01c3f10061a523536d4bd

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d9545fd9063106d0cd7ca7e33c657a1f5993aa159acf96e86252dccab6ef800
MD5 56512ef4dd01f159d9c7008bbc5b5be5
BLAKE2b-256 89d96a71183d3df0fa994f4e6c213889b31ef9a714a31daba6dd650fe4b3c4eb

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9d5ce3b00aaf53acdf00e2546790712b8ed685bac39cc9178f205d39669a59e
MD5 5930f75336507929702987a80fad96e3
BLAKE2b-256 f3113c0a593614ab6bdc5f29b9da2885cde26325658fe422e9adda8fb797da82

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901872b20feff7728c5d2171923f3d34ffbf05fc99267c86bc2754ef7fa21ca7
MD5 88298b9fc7359cbdba26a731db9b540c
BLAKE2b-256 a62b96586618b8ce2a32e52efd276e4dbbd8dcc0da6b2c43b218671dc85f112b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1245c34404c5c8ca51945d1391f607dcfb8a31c84f4d1f3f6bdc6b5de992ed9
MD5 452a2e8035bdeb36ee7ffd2ef38035ef
BLAKE2b-256 f97ac759e41714cedf688d2a6194558874819fb08bbf4db5fa4ba1857849145b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d0453908b9f43d63ae3bd971c5a3f16b6580ac1868229b78589f6786c6005445
MD5 511c8c5cf46d4bdb302c6ca2de7a6f8b
BLAKE2b-256 348a5ff8ddac5270ab074670a8628c3aeea719e922f8611b32ec95777704b0f3

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 193.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a7e3afa70d3660e7ef592df59b6f9c40891aa595fd3d2305dcc17424932c805
MD5 c22420530cab73e2dc4b7667f18c853e
BLAKE2b-256 478a6123a67b3fe2123334adf0d75b5b62a8f085db88ade3af75e5cd763a9a37

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 180.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 891c5221e88e30c93553730e3ef677d1bb694b905048eed936c4a3f354526aa0
MD5 e1c023359d9ca473301ff7e1d775fcb1
BLAKE2b-256 af79b0290342c549f5e443205ab2b7fa83efb2992744378af1411c881c5818e6

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed0d55762f494be62deeaf27ea69f7c2e84f0be499e77838fe076b20e958261e
MD5 383e7de9f26fc7a1913f432987720e3a
BLAKE2b-256 f4e47a936776fa57dc3c3c7c92da6fc52e40f364d1ab88b0cba5320b7f9ea561

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f00bce9104dae55db11df217606af5e6144395b0a59b7cf1c6e1af2715ca6ca3
MD5 656c70957358b17ee9f694510668f213
BLAKE2b-256 8fb8bec1fdec24e5e87cbc35fee8bd52ec3418a648aea0ccd84bc1bb5dc86080

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 781f4e4b7338a9f80c422ffe82cf4e224aa271e0ef418f4ad967e1d9d95cffe5
MD5 925bf4c0bf24c48ad1f87bf135f174ef
BLAKE2b-256 f366be7716b452ae9e13fdf12dbd9973344ca77f80f16ad2c3844ea492e91b26

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e6b0ee35cde0f67ab0872ead4951a432c31a410185f76fef0fdb40b3176197b4
MD5 1150b2988d9ca7bb2bef74ae9452062c
BLAKE2b-256 196abd3fc8721259f6d618bb06f83e81d036775eae7153c19c54112514813004

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 877ad119e61ed999e878e12055befbff65766ac80b223095a858aabfaacddeed
MD5 cf40cd82f14522b9e10c1f9042b50a0e
BLAKE2b-256 eed9d52f92bd3663beef5f43e6c2c28af5eea096fe62d3deed511e47b5604b2f

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b232149244a2b1a4399614c782d383a10b39be5ddc22e9f525f43b8d75e3a2
MD5 1bdc6fdc0d6cce2d8a3f7f242786df9c
BLAKE2b-256 63157fbea98505d96c8223fd13d1c482a28a59e95d9764a6b1ca2c88aaea6e10

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5659f0e60fcd9b6254a79f7edd9fa08d14902e732c9ea421100fc426d8c616f4
MD5 db52ac24f4d2abfc7c75ebaf1ab1998f
BLAKE2b-256 dc4277cec524a2c7a4cd5d96c665bdc0f5a8469f17d71a47587f9a4bf6f483d9

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a71afe4aba2a7703033b6574afa6a3e084c19e67ca0e363890946ae07ab2c275
MD5 7ca529768c155ac5ed941b7e4e3b1ab1
BLAKE2b-256 37ea5e144fcd8a0ff35bc998b6f286281ffa21504b118c90663366f008470e78

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86b50e5ea4d304bc2b43dd7b479740d510ba69c55cb625110710d165a52c071a
MD5 bb453db754b3b6ef216f3ef27fe34442
BLAKE2b-256 1a4d9f0186b11a25aa9b5e80c6ae337144a4985d94c39ad1ffe936fb35091502

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d3dbf264beed63e5ff699a64e5cfe8cb36c9f9843aa0db9b22f6f00088de688
MD5 81b0dbcbec9b6ffed28421600abca7d7
BLAKE2b-256 460eb049af5de14b80e82d90c051687cc638f5c98462e5f3aeaedbe36a1a76cd

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab82decc4585781d41cd97b11820c36e8dcae4feb57622ee1fddfd6b0e8c7e9b
MD5 b1d27cc8bcff2f02a56cc2a6fe1cfe00
BLAKE2b-256 be31dc7c5b578c45b4b50b5c87d7f65dab17dfbb43560028cca5e25f4fb46c1c

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b244453083c259441e1cb0cccb31650d5a3de18498847187eb2c9c4fd80b9cc7
MD5 0a795b34d6a1b8a5e00ee0c890d4c513
BLAKE2b-256 c845de8decf96d0b1c99f27c94a86c57e396c6448eb5fda55b8a5ab4dd8b98f8

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 16802dc99cd8c5394b8c7f29fabaad032e3c9c853e7c03b63dd95e422ee4878e
MD5 4253fadd7047da892ed31a9d61269c8e
BLAKE2b-256 adce04934e19f243bef81aa1cf0c26cc3e3335393c1105e9a4be0469d55a9219

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 192.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 01e635a149f4c0b6b8f956daddec326f2ab929eaa8e83aaaedd0bdf46d4f97eb
MD5 bc6efbc1d21b1388794f79d4037b6742
BLAKE2b-256 4bf6f7b8efb01e7d6ae04e0de0918e44903243a683d748fd1abe2ad4e3e9bc61

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 180.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b417933cdc3d87bc2493d79b8e5590e82cef23bae1c4826b818c970f2ffa9d44
MD5 8aaf7b4192fb177a91d154337192abbf
BLAKE2b-256 44c7760b45dcb09cbf502c7aada8258928669c29ca7822d354735e899458c733

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cdaeb939d37682fa7a795c82746c7b631e33af72e25eb7a53ae67de3130520aa
MD5 3614a63359fbb1617227870e1ee31bae
BLAKE2b-256 46f9c89342b16164be1dc3af52ab5c1e9ab1373326c560ddb66f493b66258074

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 2a6093b69b9e964fbe807c02780d81e0a6c3b8db095a773c72fed20806e41940
MD5 78281674ec8ac573f7b5392232673f56
BLAKE2b-256 ae3e9c9ca961372545bdca3ece9c423fbd4a402b115a3b343a86829cb9f47e0c

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8cbf3fdaff0d89f09f0424ab4ab1c763fa33d5a9011ee6a37594ced5f14e3fbf
MD5 0930c3bc1837b719595a41930fb31190
BLAKE2b-256 f52239d25bec4904d1c806b72a85c6f4a0c82d14826b8e5f2f663ab3792d1fca

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 895b89557c6ffbf2e7a18a10a81f84da75d1370df2d3a741815b1fde680863c4
MD5 1120ee33eb7a148dcd305c484062dee3
BLAKE2b-256 6d8d11c3ac5907bfc2ce07895438339a146291a8d3fd5498466108340bba5bcd

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e651d50391bd1c5cd92b44c55ea1a4ad47da1ddd8560822e2e0c36eb5390cf1
MD5 3430d7c43f3d0592773435f2f8baed34
BLAKE2b-256 fe0f4cbf1ed0b110b79f059eb9651b4d8b5ddc85df59ff5a692e05941661902b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0d52fe75420630f83e3d6dc9c8fdbf61a2c6c2184de9bde5e9897ec1ccdbb11
MD5 ab24404b3d68f41e4a958825b5b33431
BLAKE2b-256 b3774d7c29899c750ea0862c00d3e1ab9e7ad34dbb6e8e98b002bf07e60fd238

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e26146a18a929c9b694bde61a90b0f50e8684ce5260e0067f6b2980c31942b0e
MD5 22ba98365c7c0aeb1f2c1f65cab020b2
BLAKE2b-256 53c2d1d40124d93561e55abd1676ad0e28a10e5e999b12c672d1fa82fa8b4b4b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6574066a1752e6289816cdb96af2192b565f3689481c59f72bcc4a38f48cd84d
MD5 df26bab95989e713b84ca13ae0840eee
BLAKE2b-256 e09bab9892d953d8674c27f1bd544c6eeba03980fcf949b557293a8435d66ee1

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13c66232bb886ed75c72b41d143425fdb87c51a88b8002c2e2a501be1bd1af03
MD5 507858dc8141f86bfa63d717ea94c3c7
BLAKE2b-256 d7ef3409815b71267ef3be878b1f834e0b6362a6bbdbda51132e7f4c754066d9

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 512d13d27fc5b3524c032317fa2a8d8ed23eaebe189d2745d4d532bd3cf0c9a7
MD5 9b919a246eec6f804f4764d116417285
BLAKE2b-256 59d484e8d7d24d6270b196f375e5289255d20201d199a22d46e8e6c9a06e65b8

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35b01004273ff82656863c2694d31ea53fc31a3d069229b128123e23a4cb42e
MD5 22fc5c4af638d7412941133d6cbf48d4
BLAKE2b-256 4edf66fc0f620f661fefdc2864536c5b49353e99f65aefa64dc1dd4aff23cd9b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5cf086b19fe538fdca44df952e6fdea08944b17c7a432f1d40a9fee5d7aed0c5
MD5 3a93b8e6dafdb26dc33aaccd1fe22d92
BLAKE2b-256 61574622640f1c5c2a424d2aa1e9ca760f05bb1aa50159e69a2021ba414e583c

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 08d0552afeee77099454ae39c4825b0817234e947f70c36ef27941af506798cd
MD5 70c9b7b3ebe2f6fc924cab63ea6b69e8
BLAKE2b-256 679b25c03903d31e6eaaf89f2c2eb2a7fc85412bc4d060bc1f306dff7d9abc5c

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 193.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 473505bd775c1fb1a63c3fd8e323a18f83b6b27c1137a4e3d542a02ee3cc42b6
MD5 4eda08dde0b2425e9ee93a7ccbf468d1
BLAKE2b-256 436fece2d331ab931f07233987f222015c26587f531ec305646455febdf95bde

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 180.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8fda05ec1d71bd88926b107be376c5ca23c5412e9cc2218eaed8e72c87046563
MD5 b7d803e409228e90d7174af64dcd5634
BLAKE2b-256 2f1cf56a161f060c01b94a04a8db83d623918e20b7ce94cbf0584b89fb5e62d6

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1dce361dfe4bf6d20dd9190cffea8e3835fd39a6222285f8c7d6147ffca0b4a
MD5 b8a18ef257ba73a20b93b393a1f8ccb9
BLAKE2b-256 ea0e08b033132f81788e4460d2328b916c628593f130a375cd66e163f32d0056

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6f1b961d54954652183c946b2e8413b753f9ac66834553df4097943ac5aaf163
MD5 ed0772d22aaa58d208813ad12ebd2250
BLAKE2b-256 00246219bbcdd8bdb45fc6627a6e2b8e401b225fbe9ac3a06c1d979d74952f0a

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 93aa11c2b6416ee82f5b1c3ec69483216d5b5b68a5d42dd15fbfd297e89f6ecf
MD5 f31acbcd86e431029cd39b59bda006e3
BLAKE2b-256 b004d8762f9b0570bfe6eb3ad4f5b7d6aa35076eb6d224f345d0a7cd15d8b69b

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 02ffca0fdd975926191aab9312ccc9f3d94ced8e31257a61c4d5c9374dc5096b
MD5 77020bf0b151f4daa3b4d9c537cb4c29
BLAKE2b-256 d92a1ab3e7c2200b8d2dcc68ee98b4767cf3cf92f6f905507312446c8c70b587

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c27d6b9c76e8715a6d146f6ac6edc1b1df40905033c641009695a0683c45b566
MD5 6a24d58f2e2ba91a0f896f8cc58066cb
BLAKE2b-256 ef0bc76ba41ca958099710432846ae79d9b3203b9a5a51ffeeeebd1288d13251

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 626eaa0bbb6f72f0f75aecf6da5cee3c6689a404f4551f1197c82357ed56cdcb
MD5 015e37a6b0b4a2d15b7b8215256b56c7
BLAKE2b-256 4a2e9a1dd6d738c3de8cd02f2b9e511bcbed52a260c815a3374d49e2d31add02

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b472db1ad0a48ec02340443b5440fa8dfc90d2d1c1efaf4c4ac271820ac3bab3
MD5 258604c6a33c67ced3b21dfa92fe46fc
BLAKE2b-256 2a03d72230ef1d1783e0d97c9da8ee28e2eaf9faee844fa00add6fd1af1df744

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7f8a4a437c9467237c01ed92a6e61e147454300617d695a06438da460410f8c
MD5 914168c283d9b0918be2a5266e414ea8
BLAKE2b-256 58d4af08fb8ba8a62f4e336fd05aa1126f83719dd674160793ffe5ceb86669da

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 752f3d3f6c764a0420879d213cd09c041dc319d4c9bdc615a087db3e5ebd0540
MD5 4f20221b08620578f5cd6d9a34a6a40b
BLAKE2b-256 04c433d3cd325f1548cb54cf52dca2b14b77094aa11b938b24eed5530d59434e

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d19583bcf6b91709687b35e1e36cec31c9a3f7c93202bde209ea739a3132024
MD5 7003073fd764ed26e7ccbb6f11939e03
BLAKE2b-256 3935c4bbee493b42fc6fa4752dac31bd1534c83ed822867b53a04a2d8c9dc9cf

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7131fe87fbea7927a024c9ebea4aebb58506412c1e097eccc3510fb7ba6e10c4
MD5 b2206e7d2ee165cc7214172dc626afe4
BLAKE2b-256 49d106235760427292a5b403cb0b9f5bb220708dda28648acd13c1fe54c99b37

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7a5bcd5f016e18e779f19f0f47844ca0ca63fe006f4de78b127de0a56cdef484
MD5 e3984c691551e5a7c2dee703cc3a3360
BLAKE2b-256 8859418545ec3279b79a4b01407050b8c591afc3b518f0704f586f3cd3da6743

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6ea8d7e7a3695edd1c05f46d1f40bf034dcb3232833ceb83e3db2247d1d9536d
MD5 9bf7b71bd6616a737901c8d1900a9227
BLAKE2b-256 c1dd87bb73a3ba98441d1e7d5f78647e7d942dc732e28c7d18834ac7a07fc575

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 193.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6196be3cd214b172cce38a9356dd1e68acd3848969e3f7d8460780427fa2bc01
MD5 e8dce410d87e0808c54f99df55c925fc
BLAKE2b-256 7813024a9f59706c5badc7d181ca3ded3c964949b8b472d5b343345590074ac7

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: can_ada-1.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 181.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0786022caa5f6dc1b6369d37663c29eee8617fc9dbcb3c9fddf0baf7c339c6f4
MD5 7aa3dcfbf555a258525bd0496b081edb
BLAKE2b-256 c365bbd520dd6c2b53b3a18c499b39bf4157a9ed7c8c2dad420782a11ced5f83

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa080611e2a25360593c6b26baa088351b84b91794804db8c342b82a339a8ea9
MD5 a54d68afe2126799c53fab3daffa4ebb
BLAKE2b-256 de672f65ae86b9d3bf748481ff6e7dcbdff8777e6744cdf98d60b4a159b5f899

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c96783f324c477eef9bfe1cdb6a9afbd3f866fb89e117368710711b042ddba8c
MD5 4100fc23992d7a06aa9830032d7a36a7
BLAKE2b-256 4ca0504bdda641a82d2e1d7ee3ebe341260a2a5ed96146362ad3c29e6900fcb0

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9107a50735511da2811777bc38d41c3613c7b2e9c47d5169eb1f862fbf8e1b72
MD5 a8f220c7b5a735e1fe7b37c01890f990
BLAKE2b-256 519106ce919954ccf7789dbde96f9d08afbd6591cff9859b35c445680a82ad15

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e8b2861d0e58238b27d5edda657f6e26896ed5a58bf5c5dbf4b94b393fef71b1
MD5 4937b01812986362308874c58d092379
BLAKE2b-256 2a5197c79ae92b45bc6d7ea7f4fb621561fcb101634134474a381ec3b80063b3

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc5f39354c3c78bb8a0f4123aef9d38a213eba5da9466d072716e3397d2a422c
MD5 24f6e9b236d3fe840d355b22065a13e9
BLAKE2b-256 9b3f1479c439db32f42b099d01aa1009c929964354d811a3f029c4ca035150cc

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ec242103ad67aae90c9e5641fcc83991c07717b756e10cc137a70a885782e1e
MD5 bfc51995c50d65c6c7bbbc97e0f069d2
BLAKE2b-256 835d642db17c6fdbd46ce72a8a8f5686a9226abb7daf173ebec84d24c5d6aaf4

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2780b254c66b4b9968f77158172cf2d5af0f735a14f66bf6366436eb5b63c7bb
MD5 1802af41e5dfabb0187b1eb633036e46
BLAKE2b-256 4f06f5421e65a48a12298263cc73492d458a7c2895b7de4cb8b63d6ea6335e8f

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f151280fbbecfaaf786bfe3830432f48dfaa6833d89a4c2b25a0a8480796aa89
MD5 05457c6b77bc1ddd2ade7c5867e68987
BLAKE2b-256 0f884bfb4c48ecd1e064843786e544396e2f774bc62aedb3d0ad4d39a28da083

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c55684a0d9d772bb2863d83534d661691a3eccc71cf6d3583e7f40e05c049ead
MD5 6f350135f82a940f58621ecebd989127
BLAKE2b-256 8ee390a5cfe35cf8bb3c7b26840b175349f4a91fbc86e273c6f389833410b971

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd3c53dc5d1c79cb33fa5a3b08f4cbc41a71accd9329c6f00254e38a384ebb4d
MD5 4f52be61f90b8cc5908587dd5fab8e21
BLAKE2b-256 a12e7c33395ff9abd188d84ba5b4deb6f5ebd0d34034cbe7c5654d54c62bd3f4

See more details on using hashes here.

File details

Details for the file can_ada-1.1.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for can_ada-1.1.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f06de4687690deeb17a91b8a0944ad0ae6e48cc4829ffadff0535a7d6ee04617
MD5 a42054037bc417bb91048cdf2324772d
BLAKE2b-256 521389c24aadb626b3a633283ccd77c3bf9b2f9e9a4f0c2bfc8ebf762a755acc

See more details on using hashes here.

Supported by

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