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.

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

import urllib.parse
urlstring = "https://www.GOoglé.com/./path/../path2/"
url = urllib.parse.urlparse(urlstring)
# prints www.googlé.com
print(url.hostname)
# prints /./path/../path2/
print(url.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 is typically ~4x faster than urllib:

---------------------------------------------------------------------------------
Name (time in ms)              Min                 Max                Mean       
---------------------------------------------------------------------------------
test_can_ada_parse         54.1304 (1.0)       54.6734 (1.0)       54.3699 (1.0) 
test_ada_python_parse     107.5653 (1.99)     108.1666 (1.98)     107.7817 (1.98)
test_urllib_parse         251.5167 (4.65)     255.1327 (4.67)     253.2407 (4.66)
---------------------------------------------------------------------------------

To run the benchmarks locally, use:

pytest --runslow

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

Uploaded Source

Built Distributions

can_ada-1.3.0-pp39-pypy39_pp73-win_amd64.whl (224.7 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (315.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (337.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (277.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.3.0-pp38-pypy38_pp73-win_amd64.whl (224.7 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (316.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (337.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (277.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.3.0-pp37-pypy37_pp73-win_amd64.whl (224.6 kB view details)

Uploaded PyPy Windows x86-64

can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (338.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-pp37-pypy37_pp73-macosx_10_15_x86_64.whl (277.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

can_ada-1.3.0-cp312-cp312-win_amd64.whl (226.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

can_ada-1.3.0-cp312-cp312-win32.whl (205.0 kB view details)

Uploaded CPython 3.12 Windows x86

can_ada-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (850.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

can_ada-1.3.0-cp312-cp312-musllinux_1_1_s390x.whl (916.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl (906.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp312-cp312-musllinux_1_1_i686.whl (921.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

can_ada-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (837.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (342.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (361.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (359.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (271.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

can_ada-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl (280.9 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

can_ada-1.3.0-cp312-cp312-macosx_10_15_universal2.whl (548.3 kB view details)

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

can_ada-1.3.0-cp311-cp311-win_amd64.whl (226.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

can_ada-1.3.0-cp311-cp311-win32.whl (205.7 kB view details)

Uploaded CPython 3.11 Windows x86

can_ada-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (850.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

can_ada-1.3.0-cp311-cp311-musllinux_1_1_s390x.whl (915.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl (906.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp311-cp311-musllinux_1_1_i686.whl (922.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

can_ada-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (838.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (359.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (272.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

can_ada-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl (280.8 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

can_ada-1.3.0-cp311-cp311-macosx_10_15_universal2.whl (549.5 kB view details)

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

can_ada-1.3.0-cp310-cp310-win_amd64.whl (225.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

can_ada-1.3.0-cp310-cp310-win32.whl (204.7 kB view details)

Uploaded CPython 3.10 Windows x86

can_ada-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (849.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

can_ada-1.3.0-cp310-cp310-musllinux_1_1_s390x.whl (914.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl (905.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp310-cp310-musllinux_1_1_i686.whl (921.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

can_ada-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (837.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (358.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp310-cp310-macosx_11_0_arm64.whl (271.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

can_ada-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl (279.6 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

can_ada-1.3.0-cp310-cp310-macosx_10_15_universal2.whl (546.9 kB view details)

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

can_ada-1.3.0-cp39-cp39-win_amd64.whl (223.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

can_ada-1.3.0-cp39-cp39-win32.whl (204.9 kB view details)

Uploaded CPython 3.9 Windows x86

can_ada-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (849.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

can_ada-1.3.0-cp39-cp39-musllinux_1_1_s390x.whl (914.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl (905.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp39-cp39-musllinux_1_1_i686.whl (921.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

can_ada-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (837.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (359.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp39-cp39-macosx_11_0_arm64.whl (271.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

can_ada-1.3.0-cp39-cp39-macosx_10_15_x86_64.whl (279.8 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

can_ada-1.3.0-cp39-cp39-macosx_10_15_universal2.whl (547.2 kB view details)

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

can_ada-1.3.0-cp38-cp38-win_amd64.whl (225.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

can_ada-1.3.0-cp38-cp38-win32.whl (204.6 kB view details)

Uploaded CPython 3.8 Windows x86

can_ada-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (849.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

can_ada-1.3.0-cp38-cp38-musllinux_1_1_s390x.whl (914.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl (905.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp38-cp38-musllinux_1_1_i686.whl (920.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

can_ada-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl (837.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

can_ada-1.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (341.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (358.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp38-cp38-macosx_11_0_arm64.whl (271.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

can_ada-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl (279.4 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

can_ada-1.3.0-cp38-cp38-macosx_10_15_universal2.whl (546.7 kB view details)

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

can_ada-1.3.0-cp37-cp37m-win_amd64.whl (225.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

can_ada-1.3.0-cp37-cp37m-win32.whl (205.0 kB view details)

Uploaded CPython 3.7m Windows x86

can_ada-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl (852.4 kB view details)

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

can_ada-1.3.0-cp37-cp37m-musllinux_1_1_s390x.whl (919.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

can_ada-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (910.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

can_ada-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl (926.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

can_ada-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl (841.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

can_ada-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.5 kB view details)

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

can_ada-1.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

can_ada-1.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

can_ada-1.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (363.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

can_ada-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

can_ada-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl (278.5 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0.tar.gz
Algorithm Hash digest
SHA256 19e425e8d773c98167aaa70e2c4000861c008b6754fe921777c6471c71ee9b6f
MD5 c02c3928cba87eba30c17d7a29c48e35
BLAKE2b-256 db79f5176b17bb2833f8470ffe4ada7efa5be955fd354004ccce693fd00ac397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 02395e7157d4b77168971748b5269abba4002f6a1a2538274c9f365e3b959310
MD5 5e9a84a6536aab9dcbf9c065714c60ed
BLAKE2b-256 eb7eef83fe66f3f2bcf9a6827f7af02c6e3cee838d86226b733513682e140282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10106e84b87acefd182dda638f8f57368860e7711536743db6a6ceabae366a69
MD5 136a9cad56b641c3d2615e7e0d2fbf70
BLAKE2b-256 705ff351387566f727ea567fabe86568c3ec242d887a4ee258d8f63cb6345083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d66f4ca5a6ae5517a5d8d8eebadec0114b3700ea677cc82ed47545642a253c00
MD5 9c89b2093687a6cc22ce2600f3ec73c0
BLAKE2b-256 574009c9b41b086fdd9b25b75ce06028de4a43cd3af1476d9890cb031814632d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 058347f65a5058473fcaba5f910c5952b7560e5bbb2cc16fb7bb3adceb195c02
MD5 9327ed70e0c6ffc477dc7ee3c8e32cc1
BLAKE2b-256 4cd6e5aacc5a7a1a11485feb2283e1812dfe4e2709d07b6b17cf7133ffacd3e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9a56b4ce6c44b8bb0884b94cde8161a21bcfbb676520c6fc49d9442c78dcc1a4
MD5 5bece2301b23df078abeb81ee143e78a
BLAKE2b-256 e4a9f48d383cb1c182e53a12d0801424755a260267233808d381c2581ba851e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43f11654c3d202803fd649f8bdfc9b16ffd909cc477628a5493ed221300f2af3
MD5 e54c06236fc2340047c9c35991813020
BLAKE2b-256 aa9a1b4382817ff3d8ed633a2eea69bcd7dd90d5afdcdbb09f8b04b73495887c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9606b951966706421cfb9c3d3fab8ddfafdca27eb5c0a552ad8f9692e836198
MD5 5477a01a00d8b7251a5308c96c3852fa
BLAKE2b-256 5d06250e1736bdabf6169173b81aeff6bf5a13e52d509e08729c5a03c3195e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b32263b7f0e454e57ef80af6c629559733da346461395be53e753999bdf546fd
MD5 2cb08316883f0523d789a80027cdcd6d
BLAKE2b-256 ee5693d753a6c45d350aaca77860effe45aef4255633e20fda43a31952b9604b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0482d6c05b5adfaaa6cdae0fed9f508f82603d3df463b13c15021318b6d06fc
MD5 5c99d29461502d1d1efe3202765c9f30
BLAKE2b-256 d0ccbe6157f838b7732cc36d93eafcf8e5274f5cf1a20733d16e3425d492d615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b79e9df21a71cf8800769afc225a3988087574af81561997d368208a11aa518a
MD5 9eac2ba6ea6bf337a0fa1382b6e0ea27
BLAKE2b-256 c9e9fb3396bdc886e8f8ddd0dfddf775f1ff1b4da75f6dae5a1f7132498d728d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3832a29aeb0f19c9cd903668d5f68879c886f6521f9242c69f64b0184e2a22d5
MD5 2803cdce7b111bed894cf91024e638a1
BLAKE2b-256 aeb120f7ebd05a985c4a8f0afb4ed812e0ff8d2771448273594b77cc8c8d2df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9849857d61bb531c02182d9e6bb85c24a427681c11acf943a9d841e282c7449
MD5 d59c3cb31a60d1b5058d7c87404e01e6
BLAKE2b-256 9b52814bdd63c56b78d5b436d49385f9b81809f29265b85b334f515e34e59d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5d6a6f10ab03358c9bea84504904b18e042b067829735d6e179fe70678a9f83
MD5 14768b738bc303f0a466a529ebf672ac
BLAKE2b-256 3c83250f58f0526fae8e0c43ca235750a04e3b0d7bc94f7d90fbd4ef088db70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e75d28c3c4a26b083473c64b237f3e66769a5acc955d24596998d29b739326d
MD5 a7f641b411e0c8731d4c45ae1b62dc09
BLAKE2b-256 50bb7316d5238ba768b39c967ff54211d170665f014ecea137ed7b204c50e749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-pp37-pypy37_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e4266613e7dd1d504f58f75f3a8fafad68d80826da71f10bfbb5ceb56570047
MD5 bcdb6bb199f94c507aeb177d160b9208
BLAKE2b-256 3960ab1a27ea7651576ef736ac7ef64e7aa348927f5dd4bd17c2434316338709

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2b8214b2bb3cf865a7720102f4fe851b1de78198f432dec07750e6cf4ea5359
MD5 0a6dc5fd4386a5973437364a4893d228
BLAKE2b-256 8573654c770f92f463b78766c6e9fe32436b771353f9442d2fef07921e78f7f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 783635b0acf9c8e9ff68b3f7497e0439bcc20ac2c0adcc96d31b58be3b7fd479
MD5 2ddb9575352d72104c8bb5d6e549714b
BLAKE2b-256 1ef2b9161b6d9b6c20c2661140ddb7a6b46ee988e3b7849d5691c75e74e4154e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e9b98579bf7b9760e2ba5d8b47390bed280c970950477837e545c9b1a672f838
MD5 d9aea34351ac69a9c72a892fbe43779a
BLAKE2b-256 839e7be5b95af63bdf46a0609660d77cfeb1b480208ba3ad2cac1187631eb1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b6b22e155d324c6be8570d33ce4283c60da7167868648852460c438a63a62460
MD5 47ba7e9643ec61fd35c217e595362bec
BLAKE2b-256 67e89560394f5c521992cda57a181f53c13ab8388a63ac034324ae1d78065230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b0101b61306e0530f44297f33f25bc2066262be9470d72ad3bbed4eaf036ee99
MD5 7ad603f8f66db37a920922801c2ae95b
BLAKE2b-256 7545f9f68f7f49fdd7a62093f65be286893f8a2b5fbc7c166e5e97514f8e0aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 31361260537fcf51685912118aa42b94668d3767f0f966663f392ce99ce9dad9
MD5 0c5c543d94fa103db10759c39e68648d
BLAKE2b-256 aa3c4555d20c42b98258657ad2eee86a1aed6e0e740d5842df174beb0b3c014d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 482c5768a24a543a602c12c43928af4ee62512124af19bf0f0fc69a5652c5901
MD5 d82b23278b34e68746eab550a0b57c0e
BLAKE2b-256 0e33c7de9b7d6d5e13b8da67268ea3bb03e8bde6a4355398229e1f029de4266f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6421457eac66c85013ba60ffc8d2cde688cb2e1c61711c47000a9d571b8287d0
MD5 fa967fb1bfd759cb311315c2ca4b073b
BLAKE2b-256 d68ceb4148c67d5f4d61acc5f38f7e4ff5058bf3c3d37fbdc30fd107cd224cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0345280dc48e6c92896bb98452ce22ab90fd1f32fa685f85541d94685ac4b4f0
MD5 efe159b6ed20d8956ab34750e7493f20
BLAKE2b-256 22335f8cfc67fdd07cdb37eb324fdf79684134080da29ab595eb4b4f90caff14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2eb8036d2c4d7ede3b0983e2d4278df7a09a1b8aa4d925f0a2ed02fa37ef255
MD5 93129a1bc404193208e7391c87238575
BLAKE2b-256 b1e2a2b51bc157c4f4a59f1be6c37a5ceb01dc15823707263108dfae5a5c07d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adf775e151ffda93330cfae2ccd95efaa3fb9edbdbb384e6f57f3814a11e3623
MD5 98d3815b86ea23cf23098d12a867fa1e
BLAKE2b-256 4a61d982a75f40ed0d7c8d9b1a627d12808ff1cdc622a358ad51422a67de13dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d351a1a38ff6536d7a8dea4aff1920a38833ec65acef3a164e92987b341f961e
MD5 1632138d79d4615d55ffd12b7c750534
BLAKE2b-256 df4e871423c73d893f3906a68dc64476bb8be4294e237dab5f6289252f46287e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5103e2a5c8b5c5e0192560bb54cee8edb88408459e4ec6922702618fa7debd
MD5 33996e875fd9730027d3332c71bb7d6b
BLAKE2b-256 29805b5ae3f4aadc91c956458984f2786ed89147d7af41add22b3f84a461a233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 793027815f144a5ed99ad3aa31f522314a10a338a5c63803b441beeef42e1a02
MD5 dd8bcdf7103e7171a735c3f6b90e6dfa
BLAKE2b-256 b3a623fdd526bf2aef3059ddae709f204129f68936116fb3b226bc479819502d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 51dd673127d8a56167a392daeda0e6a8dfe6325ab0be6f930ed7ce592a5e5d7e
MD5 bf6d2fa0da8871268d78c41d06f4c928
BLAKE2b-256 018cf0f84468e764ea7aee2bfd3a0309acfa1427a74615bb149a0af4f409a7b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d3ed16bdc13b7d9a4fda6d5bb3bac23979461a96973d9083c560f83aa8531a2
MD5 831f89249c97c0d16b2bd31b57ae31c1
BLAKE2b-256 f48737cafb74a72356f4455316a4686ad2162d6877834a12018d86e354b31dca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b12f3b5beea1d9f1b6264e44bb464cacaa674e9fac84ae42c0d64c806fbecc87
MD5 7f19e3924abf24f26c509eb6e3e8c7f8
BLAKE2b-256 e204709c0b81015f97615c92df3d20adc3da5d3b221d904b30f0bb6200862e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6070d618809d157fa171b4bf770b7e403c27f2a3d2d47032474c4c5837a087b2
MD5 c23e068fa2c954acd3a7ea28c81b7c45
BLAKE2b-256 f435840fb44845f81e3d93ef7c305317f9af0534163bf87761aaf1f3f433ff12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 091f520fafee82bdb04fa11bc45d8d7177deb58ec9992f9db3d6360942c2843b
MD5 6bc72ebd3ff79fb1eead5ce8d0324f03
BLAKE2b-256 2a9bf6eee512afab806b5bdeeb1929849a96fa630831a1490ee7439477f70456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a9ff2eee9cd891942f6972a8b3a22a4edc43149db51c2ed21cde41e809c15bd0
MD5 a60f8d94555f8d93258a0671ba35047a
BLAKE2b-256 6c85934fa444bd8508d575343e1a242ff446332f89dc0ceec65b6bfac490cc55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 965635c48a826fdcf823dcd975fee190814f3d4e63b1c45267444c31b339c80b
MD5 4aac49e5a19bf9f9f7e335c75dc06dc3
BLAKE2b-256 ffc47177070d63e721d7ed22bba8b89299d0e28aefe47cd911b220c4346b0604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 65b94d1df51d70d64611825cc76c08266ca08a8dcc87e043403e1ca5adedd99f
MD5 9e5880c3a4425c812dd02d38a45049c0
BLAKE2b-256 27b7c43ac8e17bb2779b726f0cace70c5bfaac9288e4ccc99eb9a5e78da4cda3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 925202ab12f066256a9f83865eee6e1c60e4270796034a396f4afddf0bc0862e
MD5 993892b6eabd86101e88eebb7b8a1b16
BLAKE2b-256 016b615a8a60768050fc69705000e0971d1ffd4a4c915f8c55d377cc5e0e14b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd77e5c26693202b44793976f46c2df32c744172370351887f22511a7758f4c3
MD5 49aebea332df292f986d58b4d28d5685
BLAKE2b-256 0e85a8d19451fdc3e354bbc927810a15a5be3b419406ea0ac4587de8d6f46598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc1eb2d6fde1b13a19df019cf64e13b3e06d7fdef04f7908048d02756c06365f
MD5 15e0695973ead7b9904af5b0b69d3145
BLAKE2b-256 e01c753bb73d1157768221e24d3d99b547cb66986adf3d0cdc9c78952a7770cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa37e9c603528bdfcc2c578d14c5772554863d08d8632b1e43de8e06ba24bc49
MD5 1fcee28a52b3eb22c777fffa8e75c8c8
BLAKE2b-256 15724cd682c133cccb7dd9b3263c82a4dde28b1a352894bda1b81d95828bfc5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db148605e364d43426b1f93b575c8df7ac0fb8717877f4d5cbc1332e8a9694da
MD5 1d38d9b0727074e1753496c9b633097d
BLAKE2b-256 4a983852acaf8151bf0c9e04c8d3a3fa42ec561891acb462c35b2612654752ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e7aeb47822a631abbb8eb67fd7040177d307b98c7cffe9061c3a0ed3d297da2
MD5 f529e587d1afc6fc1d59f66e15f9c04d
BLAKE2b-256 d2bb05759419d7f035465b5010ba6bb2b6929ea1e030de8cc303383d1a3ffb42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 904934e7b1182afda4cee9bf88443be59c51e379ae5a0001a159481f747ce017
MD5 a3aa68bce4f0f43f8e4c379dba7e6211
BLAKE2b-256 eacafba3f390c1357ac472543a4b69daf0ef0381a65d1a74efcb931c01d0b260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1e35f214dffcb7ec983776120678e55079104eceee0fc0bf778aa55530dba09f
MD5 a4b0a1ab2449caf41aa05e0c72660c12
BLAKE2b-256 df42cf1dcf4179c860c1448bbd1a4a597199f2bb3a2ebb7739209db5fb6d634e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb2d81dc8690020e259dd132df5ea5b38d215d03cf091078165d90ba04554eb8
MD5 853f74a7fa4d1fcad82810dd2c104e47
BLAKE2b-256 d7ec187374c2a5faa92ae30c9074cf40824f0d2f318d210432d9f3f39465c2ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 757f8f76ef66ab5e0f9d63a05d7238db010d0bb21a588e3c4836ab14f473dcf0
MD5 f7fd4c7ee4e92760fdd24f9b60d37ff3
BLAKE2b-256 ad139e9ae2270182d3952c1486636ebcf80ab191a8d5da7274c588ce21031904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45d5e56bfe25ad8d6407fa43b650d93dff91f9de1b9300ccc7eacb8d04ea3650
MD5 d9b896219773fb822bc19d715268166b
BLAKE2b-256 d74d1d2de9d895f8ad1ab74416173e63fd5d2ff89397a78d819e9c9e1d207793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 74cf0b0b296b23e34087763fab3eb6e562da652fc04b918df9350a1d9911e57e
MD5 7d24f6e6c534b38f62a7331eeba12629
BLAKE2b-256 ed7dac0b0f756277f6fd9a0beb82641936f07d9bb1e13ae2d511470ed7a2b3d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 48cce5130c2b7e9ab65a90d6daa8d96006218345e087a6bd5a00690fa3c7e141
MD5 229e10f19a8cc158cc10ecb138947303
BLAKE2b-256 a8bf70509e52b970ed89708968e4bbfa2cd501aef0be150e7f1391abe7284ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6cc27b767db49e51ac4365163e935e22c3bf3a02ff8555468d4833400e7e6d14
MD5 a6b4b9bd9ede6a7e56ab1af458c75bb0
BLAKE2b-256 533ac65add22072a0ec19cfd54aff0f428c637c4e90f84119d6533076c7e0dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ff9aecc5ba0016c222c1fdca7b0f9a9981899df895ad8659ca0b28facba8b40e
MD5 0e51378e1050de1fcbe6e68295ce993f
BLAKE2b-256 2ac49c9bf38b850e1525ea5e95489349e54f6951ce69f28e128403b9d8ac9f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a09bf17f8e02b4268165e6a257409d60672da3e79b392dd1d18b41e10b8fa75
MD5 2a4c54b23adafd1d61bb2dad2f3ef128
BLAKE2b-256 c5bdfc8c4e0fa2c50dfd7171c758db2750572e9fa68957a8d79f61c94acc0bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3702a54a84b6533af12c08c9226db00f120bab036a18f04198f629592f586597
MD5 887881e039de6f372ae801ece87b1c52
BLAKE2b-256 7a67dfdfd22b148508d36cef00bd34550c925793acc11dba9766bf0dc63b5e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e67969533df458b84ecefc6fd923c53132ba3d03529eb8735085a92acb9c65d2
MD5 78f3d0e3e19291ba4f0fb1fc023aeebf
BLAKE2b-256 1ebf5d9424dce3c3d9a69edff084322480f0eec33382364338b6bef3af33f41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9899b3427dd05dcbac8f2f3306a3d50c5099d1d3fb7676cccbf79852604c582
MD5 104fb350bf167b968283891823cc447c
BLAKE2b-256 e37bd3727fccab3cf5fb27bef6ef84b00a0ad2278834f358135ee14e565078a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 672364383e4733c70c0d39dfabddf54384b6e47172e64cdde9f59964b185a5fb
MD5 660da14fed198d183a7a6f28c2e99ee1
BLAKE2b-256 c4623d7b1588821ec33006c6e9f993524ddf51818a260ecfec0134505c69206c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db99ef969c3709151936736f747c56883bd4ebc6d3b0ae9cb3ce16ad6e697e1b
MD5 42bdba9ff6be7eff8d08ce3be3325a3b
BLAKE2b-256 1ae81da9991661b82e2ad8c9302da5258572ddda09d5e40e16e16056fe4762ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c4a496672a668209ed3c084d33a76d29c38465945503741e427c1b2deedde0a
MD5 a4b77573883e4b1ebfbe7482c89854ed
BLAKE2b-256 1c9c11d66e4ea780ba98157302a32538f8b33a222ad0e252550ba8fa11b2c68b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b69d03e3482d8b8465b71054c7b898206f232077550e7e7246463cac9c65eea9
MD5 d8a2cdef6af13dcedd101fb1ebd49f6a
BLAKE2b-256 8863ef745f68238c73c8ace266aa07a8d635d31ca1cb3687793e1625e414e1bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fdc909e6ad86013c39419ad4d4a1c0ee1d65d69de5442c20240e5671a1a066ff
MD5 a3704eea3cae2f96b5df4e9350b0d552
BLAKE2b-256 dd3bb7aa90ea3c044465d8988df2d57c1a8c6e721077d8b8e8c1af70be4b6860

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60db05c6c0dff9c806b393ada48d1ff4f05d3359bf1be2d5b4c72121e8e46dc7
MD5 5545acd6bf8bd1e53bae3bb70e6952d2
BLAKE2b-256 efeb84b0ea6d36798e1b66d01aab829c7c2436d1f4c1cd4e005e450e2c28ceae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 40672e5e055c0457f9a978121a0d810be71622d37f077ee0b669db51188389c6
MD5 e83391888432752c67d21c27dc8b581a
BLAKE2b-256 83c52a460f623666cdba68440c8238fa2bd29eae8f901d1877e858ed787834ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 451b9818498528d1ef4d773cbb97217193d88f2d10924208c981231081774dfd
MD5 04dbf2754633e325e944085db14e4b3b
BLAKE2b-256 9e981aa4745f9f8434d87bc2393aa0919c800c7748ebd81fec7fc7394d62a360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 94ea69ff0d418e11a8d7285cdc618d2df7e402756a673ecbb48536e0cf168f22
MD5 a002e35c5d064088232a50b3235dcb34
BLAKE2b-256 08727cfd0c6e915015604109e80f178289cd7b1d22adad771ed2f17c30d4fc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3930c6dbd5bb65083a94f8cd0a0e1cd41e6ff02c97fccc0b98a9446cb414c006
MD5 dd82542b45e46f8720c76d8b3a8dcb57
BLAKE2b-256 0b4e2b0c4519414a51783e6c3f0dd9ce548df06ab70fc3c84dbad6e2907e122e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fdd47b9b0541b47da649d0ce31cb933dc67407ca36bec8d0bb38e5a6e6d0d286
MD5 50c8e5c6828b1bcd8a0c0fceb3ab8798
BLAKE2b-256 4d65ab21eeac3b7c6bb789e55ac7f36b1532d4b9931f813a8a711ceded4ed184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e57e90f9053a75fde06f7c58188c8b525283a612a2492b8a73e8ea6154ebacf
MD5 b55fe274b55a4bd6bbe4f25f2690fa26
BLAKE2b-256 beb5d69df48b57a19ba6e3abdec5077aa4a74146323605102192ffab404a8887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d6bbcc0619aaa07f3256b828079ec5060088885ac9970ce379807675390a513
MD5 cfe0f5177ecb7331deed7cb98f27fc1a
BLAKE2b-256 5f3315c12e56773ca66fb941300360526607d408400d34e59b9c064608256e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa9b0f03341e68384a503f4d6458c5bd1d9405ae2eb1060b6af30df5335f88e0
MD5 1c891c1c6b3de044bf512da6a403772c
BLAKE2b-256 87fcca31f6fd6e58b3303b2e59245bc2411b42c7f3498da09d89a93c25208c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a0feb821c0c3c464a599308962660a7a1ddbe127517f74166923ca3bf423dbd
MD5 efe14f6205bc5986bbf33c51357abaa2
BLAKE2b-256 01cdddfdbba6b3ee30a6b840e1b656b39ed2a8c893458f616f534d2c756010a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3155da978120d2b9db1d1fa464c90b1afdfe81a8b6bb0f18caf5b0d51037d174
MD5 5f0481343c9bda9d9da5e0aebca25c88
BLAKE2b-256 892ce7ddc6965c85067f57b39ead50148d52271d1cd7c597ac5d270f2f0ef5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7f104e9045f5f1bf5bc8e5850d6541f399adeb0351bf4ae84ac0d90d14c4234
MD5 e693972eafaa188e0ac8b6b262a155af
BLAKE2b-256 f2161ea192ee21ff579d61c0b0e1b517a407edb6e04877120fdbbb354d4f2a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 94457c2850116263ae06749e9fd29e348176e839f5d9321d3ea0218d5b1695ce
MD5 5e1007fdc135db93c0af9a8e86c01a71
BLAKE2b-256 d9ec914a52b462cc79bf7cf902a8b958059fb3f4f741d4334aa43aa3de35a78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 97706e23c1cad34cdb696bd31741c71adcf1cb68943e177622d8e611f6ed9b92
MD5 a36818163df288896954896c10a8db95
BLAKE2b-256 2d13608a5328dd3e2cdbea9df257f04554737c9e55ca6e7eff47552ab2d01e5b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf60083e7ab0a7b352540905f3aa6191c50bac526a162626dd6901550cf95a45
MD5 839610591b867298de37f5a85032dd90
BLAKE2b-256 e70cc46d4c405fad493f27cba319cdf33a5bc2ebf7b4ac05c8cfbc9a28775c78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0ac99f2aadc04f48747a87bfd3f8c665dd8ae425dae7ab89ddf408ae9d1fe147
MD5 950301c1f7aad07a71e011290026f256
BLAKE2b-256 0ec999fcbca48b3cad6b5f67a25d34b853103b510eb998350f083904fc7bb45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f38092a881a2527e91696bf413c173ddbb6ba352e4fd0af7a0f8ab0718322a85
MD5 00e5017b946bf8233b0974dff49276bc
BLAKE2b-256 b65cbbdc0258ad5e9a1f722c685823e90d76ee1426ae01012ec3122d5b601bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 2358a1568f871cc755e2fe03196196c27b0bcafc9ebd3c4d8476c6e1467d0498
MD5 8174fcc5660e4ad9981b3f11f4f7f800
BLAKE2b-256 8c1b3cb5c119f1675e7cd893e8ed3a75a8c064ab0a11be62ff7f247da1d2aab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0b7e9e3a60e95ac4cf547592aaf428dc4838c038b7095e8b6801c734f942239c
MD5 a127ca7ada79a8c8916bbb842c1a7e66
BLAKE2b-256 926efe724be2b30abc44e1ccc516227fdf99544cf587cfb7d19089da374a82fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 145bd5cb3024bd72381159eae574d6ee6ac1f207c602fef5d307fb743ec255fe
MD5 f77a3aba6f0b9fcbe750bad38cbd0335
BLAKE2b-256 e6be036c77d1a35dd7179cb6db579d395c35536f20023bb4558ee23be1e4970d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64b79ccb8ae5f618a24b917b563e7b11e262548687d984541de59b82ecd3d876
MD5 d5ee7a2c258eac4813fa615196e26718
BLAKE2b-256 474f96f24ff0a8e18cdde3c8fce7aa4ac92701b238ff5d14d3519f61dfe40224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5428b36bb2d86c34b16c2b2711ece5a4ee4c114d65d11b30c3396d989526de0b
MD5 b16b14e5557b90584bb7ac4708983c30
BLAKE2b-256 143cde3830ae3ca83a0fe58ebc109f7df0e3af809ad40c985d090849d9c245ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55e91d1bb1b33ab872a00a13294516375f78fbd29bbf41f57f671bc8dbc72e5b
MD5 fcda9be6610b98cfa0abfd508fb21ddc
BLAKE2b-256 7691b4a69e8d9493831cdb8ebd434fcd65046e799b227a51a7e5cb7fee8947b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e55e65370935b6c6f5992c954882bcaf901916e3986554530b2d8ebe81522d3a
MD5 d0cea0f16867ecf5a5f3fdedc32aa8f0
BLAKE2b-256 de2b1128285bda0090627f2b2af435fcb2d785dd0a55716f116567baeea60bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f3285eb1d2e2c5c81c768a3c469dd565b704f8f74199c6dbc3e3880e23ec0a3
MD5 c4bc08f5fe3dc3c182e9fdaffd0082aa
BLAKE2b-256 a15ac2435a44b23dc2f3ea329dec5b82860fec6622053e3f975db601002ca2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 064a9bc6ffb67b54a431ada55272f255b1e5b689fc8bbcfbf3cfdbeaa837829e
MD5 cd6cb641d712dbe4836472a4ee44e277
BLAKE2b-256 bd46eb45bcd038ffd84e2142c77e7132687daf93bc9cb1636bf4454621ae48c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b9973026d9289ed952042cf0ca60f73cd52e04182e681e60bd1d81a5cd426c4
MD5 e15f8874ac294a646f042541f049a6ce
BLAKE2b-256 1f7a459f67373579b6744693a652d4debaae780cd4c4e0d18182f72104bb952b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a140dc4de3a81fa084d19b641c478fea4b6a608398c170d98d1edf798e4ab395
MD5 a1116c049654705c2b1e4332e86d2c01
BLAKE2b-256 640afd9ccd44c0994a010a160705cdd4d2aa647f5f66a1e3fcd6fd4b44b575ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c44c7c7e47cf83298e9f1def7a8ca6c30a003a54325d7585fae9b8f25802acdc
MD5 2d99d3529e6787e39ee91cfccb928eee
BLAKE2b-256 daf38f86b0f21af1e7cb0404090bbc3ab0dc8a24bafed4e96ad69cfd81777c7d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b8ae9249974924cab479e895030bdd9022cfce5b9f81994bbf414f105976b428
MD5 be9a5c4e4c32a63b473913383a054b38
BLAKE2b-256 962428c8ea3982ed4ec024ce90c5a844bc45d90e51bb35c4dee4a24b2800966c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 69c67fcaf90d68748c4a0e15152d8d5451f21b04665cc1705c12df343e1dea3a
MD5 2bda3f7bf2278ad2fe2d913cd6367820
BLAKE2b-256 b0ba909012f002cde14e8cb3142d0461a3aeba9263b4245d24e036e6526fe615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04697f27717f3b727a1db3a81340e8b4c0fac3b7074073a4c89bd16114c761df
MD5 2ac7f0144d03ff58077f86b5244064ef
BLAKE2b-256 12d9354417c27a8ca5f527ea332274333121c74c77e03e1e6e5dc754b0942c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4a3243d3cf9610cafb0342f27d0cfe28b1080f842ac9e6b91ec81bf1b1247c03
MD5 e9b919c50396e28d3dbb5f03618f46d1
BLAKE2b-256 9ae246ea11e1dd31bb8c63cd474219f7dea0e02c2e2bef75250d588b6490aaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 30f1bb159647868d75158c87a61014b4faa2d596eac65c9f12c5000120279831
MD5 be291db47aa85411562c5df9b87bb608
BLAKE2b-256 cf49783e9254140585c07c943174015e5855695b42eb3a2993426beb85c86874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 aff2ccdf78d22ca78a050d093117eeb1d47cc0bd3c79401c5bfca15e26ab018a
MD5 e508acd72da8c9e96a7d6cbd44c0cf4c
BLAKE2b-256 3974f8ae6889c668144713add9ba33d481e218537fbd7f0748752a0306ea0e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e7cb8d0c99257f3892c7f76aa77d04ed93530f8b9e40a6f18c3730443b2db8ea
MD5 fb2c8d61a0b0c7b7e9d8c1c47f8ea9f5
BLAKE2b-256 71118f78af48d61ea3f02837d06778db1c8847e1f3048ec999191f7678437cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8082e617efc8ac8db9536d0098814c44e3ce73bc75e30dcead2ec153ca71b896
MD5 7befd7abd859f9229aa6b6a57ed05e8c
BLAKE2b-256 d422202b20859823e4fc3d0f38745dbf0be985bbc8ac32030b50da98eeb65974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 794bca3db96261211f193a4b80283b764d5ce9b8702e58fdf6ff30e9e444418b
MD5 49de2361c8ca7404c47733abeaf3fdd2
BLAKE2b-256 693b2748f94020be9378323d17758630f568a78de4b7f14c829fc861d5228d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa9e4991164b473d92bb51ed0ffb26bd6c3f172112e0a859d52f456032a837e7
MD5 5236c6167a3bae053ef3bc8527ee9520
BLAKE2b-256 55e053f19b463104c8c5c7f3fcb42948a7a947428b9ff3221e95fb16076fac7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5694a14860a131827c141dd01dad7b383cdfe8300974d21fcff8488e899f7124
MD5 6fd0af124f9025eae0bacfbaf6603e23
BLAKE2b-256 5d825f2b98f4a13b992292c6500e694013813192dde36c641760e079e1ed619f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cc75e2176b1b463f256d9460208ee75a67d283d9bdd535fb781b52075c002a6
MD5 13851f3e78b9c49115033e143c6ba66d
BLAKE2b-256 3170c4a56fecec4d443d70b78285c2258afe0a30d91d99a3c246d5b429f64741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8a3115b2a25f1e15650c455741ffa096436a0313e127cf3578118946179ac7a
MD5 bf9eb92c87b8ddd0db6123bcd077a234
BLAKE2b-256 5d54b7fa65509bf7b8927db3fe12362552beef0720cbf0a3ee6bce65405ccc0e

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