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

Uploaded Source

Built Distributions

cwtch-0.5.1-cp312-cp312-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

cwtch-0.5.1-cp312-cp312-win32.whl (20.8 kB view details)

Uploaded CPython 3.12 Windows x86

cwtch-0.5.1-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.5.1-cp312-cp312-musllinux_1_2_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.5.1-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.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cwtch-0.5.1-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.5.1-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl (2.4 MB view details)

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

cwtch-0.5.1-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.5.1-cp312-cp312-macosx_11_0_arm64.whl (343.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (371.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

cwtch-0.5.1-cp311-cp311-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

cwtch-0.5.1-cp311-cp311-win32.whl (20.8 kB view details)

Uploaded CPython 3.11 Windows x86

cwtch-0.5.1-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.5.1-cp311-cp311-musllinux_1_2_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

cwtch-0.5.1-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.5.1-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.5.1-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.5.1-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.5.1-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.5.1-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.5.1-cp311-cp311-macosx_11_0_arm64.whl (185.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl (196.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cwtch-0.5.1.tar.gz
  • Upload date:
  • Size: 19.8 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.5.1.tar.gz
Algorithm Hash digest
SHA256 4abae012351a05709159b10feba6786074943ac049a60305bae6fa7ceb2ffece
MD5 86a31ef9bd2de3776dcd23a0d164d000
BLAKE2b-256 37c38e484836a3294f7b0cf1d56313a443a67209428addcc824e3538944376f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.8 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.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f587a1cb30bbe6bf24b3fe9f721e81ede9fc3dc003aa1709ead245245d99a49
MD5 0f770c43fb15768393ef74eb38687286
BLAKE2b-256 afcd038d04d09cbeb2c8d81cae60227290015b0d8a25041a0140fda06cb29006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.8 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.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4f07b76fff4d80b9becfb49ba6ff21630840753ece225d1d420ac064eae91c4c
MD5 7ef7c1056797523774ddd89fc360fed8
BLAKE2b-256 600bb98d62e270cbb35d4c44a6c0f5e059539ae4665570dbf27daccef09889bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c8639d833f295acd9078586fb2d0bc163690a5543a1aa364abf116d9a2c0d63
MD5 f214d5740a3474fff6d63a50c592a266
BLAKE2b-256 73711fd6273cbbc2983972a2c65c0b0bb0f2406a1765c361a52164beb50131f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 26d8ce50e8fe376f9c08bea5ddc0c44ff7264680fa4aecc49ad6226f8fa6a177
MD5 8d7ee330a8e3e79667109aa01e59cc16
BLAKE2b-256 9667881f7e5380929e29cbcb92e9f6bb91875da983881e339e95593dc40ad040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d0331237010fd05abf28361a4f236e78f4f32102a192a2a596a1ab9cdb3565e2
MD5 02ae238f99a3b9a0afbfedcf28dc64f7
BLAKE2b-256 a00862155675dd6edbf3e8b28f147232739dc2be278e1dcac4b9ab5e48c86056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-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.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 daf6b8afc9ae7693f965941bbc5a6891dc06da4431fc9ecee55722f321a386b0
MD5 886bca0271278ffea08be72d3d5d7caa
BLAKE2b-256 4d900f5bc043cde72c2b667d876ed2722e83da728ba2f3e02f4ecbb6b3e2b6a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 653d767e715cbc50461f5fac2a8d27db458d85764b6274854a69e298cd368a9e
MD5 21e73ff277ccc56f48f628bb7e1faf38
BLAKE2b-256 1c794cce32b070ca2cc10a75e4cc8fa8c0f6c476c97b7a32f39f84ee5c04e004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf1a4bc4a8e787af24796e75c3ec8a3e685e6d1dbe074bf31000ec7f0243689d
MD5 b9a6ca05c9b8f93e15e06c1eb9492dae
BLAKE2b-256 ea0e267536a6f5e18d58df011af4f21244e43757f0ec7616d99de021bd6a59ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6cefe818426bc488daad429d5197b0d2a953601ea700c6e53326bd4d9c56994
MD5 503c27933fe20465daa89e26f1c1fedf
BLAKE2b-256 862892107685777c0d3625b24c32f0650c8cd7ec10faa2bee3ca3b74fdcfd273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbc089a2352fc19c4cdab0eebac864212ef6b1dddb0a3ab26ee775ffb5e01863
MD5 233c3543ea9b36573ea7390119005f3f
BLAKE2b-256 e0a06d935608d63b793665a329934c7f0ffb258452d8fc69fb63adee3b788047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c102a9ddbfba699ac1d1e8de6c3b734389e0cbc24aa5a757cc7e9bef515000e
MD5 8849c40b7df0b042d92e5d809a6f7b44
BLAKE2b-256 e2bae8ae29b73be01cad8e35917d696dd7d9d285cd3a2a0ab50699998bca947b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777af579d6c919fc4f6a36fd0c10abdadfff6c7a1b19e753f3e5908e64668606
MD5 a7d8d5e7e86b09155d1c0649eb7e92eb
BLAKE2b-256 bf9d627f723836498c690a246baa63e37d2797e995856161772db24b55c4e65c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea5989e0ff8fd032e8098c79d5ef237d2377d91c1965fc6a3d398ff69863d946
MD5 8ac7add0081f66b74ff0658a4e54f9bc
BLAKE2b-256 0313a0f53c7bfb80dfedc92f35d9eac1cf473bbc4d4b4ee9e0e869c17b6196c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 979bd9e5895797b70b79770c681ae2ef80239e8ac6dc754fc124cf9d6640df5d
MD5 6b10b4b929bf5ecd800449a6674e8557
BLAKE2b-256 d3a022f7fe9365dc8145d20d5ed27365e5dec589327c74fc3c30a2b6c2bfadb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.8 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.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d39287a8645ba8b4ffd3501789fd6d015aab4c1c3fc8c772bf85388e4fe0dad
MD5 c427980b3d6e57204a94bbce2b0c3193
BLAKE2b-256 44c0ff13849465594730267540f47d084e52396a0ff93a6840fd1735730efdce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.8 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.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 05a02451ba0c41630c6a11c9a4124a21b16f9c1d2658e850a75cbc46cd367a34
MD5 e173649703ee39076ab1023cb08a13dd
BLAKE2b-256 d0e8295b6cf66a51732a4a3e6c121b6a42a3987991676aefe1e12296da7fbbb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bec83a8cb832ed0d295122fa4cf9cd66e4e4a61def11de856cef477c30000a97
MD5 ae6a8f103566e2237e0962903c8d0f3f
BLAKE2b-256 dd0615ca0344703905146410c4d0eb96a816f6c203d0cc17395f27478106d539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 871a9c60ace3c86e8ca28f6ec7ecc7a7594f8e767e40e3858b218f22269e41b1
MD5 37fc196f1b97b1d27fbf394b53f6efcd
BLAKE2b-256 889e2373db9561a74ea7799bd0463580549935b2acfcc0f1047238687ad99216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64232469f985ea51adf78bdf14811dc3f95e3a9167add7622e477613e40144a6
MD5 c45a9531c744ae4a5913e0321710d708
BLAKE2b-256 d56de38d3fc1c43558d383ae612e72d0e4a3093ac21706e61e5877cb1fbc30fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.1-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.2 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.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e90f3538929915e5613db77530d38c069fc49b64e2b7bee6ca28ebe703dc7d36
MD5 cc231799256780a272f7b9dc714cec00
BLAKE2b-256 9e257585560c803773d8584f25938819ccab027a24dd2feff87ce2728d0b8f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0eae110eb8e2ef121d21060f6abf3893a2d03bb31fbc8985a83b9ff34d64f7a2
MD5 8c09ca6896198946267e74b0b86a4985
BLAKE2b-256 330ebfaaaa0b89741404f5291715f72083b9c280c616638f6557e675cc6cb391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb40c34d04d8e3399a22c1b667651c778daa87869a397f0d8a7b5dbf908a8945
MD5 54a278f234beb5e5e6af7553d798fa83
BLAKE2b-256 068d8dd2ac523fe047a4658f03166ac6c1b47a6f38f129408274ba7b2d72ca4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9ff4fac85d6ebab584d48f10316914e8b3e5713be83d5290f0a5694085c5d67
MD5 aaec15cff86908af5ef32882964872da
BLAKE2b-256 679aeaadbc445107c2336675ea04ef767cef22de8a68913311979845481efaaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ea3e4e31eb1a6bc65e52c3691cef5fd59cc0038f10bb1cefad422880858d2a1
MD5 412d1b0723b3f0a759f697d3391e4b86
BLAKE2b-256 5c576d32dccc0543ae8630b26a6a47bae61e9d3de32c5c74899460ad41de51ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f434d89ce648a03836e948c3b5bd0631779f8052ae85a9765df85c4362d190e
MD5 4f04cb1398abfdba82904920e4058bc0
BLAKE2b-256 10a82b476becca44fc26510ba005a1f4e6718db00dbd608aa0415087da9709bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e27381762e24905ba4ca67fe78d36074e37b8709a8f018dc420cafbc9682bab7
MD5 68366a041948d6ad68d02b81b9592762
BLAKE2b-256 2f8f40f497f3b66db774fed4d7136d1f25f917580404a04f50a8808b08e831fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d085db9edc57f8d5673c266409bdcbc9d59b623a776008cf6525352f5a55f41
MD5 51804039290ba3dd86e10b355a54ac8c
BLAKE2b-256 813365bc59d3d9b04b161988d48582844da04de4aa6e1d8e689a0bd061dc9187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cbfbf549677a6e8e9c276eac5f8b12bc4aae58376580985957ff48e353a5a42
MD5 314ae639536d373c5f0830b8d8f99c3c
BLAKE2b-256 6d33633e53ebda125fd9981dbb22ec86cd4432c6a59e5d2030322f8a8d3d8a2a

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