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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

can_ada-1.2.0-pp39-pypy39_pp73-win_amd64.whl (194.7 kB view details)

Uploaded PyPyWindows x86-64

can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (297.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

can_ada-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (239.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

can_ada-1.2.0-pp38-pypy38_pp73-win_amd64.whl (194.6 kB view details)

Uploaded PyPyWindows x86-64

can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (297.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

can_ada-1.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (239.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

can_ada-1.2.0-pp37-pypy37_pp73-win_amd64.whl (194.5 kB view details)

Uploaded PyPyWindows x86-64

can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (298.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

can_ada-1.2.0-pp37-pypy37_pp73-macosx_10_15_x86_64.whl (239.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

can_ada-1.2.0-cp312-cp312-win_amd64.whl (196.3 kB view details)

Uploaded CPython 3.12Windows x86-64

can_ada-1.2.0-cp312-cp312-win32.whl (183.3 kB view details)

Uploaded CPython 3.12Windows x86

can_ada-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (807.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp312-cp312-musllinux_1_1_s390x.whl (874.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ s390x

can_ada-1.2.0-cp312-cp312-musllinux_1_1_ppc64le.whl (860.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp312-cp312-musllinux_1_1_i686.whl (882.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

can_ada-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (790.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (303.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (309.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

can_ada-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (234.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

can_ada-1.2.0-cp312-cp312-macosx_10_15_x86_64.whl (241.4 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

can_ada-1.2.0-cp312-cp312-macosx_10_15_universal2.whl (473.6 kB view details)

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

can_ada-1.2.0-cp311-cp311-win_amd64.whl (196.3 kB view details)

Uploaded CPython 3.11Windows x86-64

can_ada-1.2.0-cp311-cp311-win32.whl (183.1 kB view details)

Uploaded CPython 3.11Windows x86

can_ada-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (807.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl (875.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

can_ada-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl (861.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp311-cp311-musllinux_1_1_i686.whl (884.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

can_ada-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (791.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (317.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (310.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

can_ada-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (235.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

can_ada-1.2.0-cp311-cp311-macosx_10_15_x86_64.whl (242.5 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

can_ada-1.2.0-cp311-cp311-macosx_10_15_universal2.whl (475.7 kB view details)

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

can_ada-1.2.0-cp310-cp310-win_amd64.whl (195.2 kB view details)

Uploaded CPython 3.10Windows x86-64

can_ada-1.2.0-cp310-cp310-win32.whl (182.4 kB view details)

Uploaded CPython 3.10Windows x86

can_ada-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (806.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl (874.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

can_ada-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl (860.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp310-cp310-musllinux_1_1_i686.whl (883.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

can_ada-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (790.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (302.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (308.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

can_ada-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (234.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

can_ada-1.2.0-cp310-cp310-macosx_10_15_x86_64.whl (240.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

can_ada-1.2.0-cp310-cp310-macosx_10_15_universal2.whl (472.9 kB view details)

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

can_ada-1.2.0-cp39-cp39-win_amd64.whl (194.6 kB view details)

Uploaded CPython 3.9Windows x86-64

can_ada-1.2.0-cp39-cp39-win32.whl (182.6 kB view details)

Uploaded CPython 3.9Windows x86

can_ada-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (806.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl (874.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

can_ada-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl (860.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp39-cp39-musllinux_1_1_i686.whl (883.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

can_ada-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (790.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (302.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (316.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (309.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

can_ada-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (234.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

can_ada-1.2.0-cp39-cp39-macosx_10_15_x86_64.whl (241.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

can_ada-1.2.0-cp39-cp39-macosx_10_15_universal2.whl (473.3 kB view details)

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

can_ada-1.2.0-cp38-cp38-win_amd64.whl (195.2 kB view details)

Uploaded CPython 3.8Windows x86-64

can_ada-1.2.0-cp38-cp38-win32.whl (182.5 kB view details)

Uploaded CPython 3.8Windows x86

can_ada-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (805.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl (873.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

can_ada-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl (860.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp38-cp38-musllinux_1_1_i686.whl (883.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

can_ada-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (790.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (302.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (315.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (308.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

can_ada-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (234.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

can_ada-1.2.0-cp38-cp38-macosx_10_15_x86_64.whl (240.8 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

can_ada-1.2.0-cp38-cp38-macosx_10_15_universal2.whl (472.8 kB view details)

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

can_ada-1.2.0-cp37-cp37m-win_amd64.whl (195.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

can_ada-1.2.0-cp37-cp37m-win32.whl (183.5 kB view details)

Uploaded CPython 3.7mWindows x86

can_ada-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (807.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

can_ada-1.2.0-cp37-cp37m-musllinux_1_1_s390x.whl (877.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

can_ada-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (864.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

can_ada-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl (884.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

can_ada-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl (793.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

can_ada-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

can_ada-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

can_ada-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (319.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

can_ada-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (311.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

can_ada-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (288.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

can_ada-1.2.0-cp37-cp37m-macosx_10_15_x86_64.whl (240.4 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: can_ada-1.2.0.tar.gz
  • Upload date:
  • Size: 162.0 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.2.0.tar.gz
Algorithm Hash digest
SHA256 8ed392efcf0c78f10a938bba3786ebcb7fa5445a3f7dff877610f59fbe972233
MD5 5653276d6289b1f076c03092d0a5f2c5
BLAKE2b-256 a50ca76a6484c210b9d2360fe106a7bcd4e6e6dffff9714afb1377f599b9f5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2505461d9471d1b51f058315ce82f7cfcbc79bf266ce71958199a721f38c75a9
MD5 744f671e479f0e5dcbc5eaa324ddd84e
BLAKE2b-256 7082cba7c090f70c959ca8fb7444068cd4a881e0c6bbf0409f02b2d48789de48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f01c141fd7bbb801712a258c6be02bd5cca1fc3e4c96d6855d51aef789a6b578
MD5 fcde4c1d894d48db9a22f68dc9adc24f
BLAKE2b-256 67544871505a43d31342853a491e9cb181af240ac2b29dbe8a7d0f8fe81b3bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2c6ed4db90bd9ac3f6c809ce62c61bcab6eaf68da016d272c38e0061edba0af
MD5 6eff1d1004f24dd504a8f5b5f1f022b6
BLAKE2b-256 337874b4d266ed9153f1e090f601d5242ad3161cefab198e826f980902974eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9f04da72c5dd91332d8c8196b7dcbcf093a17ef93f2925553013cfb88370679
MD5 1f8eb96e3c1a7aa7a107b34dc7d24171
BLAKE2b-256 c0547daf350727120ab053c297c932bfbe02047c55ef557f7a3f00ca4cd27fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2afcbbfe8a98413e1465ecdf80dc04800b24266b0cbeb04284e03bed017bc20
MD5 f067d06a3997416d618adef3331543d9
BLAKE2b-256 d9d953640e304e55ac797ba624a1327220513a9c6d2d7dc844124ddf1b80e4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f7fb4ef970fe64f9cb9377aaff40510efecf35c900dfe2b39a0a69b405cc073f
MD5 72e521c0d9f135de7ff69ffe8cba1d7d
BLAKE2b-256 8c433b421e767ca193e52e1f4d4a0fd9643f667aedd5f23b37845a829cf20949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 873ec688131d872a414d011a2b5f48b0c0e5d177ebec8f5c83beebd2817a8018
MD5 ac71a7a65dc2decb42d0645ab1631394
BLAKE2b-256 ac098b2b3c9ae7b0bfbe732ab18d617ed96a218c97f8c10b34614ab0d17e7e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f02518bc1dd910bd487411962b0b9b8f9940eac12692aaa013982a978ec0d87
MD5 4752a90b4b83d16a69cc8490ff1062ed
BLAKE2b-256 eda028de7b4670c68d8f02444f83f18e62389ec22fbc1a0110ab203cacdf3f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef90f6bd666ee7a34f8ccc1db4f788b9eccdc52f12fcaca320b7c3b0c6eee85d
MD5 77a4544a0ecd0ef9007c5aa3feeeaabb
BLAKE2b-256 23ed3495b0f8ff930de78721dd5af421beaf73fe38cef730c5163c7c2b02cf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 756196c8ed5c0de6394cf333a48eb7698e68d3284a4de7097069d8c5879b9b81
MD5 11d0dae6e1a1a425b4da6952171998e3
BLAKE2b-256 79f0374f3e5e042f0be03986ef58a200ecb4356b6dad24866cfdabe05d91e277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f78a1bb8c1b88bf485a7f3256b64fa5c6609363e38e9c60f03cda7ca06a72862
MD5 ae8cfab09e2c7638c309d16976b602e7
BLAKE2b-256 685d72a0a0c3036a860ad33dd1269b1abfaca720975f40c565d9ba751996b52e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92566634272bcf3b167658277cbb590733fa4c6ff44d1756c782a41f3451c477
MD5 23fabf33d2e20280ab12963dece07a93
BLAKE2b-256 7c801ba0d6a41a2c019842ea6c24fa1284421c695c09c4a9ef6ac004c8a939f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e1f11893c871cc61da57d85a10adeecdb76c885600c5f910ebd98b1fc299e7d
MD5 cb87425d3c9edeb4e59064f11403d8c6
BLAKE2b-256 4f5a668f034b8a6489edeebc8bd9c28ed50079b1df8b2d7ad0be7186e2a61c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d17c42b0c66f83c2a0454823771adfd5245cd61986476e64d0e803c3271b9ae
MD5 048fa99510130cd9c427a809052e2404
BLAKE2b-256 5fea5c728ce2fe9d97f8a558bfe0da48491adbdca4e20343f37a648f66915cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-pp37-pypy37_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e032fd0f641eeb5318730b566d6990a19c8bb47533d4c2fa89626b31cac5dbc8
MD5 7e04cef6dfc566fff95940e7dd65f2a4
BLAKE2b-256 af3280b77e37579b1b8482c00fd17e62061157d106d818f9a7a0c9910778f84a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 196.3 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 49f84a770e8cc3b3ae6ee702fefdb5cec78ad253c70d380c51397c4f8a5ec52c
MD5 ff48d5b19d1769b4ac7b9a7e4ba60e44
BLAKE2b-256 45ba9cec1b126d76092fbe39f85bbe013d992eb6b42d3895a0b79a8ba7d2bc1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 183.3 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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 15712801b651294d360ae1200f230203b794cc42d40dcd6d83a54ed09ac18342
MD5 f755c6fcafcb20a249329f80d26b032c
BLAKE2b-256 3b0b744390caf3eeff50214512e722f1c9abd8f3f83171ce84c6ea938c151d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c0f034313a08024577f2932cdf34c4aaf3ceabf962cb6c18b4ac59771d0b44f
MD5 eaedf52d3d386665682b2bafff575449
BLAKE2b-256 cd806795886654860f0dcb6b3e7b0e5bedb6822712ddb2438dd5ee72322a51ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 01fcff3be9d1b41427a3e3d50731cfb21e90aeba8c73d61e9ca1f1d3d56fdeca
MD5 7b3e2205f4148c8fc721432887b69356
BLAKE2b-256 9b40fc2863caade832ad1fba9d7fffe4e354c9cd63b18e59c1973e5b9a17d40a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f54327707dca646fffa09d5cf5e8069333b8826d7704d710935772fc161b7cc1
MD5 1043464f8df177ae54da84ad99d6ebf1
BLAKE2b-256 265dc00ed1398a7dddec05d95f40d30cb111507e5a28f097d135d84eb00a8553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 63e44b32144bb88867060a00768ffb73f6e4341fa2fd86c340181e4326e1d966
MD5 0e5a7340aac69f96252f17a35f23c976
BLAKE2b-256 f761a8d1ced8e4a6e34bfb27803cf23d92f906cc2cea504d8b7e1f7731620bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 05ce58b547192397aa14f60470a069d29462aa44c20d08330a5fb93a74739447
MD5 2e46773c7d318876316cf6dbfbc93fa1
BLAKE2b-256 eb5bf7b16706d973ebfcc665f65b6d9ce86534d410a68944bfd9f423f37cd116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6992fc9c989d5ee66e8a60fb5e0949d5f2abbe509234b4ad21b77b98be44a22
MD5 f7d50924b0d598b592e6bfdecbfad7aa
BLAKE2b-256 1db5c50e9e8138a192852239b720a7ced782ef59f95a3a6e515d900bfb707c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ee37ec52e883f5aec9d3d5420f62579eacaad626372763b73f0f8dba69fecd8
MD5 dd0317f7d3afdcae99d6fbbb2efccc3f
BLAKE2b-256 135c3d513fc9ec1ff9d6de57617074df135840e29dbc08e539bc22199a037197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 810131bdbe04c4b92e3c4ca0487f3a60c4cb08dbb0209431cca21e31aa1289ce
MD5 2a63b20b21b682509ce46b73059f77cc
BLAKE2b-256 5399f6b1670f37a409c0b2a66781506211b12351e6d7f8946a7028cccc9c2423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7780a958668fe6abe36fc16d4fbde9bbebe3c3599ccdfb48f4bf10a4d149f8f
MD5 48a5aa67cc13c51845ec0041e74c1166
BLAKE2b-256 c05dadc665c930c63e828e6cd0542579410d5da4ebe8cc5029eb5d3cb673f0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 120c66c131608a3ee2bbb34b083928a4acda6b3680383ab6f8351066695ac30b
MD5 8f16721fa6145695d34191101964404c
BLAKE2b-256 4f59ff70bb4afb4a975aa8cdc18184dfd9a55812cf3e11a0385bb4ea0639aced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09d58a240bfd451285c5f4eca4e3c4cb7f193f7c9fa28f9cc81dce4652ab6ed1
MD5 d3c7cd635da644ac04227f4a28da1978
BLAKE2b-256 88b2ff062ead0329820ec69476de847bb916fe3385e6391cb34a9a9434bd97e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dd68191f741e240443b41d6dcc85ce1270377f8f5c409e35959aa6612adb171c
MD5 dc36f8766430ebc5e074ea986a3dd7e2
BLAKE2b-256 106f4d4b403e02d92bb34c7be77d6ff0ec8c2c352895d3866fd42ccaf068f5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 995fa9cfe1b32fb511993c28ddeb18738f014881f9c8a38f2950f7646193e3fe
MD5 34e56e13323366b45e794509e7f03cf9
BLAKE2b-256 9d9ff321f04fcfadc1365706ad045359d9ba80e99fce83e921fa6d43f710b3bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 196.3 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa2caad52bd45fe758928d7cc494e00bd30280f367fa52e40697a4165b0de3d6
MD5 cb205c9fb4ab224382a381dad01bd0c5
BLAKE2b-256 a2545d6a264437f5cde61df32a2c8a70ff3a9d42e2358aac82e522eff8f24acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 183.1 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d72d59b93def53bfdd6be7ad19df8ab1f3b18e475df6d4c58c930d9c203e06b
MD5 9e9e835fb7de4a20c8d415a221fa5073
BLAKE2b-256 a5aced2a171262aa1d36c038a0e84843ac79ff0ca912fd2da4c65a717fb649b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc334c1cb0ba342a76644a2d5b5fc0e684b07aed474c12335a99290e36b76bd5
MD5 d5223adbd121452ea9ef4d541e0b5520
BLAKE2b-256 b13f30bfd70b4541b507d580b4cfd03fd4441b0e8277806e971b83e2b57a1b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d12f37c6f85a6f2887d6dc6ca02cd116cc1920a6854f26917014fe55e0c8c644
MD5 f33f772d787a4eca6280a88ee70eac09
BLAKE2b-256 a7fcaa60e2762650a0901a73c2a989fd221ca1f5e98afe1ac5b5d65ec2e548f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b5b32e41f416406916543af3534ff9082acafbdd9d7fab062f14e3136cc40b97
MD5 4afcab929fd5c764df1a387f1dd800fa
BLAKE2b-256 ce01c2d7b6fe5e004ce0464c71bb63be05d0d91146f211bfe6c37545b1fba395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44691146f121d9814f5d8437c88378f414ffda36bf9f59dc5b2b9b78004b2b07
MD5 c6cfa8d248be8b8d918dc453253eae42
BLAKE2b-256 c512c2a906e9634549f4f7acaf89534e8e7731cd9531824cadc02520a0bbcab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e39b7c867fe5cf343d97b97a7d9fa2582e0f36b3b56f5f74ed4fa88f0c79883a
MD5 660f5987310565569d07e7102a6245da
BLAKE2b-256 7171c044f7559ca1e080ad17a606773991fc62a2adfd136722651e1537e3a307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c33527307c502d9fbc825080b4f2fc4ae90bb83e860e6665653f3956a785dba
MD5 f115df6c988b92179856b9557b24e466
BLAKE2b-256 5f034436c926dffc2e989a3524b8cc0c2d00c0bb2d7d08448f6736face7f691a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8a25c9f92720ef36adb870e6e6b3997ea767f64e64ad800a2fa2b4141a5f19b
MD5 1bc55b37935fb4e38798bbadadcdd7b3
BLAKE2b-256 b6b3f29dbc42b564fa97f69c943ca6f968a51209cd9493e69665f72a32388bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f69e129f019c75d2469d58eb3336e1f26fc9e9e99db4e59d20848fa289c01c68
MD5 447e31421f87eb4d3b39882d5ae06885
BLAKE2b-256 b42f364158ddf07b3ceb939c1e3b1d8279d3a7c73d75ae40243b64bd760e9db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d1055766811e6c68192b6dfa382c326688fa673f4768f784fd2768c25f077c6
MD5 22e696a5d61dd63abfe8d50f8399e6b6
BLAKE2b-256 48a8b4575e0f620133843601a3c3352d27a2fd237adb16588b25ae7c7b7c7ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4dcf2f9c6007a5c17d3a8e51fadd155ff9d86cbb1b8bd8dfcd2c58a52bb955e
MD5 38eebd41368894ea973501175000b8f7
BLAKE2b-256 1be42bad3c19acbe99f30c9f9c216f14f3d750067555a3d1a03898ece032c297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0eccf107c5e7bae28bc4c1ba0956777b9619a4c8a6425f7f2ec33b009401c72
MD5 e8086380a29f90c6efba6d777930b911
BLAKE2b-256 23216979982fc8498e7888a8873977eb955472983c7ff159d87c076d8e55fcc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1395eea7178e97e5493ea4653d39ad28e81dd5fd7c01c8e71297c0cc2470dbc9
MD5 f7cbceb5bf9e7cbf09e257c18a68de87
BLAKE2b-256 3d11d302a649bb1526c495662e7db70e91aa4f31154574960f7884691548deea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 769ace4ddc6dda1de2056048723ccee4bd05e65c62121ca513178b68a78b2d3e
MD5 c0585c99663b5b2f5c160a078a1df94c
BLAKE2b-256 3765f751913ece2cc0012e1be2562b4ca791336ac81ce03fcaad44411e8ec7b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 195.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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f0ea9fd1b7b4e95030ab803318298791e97ef2629b39e3bc70b3985faf34a885
MD5 02d40896ed1654e7445cdecb43fa64ed
BLAKE2b-256 8dc1d8722a7b6f3c15cdda840793579e8ff3021e0531f021e2d89b522f206eaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 182.4 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f5aff2753a0fdbd90a7d14c9edb4790dd2f99f1b6af8c4ec698e83c637dc8d66
MD5 f42d5bc91174939981cdae40a1f58354
BLAKE2b-256 4c4f6e45e2e28d91ba584b0928fa9be370464bc8ab0c4fa8b54455f51efdb39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7eebca01c7da65b308c825ad44956fd3971925a24ba4f93eace7e3b4ec3e6879
MD5 885c99b88a55a7105f2dfd3fc9fbec73
BLAKE2b-256 f0b8815e16fa0030903411b7cffef459af4a6014afbe0cd81bc2136e741d6a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8fdfa4e8b87ce23451226b408a1d5ea81ddf1c474eac0c081ba92805e1873ce1
MD5 eb4180c9533095a770887fe9fda4ad79
BLAKE2b-256 be664d727a2b16fd194cae6d8561385f0466e61efa42bd989c445af03f9fa28f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1279e4571383502155465aee63189fe9c3e1d382be11f406591427c3d6f6b0d4
MD5 3b989e2fa4e1179126b8bc6c833b4966
BLAKE2b-256 f2a3d69457532d3d8c7f296612635064c5ca7f67dc51a8c4d8f5e4b0189b2d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b78bf46f9b46cff52d7947de227d840a38cb6a4500b80e3afbda25919ea57c34
MD5 0ebc7ef5342d53ebe7a1c1b41a235c4e
BLAKE2b-256 4ef64c656306e6f643466fff75440ada1c6029cd822f2fa8d14fb73d35fbea5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 035ea7a8ed25f9d2be548e979117fa03713a21050da02d46a9e4fed5f108ad73
MD5 10c1ee595b92f89aa6f1599a5a92dd9d
BLAKE2b-256 dfbf5e34adcd869b2ac55b321438c16fd2eb38cce25db677a31c3b5422aa3f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c28c8a1c4d1a2d1ef3f43fd01700cbd711f4e908900fa0a2f40039a1c0da044e
MD5 bd2f80dcb67d18b01e9abbb1fe8e219e
BLAKE2b-256 e5d149076ee0ae5465fb0d41b9d374eecb9bb28c2d647b1530e3edbf03ba84e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d6a81a3fc7a7098a3fc4107fae3a0ce987a2a46501b20daa56af8392e7d1eb9
MD5 ca60755e3f5255316caf60859cae833e
BLAKE2b-256 799e7d588a403e086cd6e12e16317bb3dd8e3cbc06ddcdb63938a839bf19501b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 129dcf7fa7d7b4b552b349a2fd6ae912edcef68f3284db0d4801ed9d0ea3118b
MD5 64f12739ac33c878da9ac607a96da164
BLAKE2b-256 a688ab9daf609d4c90772c7cb11289978a81385212aacbac2f00caa6d19837e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faebc7d1b8e5b1adc5d3a87deb1bb398771b46e62c5fa3219e910b19068b15a4
MD5 8bff1322dfb13fbe9d920861359d91f5
BLAKE2b-256 ace5779600260e9fba3d7292c88c7b16b30b306167250a493ababd86a03e0618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c05ef3206e7b8eff5532d0c25b3dfb6cb0580a87ada7926eb37da1f8e7f96f8e
MD5 7d6d10c3280ad6dd27ceb58d7e071f63
BLAKE2b-256 6d1723844fde34be95a7abc5ac3da2a8ab846b86efaff376551f9d43aa0fe048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30a6876b2150b81e9fd1c48bd0bfb4c94b812e062fdb1d4f353cd28ddc7d5305
MD5 3515c7990ad00cd9e61006e482dfba95
BLAKE2b-256 4505bd1c680ba89d0ff1f3e5466a8bce89374689bcc2cc29e32f22a599ca229d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 211c77e29151ee1b6a7ea3fce7791d441dd46aa3a20e8c7bbc25eff91ab9dd07
MD5 7ced4312514ecf6b36c51bd13034a28a
BLAKE2b-256 5ad0213829826107e10e5dc3506044a8b41242f3faac8bc5f9cd1f5d13087390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 847777d1170d8559bb55d09820b2def9159f478e5000076ce6c7675f7d1bdb37
MD5 5f87662849cb9cbe4711de3235e493ae
BLAKE2b-256 b76daab8f92ab2096493bc1e195f2b17786adb11ec570d753774745137a485ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 194.6 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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 050560b3ee8483a568d27764b295108c7de84adb3569ad3f5f57f068e96cd13c
MD5 ddd1b9837cd9f91e4a82576f24655d98
BLAKE2b-256 1c8a88f99b27f0f7797340c18f597d8eabe8e51b0249fa51f14645401ec8080c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 182.6 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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9251a8877ecb22c9cc3153de3bece5101b00dc209f940a836bb51f369ef5b5b0
MD5 e2f6d9efe2e1a1812ae76ad7c3a730b6
BLAKE2b-256 29425a521de52a80c585ec563dbe5c7e9cd27e24991c6f0181ac5877d9b89423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71ef273aaf9a5f2db1448368ca37375b4b26b79a13d8bdb7796432844694958e
MD5 bf2f180507a13e5745a00118cb09019c
BLAKE2b-256 211a4f8f04814ca183a806de0215d04986980cc2a8171be4e19599e2cb3dfefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5251afea46725bcca4b78e9ab485af52fc6b82f2e4edfe97b0649f2525f8846e
MD5 597b7855a5e0d8261c9349544ae9c67c
BLAKE2b-256 7205a910ec9e4ad09b8d638b6040d25813d3b0b12cc01b0ab1379390f20bc627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 588d6fb5247e44180f0ef5112c0d1bb9135752f1e5ed85bea0584af194540991
MD5 4a4d6d2ebd36612a846c85d317356b5c
BLAKE2b-256 bba39f9cb8716b52bae75f515210d6fc9f6127d461bc4ac4e641d9a432152790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2824b5f0de65172ecce5aba91f57d477008aec6726b5f4cf1cb172b85d238623
MD5 717784302999f871561357c557e4cbee
BLAKE2b-256 59132ac01ccbd1ff69b7ca7c8bbbaa9bf2a68e4f61352a889a127aca6bae8241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb1a56133167f1256ea19f1cf5389cec0221c0d4d622a7a552b7d89aa3be83d0
MD5 540148c32158fb0991d94fe32f8dd063
BLAKE2b-256 7a89c28b18e44d7e0d1ad31fb61ee9f5e9f82b49e943a5586db0146ffecb5c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ae67f37bf8812bb81b379cb3e64172f21f189889167e850aa7c22e94977998
MD5 c4204e465e594533d0eed5c7b40531b3
BLAKE2b-256 ccd224f8601b7313f0e1ad1bd9ded4bb0d8b0b5d73a2ba6c79d9ade1a9034e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc231090ccb8645b780e72fe12a24256969badaba4f0a396d99f21e753286d31
MD5 202c524f5f55cae097441f9795054231
BLAKE2b-256 1c00645d059d730a975f6cfa2cfdcbeb971c3fe7100c513f9e408cefbe8f8d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23a993fa7ec63a971c943b68e9a7691cdebe1f810c933ed87f947d3a703d0f84
MD5 cc1058eb35c85269c98307a96b1eda99
BLAKE2b-256 efc69306f5bd17d3e64c196d01beca1b81f21d353c7395f8a6ec158f43c8bd39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a528fc7cf0bc3f3e9ec3efdee14824e63b1048a67b28bd31058e91f57c5a2fc9
MD5 cf0b821e70443a72cd38bd928d4c9652
BLAKE2b-256 fbf3620cddbde481fbb80dbfa287715f59a48dbb637a338eedeadb9c093e43de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 166d2251a51ff549101e62843acb788396c6476d5d16bea810db6dcd6623efa6
MD5 099fa35ecb1c457a4d2b3b6b8dd16a21
BLAKE2b-256 94da52c972271d4c454b85070e04d7e3de7c4233f82ef3134c0b1fe14a866c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a12e2ed3a970b4d32e64f2a7a4cbff97335edd073a890ca00f486020c89706
MD5 c985c9141013e2c72e0d4a19fa8c4760
BLAKE2b-256 83e8393ba24e4b8a68f20ebed938d815331eff8897267a5da75ef3a77bded64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36c1dfde97fb9f434a5237dcee54f577aa60b9191b77f8066684f0bcf1009b6c
MD5 277b489c03631ab07d3343f1be9f0e15
BLAKE2b-256 8143c32967c051f6fccaf2864afb84917c7ea69380a05827c8224005c73da948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c67435a94239e11d4c0213d8bf50665de18570919383eb42eb1f9b5e8ed4eecf
MD5 4643fad39c35a737f70e59b03581feb2
BLAKE2b-256 ddb98c2b9692d49f8375187106c369fcd3506b3211ad06e6779de310d60db443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 195.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.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 10f2cc4327794adb7265dff78c4e0fdac51dd587cd07b052a06d8b1cd4c709f9
MD5 a0ce4ee598f84b26cadb16dc4d5919ab
BLAKE2b-256 fed4b219aac58d187452fb82d9a5b7f2536e2ac7b1f8be48ae3d77d3198762b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 182.5 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.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 dbb74838371d80ef79eaeae767e9270c0f1eb627284d9d65ab3afb1b3ec29125
MD5 a6cdb519a1b3716b333830f2e96567c2
BLAKE2b-256 7999d6a62ddc65a975db3858bdaf76c758be688f38d3ea8a9ce9035feecfc6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aaf14115e1e19a86452b7596e5b73c480f86d1d2e61f62320b4ce2910ba37a94
MD5 7a703626982653008bc96a063bceb8e3
BLAKE2b-256 2b59860651338e4814c9460d87825567915ca9176398179fb089df40429a8ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e25203991f6c2d1aec8c351bc23f74a5614703a5ef57626d4f78c3c22eb051a9
MD5 5c01445f2b442a9cfa9dd4478e51d941
BLAKE2b-256 060c4412260aa6e6ad05c7faa2d6ef27faa671c4d07bd2d982023c2ee1262ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a59fbb34e2bc88a36ef916c1532722a938c301036f1a7e662b15782200f13f90
MD5 d3cee8d39cdd31caed44a3f63a43b3e2
BLAKE2b-256 85a00fc592e9b9343eb44dd38d3a6d3f2af60ebd6f210cb41df2acadc8212dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fb928688d501407e4fc6f62ab4db0b3f319ccb3fb668d6d489e841b588207a08
MD5 a6981727525be266454b94cff1ad07d0
BLAKE2b-256 0562e6715e8f384dee044f527ef84036f739b830f558ef79bf88ee61af1d8a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eaa95f8cde60ee410da38bd9d9c5eebe0bed2a11f36683281d3b67573a25c8b6
MD5 9c5666b2c62eff8e5ec02cbf850ae5a2
BLAKE2b-256 c89ed7b1804de32d8377a5e42e416c409e6212b79f7c11365b07120640b706c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5607d09341bcbb2b148ae2a4010eab19459e4a56e0e41838e83ec0c8eb60e72e
MD5 a6bc5706141da7d4f6157c67910ba0e0
BLAKE2b-256 2cc0150870fcb892cb17f509663e940c88fd35db772cd8f9835370c46f7454d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fafa66992dc8f01118b8926d99edcf26755e7b8f6e99865469649205a47dd5d
MD5 ce0d3d4c93db292ac02f99ce22f021ff
BLAKE2b-256 546fc0ce295031ed66d675098324aa09c0a81dbce6bb9dc11f208e692aa268ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 146857bfdc9b2fdc57b4c9826d98693bad96cc0edb0cd66b88e1983560e28ad6
MD5 f35191fab9734fd4005124fa36af66f6
BLAKE2b-256 38b8c9b80dfbdfa11228e8b4b830e3c2a34ba926588b7e8c3e0fd4924c052966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fefbcbb5aaab2ae56d14c4be4462d2e8e198f64d448b935fdfc2ed64306751c
MD5 3ae5bac00b494dcaa7990b4afaaee539
BLAKE2b-256 1c7c72681e0ddd0f85852153fdac05b3b093fa15529bba1ef013d328496f05b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5ef43f06182fe32dcddb3b5caa2981303387b452f8aef1e35da988b16777f68
MD5 17d9726f67d54b58af154043e01e95dc
BLAKE2b-256 19738f39c7dea6bb6a8c724c23681e4aeab155049890a3fa207764f05d8507a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ba0500e441e97efd20e7752ef631422f6d6d81d3bbf34febe0c3e2ee1992103
MD5 783d0820ae1a0a997619f67ce04f0d2e
BLAKE2b-256 95ad7125ac5b1828afc7425530136d6f552901a00ab1bd472ea7727090fe274d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 57b7c5a6eb84a73c1103d288b4058f356c14bd7a023e24939fdfee51ee669543
MD5 e029fc6391ef65ddaa10c6c6cdabf6f0
BLAKE2b-256 4bd56ce3b5305b66c2240029705827e6dfd94793009b3d5fb0d4086edf248fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b1fcbd64926169f397ac7d631dded53927570370c10d7544c56636e2836992b9
MD5 930576738ffe4e7c2e702aa37c3da4de
BLAKE2b-256 ee0d9730538cd3ee7f5863bf7d9b2c272d0309958d8c70286b25de6520e8622f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 195.8 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.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8928148d978bd996560739deabf4fda318b645bb8e8b1e22f9e860c2c3476d9c
MD5 5477805baa1d31cb792f563b8c696f3b
BLAKE2b-256 8f93d28a49d948ee4e8bedbd7d16c23e388ade2e02e15d6cb14c6895ea01057f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: can_ada-1.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 183.5 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.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 30810fa75d32a63237bb237dc5d0aa263ad6f1a2aac5d7dd7f095f56ae86ab5b
MD5 4696d3e882e49924798187aa4aa0a4a9
BLAKE2b-256 07bee29420cf3edba35ad93418c8ceab540a397d9b5ab6e2a8fffa0747624a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 166476380fd9ce9519ff952df46fbe79f4c25fb998de93978a7879d8b1dc7e63
MD5 f61e68e1c2c46c7bb57f25b9c35fec5b
BLAKE2b-256 3246ea2f88fb65f02b76e96dd6cd2f7a7191e3f3971ba347c641233da11ad861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 63f512e26d3715de038f1cb60916a1bc98c3e4f4552659d40c05418c1ffc445e
MD5 215a305b90724d65f3f1714396bfc5da
BLAKE2b-256 47b158c3ac9d69125c0133e56e22add5ef9cfaab32e4b17a7de2c4089e079e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e57b54be4fa4a037863d58f0019093c46eeb3a7af19dc5c9fab41ece44ba2069
MD5 b82b2405191be3df21ef477bb6555c2c
BLAKE2b-256 14b17e38c51b831d61d3793494bf0a6364e0407b2646fc8b7f62727226aeda0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 68322ae0ef63efa7fe93f57d712b9087c69c862eae5345dc61a1b0dc13dfb24b
MD5 7e3541e26fca7a9a1197912e0e5853fc
BLAKE2b-256 264482933c286ac7bbdc61263ee6d15d047ccafaaa269f9f365487848a7e2656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5c9bff860eb3d3b45058ac4cf03f374a5b2153e1f373f7cd9aedecd8b0bccc8
MD5 00aa4235dcd4c80d9a3613f711084fad
BLAKE2b-256 750a774f87501d051fc87d0ec094331c357661bafd9d8b950a0928f86f7899fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c618e0451b64a3c00fc86594c64f66fd4d5074aee6a7a458ee804258c69339ba
MD5 6879e4e29b24462245dc17422c50c86f
BLAKE2b-256 1da5e8d6af39723c29df4e2780e81ce5919e6b552badb84962f88c2aa2169458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e63e84e97dbc86b49179fa039032f243a6a15620db87db7017192f4005ce2e4
MD5 31745d59c31682e0ba0b26144bbf1a68
BLAKE2b-256 4d3bfe318a9eb68cc2c9f53b73edea7f8b2022c67b8c4c9e89d666190d2fe497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f325fac19cf833047247a6cb4ea69870bbc09e6fc907c607c4376e018c5a87e
MD5 c1facf6a4c434deaee9da14d46ccf224
BLAKE2b-256 0da40cbdda865e2de11962de24369e570012a32786b71fa66385f5d17f4b5a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a02f751a7c11a72223808274bde8116e3c22e8a1ba102c198847e032e5b30d16
MD5 310c519b3cdf60c59b391fbd5ec1e26f
BLAKE2b-256 21222b9e929d304f8f7b6fefc9018ebaed52a71fbd1c801e17c811a7c0b1340a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a149a87aeb668716e9f2470fa6b97edec17e9c7102f7cec136b6651e2e08f2a
MD5 ff79055d78930e7ffa3094ad302f89a5
BLAKE2b-256 145d742e873e8f1bab6a6a8eb561470a8a684ddb142e0c724476294840dc3ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for can_ada-1.2.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d9a14a7b9d75290a9886141ff2e121b0c8b9f90f6a5a58d005e76ff63bf0002
MD5 18ae4d02f768055cbf1ca8f507aa2273
BLAKE2b-256 4a04eeacb91bfb853a896df0932719ab453811c28d12e5e4aa24bebf85f903cc

See more details on using hashes here.

Supported by

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