Skip to main content

No project description provided

Project description

cwtch [wip] - Python dataclasses with validation and views.

Documentation

tests coverage License: MIT

In [1]: from cwtch import dataclass, field

In [2]: @dataclass
   ...: class D:
   ...:     i: int
   ...:     s: str = field(validate=False)
   ...: 

In [3]: D(i=1, s='s')
Out[3]: D(i=1, s='s')

In [4]: D(i='i', s='s')
---------------------------------------------------------------------------
...
ValidationError                           Traceback (most recent call last)
Cell In[4], line 1
----> 1 D(i='i', s='s')

File <string>:14, in __init__(__cwtch_self__, i, s, **__cwtch_kwds__)

ValidationError: type[ <class '__main__.D'> ] path[ 'i' ] value_type[ <class 'str'> ]
  type[ <class 'int'> ] value_type[ <class 'str'> ] value[ 'i' ]
    Error: invalid literal for int() with base 10: 'i'

In [5]: D(i='1', s=0)
Out[5]: D(i=1, s=0)

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

cwtch-0.3.0.tar.gz (19.2 kB view details)

Uploaded Source

Built Distributions

cwtch-0.3.0-cp312-cp312-win_amd64.whl (20.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

cwtch-0.3.0-cp312-cp312-win32.whl (20.2 kB view details)

Uploaded CPython 3.12 Windows x86

cwtch-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cwtch-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

cwtch-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

cwtch-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cwtch-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cwtch-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cwtch-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cwtch-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cwtch-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cwtch-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (341.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (369.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

cwtch-0.3.0-cp311-cp311-win_amd64.whl (20.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

cwtch-0.3.0-cp311-cp311-win32.whl (20.2 kB view details)

Uploaded CPython 3.11 Windows x86

cwtch-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cwtch-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

cwtch-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

cwtch-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

cwtch-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cwtch-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cwtch-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cwtch-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

cwtch-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cwtch-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (184.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (195.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

Details for the file cwtch-0.3.0.tar.gz.

File metadata

  • Download URL: cwtch-0.3.0.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b740c59bffd077930e821a3954f1583bb8875fb2c31be2f03da665e5f1e1e261
MD5 ef32b1ce879b6bda757fe1a6310a404e
BLAKE2b-256 cf281fb62faf3fc393c46ec79d22ad7fccb1bef2a0de7b04cacdaae272e33666

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a78d03b21ebb02810bee4772ec2b097726c80a5472362c6a45986bf0520a3aed
MD5 448222caa58bf3a73ffacf6cf13415ba
BLAKE2b-256 06211b47b75eaa2a126ec586c92142abfd50bcda6cfe05a64a9c622d2a451c82

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a2566082429d5570fe7084d47b9eb15910aac15b74025430e61effde218149c
MD5 0657508a6188a4b99c0487ec3d6673f8
BLAKE2b-256 2f06229e1f8576133c93703c5ef9b9d4e12a259617522be9fafb1480c774b281

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bea2d68c89d3e61f4aa6dd574546dfe9bfd49b0dcc9773435e17ecf2ec5fae7
MD5 5b12dfcc07090caa05475d3a91b0318d
BLAKE2b-256 e0e4b83cd3bff00f54037df2b0b5b65f025150d8715fc5aed26a3e95da826e6a

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 160b82bb2a4da5c5eff54c3e42a945eb9549f0e9e4c95a8ec06d9a70896cbe81
MD5 cccc29afc9372a6a49b4b5c5761fdf2b
BLAKE2b-256 856764bedd808016a4517233339403360ead2e29553dbce4d18f27855cc7aae0

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d0cbad15ee02f2d5ff0d5a9033b603b4970c939cf516a97546263259833409ba
MD5 aeb82bcd4d04cb1ff022adfbb9b63d25
BLAKE2b-256 b138194538d9a9d5df8c56478028580020ed407d89740f36a1677356c0c4011e

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afde35506b916b45e79a44f2fcf02d226efda6c229d88cf4ef0e962e500ce3ef
MD5 e95c5b506cc7403b5f509294c10741b8
BLAKE2b-256 6eae076c184b767185559fef7a18733d4a5a22996d4672ab63ab0066a92c4949

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da5cb675ecba3f5635e7c06eb36f21f579a1e94c495e8c3b9c55f15cfca58f90
MD5 99b49ff12b2047854e09a1dabce4c867
BLAKE2b-256 2756638e40169401d38191e2aad2f5761691f7b602b7ec1cb3a76ae4f19da7d6

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d7024888939f4264fa29ebf33e8156c4a6f454e78f7d3bc70de335706892400
MD5 0184465f11009eaaa1e67d3559c3c2b5
BLAKE2b-256 2ca051fe69d1b20d8d667fc089314a9b4ed0682a08b4e15c4ede436c235a2ba6

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af017b0137c0523a29661ba098e00b91d368e6cdbed481c14d5537dc46689fe6
MD5 85abc7c37083be2bd726a6b778898d4f
BLAKE2b-256 16194038fd6e21527406db15afc447c11a23d4f7d53606089fcd90c14c1e7e2e

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee3fba2d3b0ef89068d372f20542e8405542a54e75d75e8fe6e7006297ab563c
MD5 72a615143ae93edb745785235a930833
BLAKE2b-256 38945f8aafe2e5912204957a51522bb72015d6fd656036b2b12cb9686c161552

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4fd79fc2410eed0f0d01e4c05a6fda67756e9a317a649d067884079254530bd
MD5 85b218a4a7ba02b80a3f514bed2958d3
BLAKE2b-256 a7da360c6d9a8fdc2c469af8081162f547535795db050e2f6eb21aa2fe8a2cb1

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2a4fde9ba3a02b165883c247a7bdad50cce197e394f260df7414d086c72a72b
MD5 07b97d7108c1e12577662dcc460c0d41
BLAKE2b-256 aba62870eeda50e4ecb9cebb61ac136d7a4ea51d7161200fc8603778c56dcf61

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db2ee9df60de4c1a7071548785116121985df60b5cfe0b0a5699a69a814851aa
MD5 894edcd1eb710240e16e0584fd34606e
BLAKE2b-256 aa96933bc16843b9fc957c3042f2293d44e3f224f516df900c70dc31f5369888

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9701c8fe127731b1997c0b7e3857f15c3a1aace72d62a24079316a739ea472a3
MD5 6ba25a9c465d35a5b2ce4298558ff6f2
BLAKE2b-256 fd4eeb959aa8f9d6a6c92c4844b9de818294106edf2feb2d73e9aa4c09357a6c

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3891d7e89178b8f8bf97172af08670b29878b429070302cbe39d7552ad91441
MD5 41443930cfa8a34b7d5f819ace8fa246
BLAKE2b-256 7c5cd3aa388dcbd9bdb1d6e8193d64fd0e11b5694af71b3093ebaaffcf2585b6

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 22a7181430de7f97afe5fe325d4724790a03aa7343470563d1214c4f5278ee6e
MD5 d61da10614bbb0b719f3356579ba8ba0
BLAKE2b-256 31a19b30b4b1751eb78eef6e86d0b84aced051762b0bf32037cb98d6f2869538

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fccde4fc2f11328020c96f89c44ef8d3c6306e220176e5ccd46b7e120f35b1f7
MD5 7db021bc82de6ac48ebba6a1fe9154bf
BLAKE2b-256 f65e5b4ad993d055b3194270211a084c06d01e6f5a5f3b0c4ce3f29adf5ec0b9

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ba402a211be5e4e32a9cf43c33f537b3ad410ee143b323431855872fc3217f70
MD5 9c77c90d27be1bbfb3cf01ae10e8c226
BLAKE2b-256 b8c2a6d03babbd6e0b8b97095666c3c49c895cdaa9c9ea5180821a310d336d8a

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f15e85aa598fc81446e1b475e85aa0c483ba681f174aa13ce4e717cdb533a9b
MD5 7693b34ff6636f9d0eb9147170c51a19
BLAKE2b-256 5b3c7289beaa3942ea4be54656a81319856e2edfb82e98a8bbf696388cfb4996

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cwtch-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.11.9 Darwin/23.5.0

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0785dfd86c44e8fac362fd74189a98feb000fca4e3ed390b108a43d1bb238e3
MD5 2e79d9af527afa05d81bff9ce36ad9ca
BLAKE2b-256 17c565c8b1c545598182948f63158aa730c4f458c3e7ff797c34cff59f3f03bc

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64ea81fc06b1b725c741de4db9340ba63e1ec4685eec7d88c122a10feb9b87f0
MD5 6297ca6ebf41b29a072ea4aa9dd6c16a
BLAKE2b-256 3c80fd994cb7f331c922cbbe8b4dc7405422e7c6cb8b54fe07ad03a7126f11d3

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9672aca37b74a75b6b86f29cc165de3e41c8e4a0c5bff29e8befab0126039eee
MD5 5d476cda66e77dcdfc1f27e55a9d23a8
BLAKE2b-256 db066ba0d9d12b53dad7e65b17d8fda0ca0d261b7131d4855caf809f8ffcd668

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2bd73ce888824c776fb4007088a36620e640ed99fca160445d59afdb6ea9df8
MD5 f2c847924a84b42f5a3f13f39ca72927
BLAKE2b-256 c7744ffa2d9d680ec564c78c960f61e5cab96bdac952b6af63d5ba50c7d65fc0

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 098d9e79fca4dcad6b6d33b22f924666ff61d27ea7f47d7234400cd6e251d7e8
MD5 4b84df6fa81c2063717fa8a67e57695d
BLAKE2b-256 98b4a01e519d2dd9ccb77dea4c200bb34e19c28757132b5116fedd8908336425

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ec222f0b7fb1d4c8a337fe6f299941545debbbf0ff901fb27c063baa5ee2511
MD5 42f04ce2def4c0b837b5e1898e8903d9
BLAKE2b-256 7e044b909fbac1592e29cc9cb37c513032a3a0c216db99f90beed6bff040b04e

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573ab3a9f4248ba196da590df1158ccd8b8782f00d4220ac60f86922eeaa8a47
MD5 05577c1b2ff07f2b7621592a8ac46b87
BLAKE2b-256 fc508620e8b0dc742f730699eaa43ee0b67e453dfdecf3bcd7134d581212c3a6

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3df0d930203181b4b08d952d9eb6469aec6f0863f0fe90bbdd3de16055896265
MD5 48d7ddee7ad4829e603ad2c647db414a
BLAKE2b-256 197a1f94a85f3b72b84be300aab8e26423e2540da505216e16d71a52f869182c

See more details on using hashes here.

File details

Details for the file cwtch-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cwtch-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73bc2397d0d3d29576ae742bc98fa57c31312307f9f4a620a435846be4447047
MD5 f30ff428d51e765c3428757838c8dc07
BLAKE2b-256 3fd1fc144d124ffeaacb1179848e83f6da33a6ab8cd68ac839103bf605783ed6

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