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

Uploaded Source

Built Distributions

cwtch-0.2.1-cp312-cp312-win_amd64.whl (20.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

cwtch-0.2.1-cp312-cp312-win32.whl (20.1 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.2.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.2.1-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.2.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.2.1-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.2.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.2.1-cp312-cp312-macosx_11_0_arm64.whl (342.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (369.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

cwtch-0.2.1-cp311-cp311-win_amd64.whl (20.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

cwtch-0.2.1-cp311-cp311-win32.whl (20.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.2.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.2.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.2.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.2.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.2.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.2.1-cp311-cp311-macosx_11_0_arm64.whl (184.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.2.1-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.2.1.tar.gz.

File metadata

  • Download URL: cwtch-0.2.1.tar.gz
  • Upload date:
  • Size: 19.1 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.2.1.tar.gz
Algorithm Hash digest
SHA256 cbce36fe02cced85c3964ed60ad0c8f96ac0fb0fdfb5e3f4f73fe30f52def583
MD5 1c751b5f41afbde212c57a068aa8745f
BLAKE2b-256 8fb20caca9ee7bbd71835301c324e1defb07adae3478ab7e45a0283bc57eb1ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.1 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae63bc83266a4fb4c2af51cf623dac1fd705e18a84b4d2502c12cedfceee0051
MD5 1f9989ac5ec87cc6fc842218dc779faa
BLAKE2b-256 173395325674d36e11e46694de44707c2677d85d386fd30cc7970744074d2cb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.1 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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f5bf7d1b0a8323d3e5d4f3aec5903fb8690c9df6332fe583e3075df5d472368
MD5 f1dd62fa80d32251d7dc78f7e08356e8
BLAKE2b-256 8fed877c95b20aed054dddc113add7331a7be2f390a4a9792e96efb0d3b15e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f75a6396112615885621ca2929e2b47835802cca6c28ff00ce8dbc05d55a984
MD5 8f399546c527cda6f3083c9e84749d33
BLAKE2b-256 973137b3d384c5b6693db73776632280a3a4b9d2048b70ea22ed6a919643e319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 278935ef20b74fd85ffd6e77faa90415660e85be4cda092b67706e4e8f8909ce
MD5 94e73aeaccd49d96be89e2146c9f6c6e
BLAKE2b-256 5ad8ed458ba33a35ef780803de5f42a9607e2241554a9843539f7a5356ffbca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 58f3de0b2edb87b25e3f6eb17a391827cafdd674c8a69a4db54f8755ff203216
MD5 3a03c3915806c22242b417c9427fe4e1
BLAKE2b-256 75a2cc82f59d8d745bba8481576f593a9b0f4d189906d6c2b38683b1c5bce414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.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.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4151c32f5c132ca2024c503beb3c3931a3e3280e217361ef740188b4890a4e8
MD5 73144b5b0fc691853bf0369a011346c4
BLAKE2b-256 c131d19bc1f7367aa83fb540af8c5d5b205b07c0da2bf95ff21fff9c27302b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a01d838ded0ab9c7e0d601e3f5a613eff8d9a688db4a57a9a0dfbaba9c32a94
MD5 514537f8ead92bf6e474ca7dac904eec
BLAKE2b-256 859ae619218a2ab4af8c15e26cb1a16e21d713c8a4829919f2333f058e8b86c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed23feeb092bac860d146763b9fd792234ef410531cf32e65575735bad42600c
MD5 235ba94620d40330c1896d0f6531bd13
BLAKE2b-256 ab2509ea0bd526905c2dd852c2b0e1be768dcaef45991dfd2124939e74b7f2b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bff1e64e68a9784e97bea5d8ea3fdd05add1eb58701cd7bede3942634f750f08
MD5 d05a020eb25defd11495e4d635894d55
BLAKE2b-256 76d388bc88d7f90c5bf3e4dbe77b41483459aa5fccc50d2240cd9f976244187b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9db3e8e493338c1afd5b9ed6a336356d4bc00f1147ea0ca8714bfb2e165b79f
MD5 4d60a954dc1f689c77e3fff83ea74530
BLAKE2b-256 871440b90deca9b8601bbab71b898f9a6a9a3451588facce967669b3ba9a351a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dab2e72ec083e2d6d5eef6184b521d1109fa1da3133b14c9716dd34f1675c5c
MD5 f38b76cca0c86ccee8e54e3d54d42cfd
BLAKE2b-256 8d6e989d7edd406b6abeb509ccfc72508a1cbfc7fa4e8bee6c86706eb04e6427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2793d8d605eb6b2a734cfaec4ee91ac06d9ab5517d226506087be9c7a3b546e8
MD5 45689b3f939290a26a505ee0813637dd
BLAKE2b-256 4241fccd5dcd3e53c50b3900c383e275302cf615bda96e19230ffa40da5b70b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f85e060521d948bdeaec2d7c56480c2837b3602736faea22f4c639824f1c106
MD5 bed03db3726e662e0a8fd6672c8c0cb6
BLAKE2b-256 67d81637e6b92116e128f9281e8792101a400781abfc38e8eada18dda30ad3e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 279c9a6bb4ee4ce9e7e9de1d54f4221bc58fec405eaff393ffd3670f398a8af2
MD5 21f0b3de12783e0aa028cdfa80a7d9b5
BLAKE2b-256 d459830410145a2904dbbd9e150c0ee8ecbd3e844ec39ed1774d64a57a9bce88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.1 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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6fe67b0ff42dc4ed22e773b3ebda798a667380fc08c79eb3581315293cdcf0c7
MD5 19e3317bb1b9e73a4c86d7c1214f2c62
BLAKE2b-256 1598626640ee01646795b2a96f5cd18f36114aa093c4117dbf24c31188ae2489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.1 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dfb093d876c2f122d7faa541f7e179102831a7e104b941ec592ae0c1159d7431
MD5 0c9ed6ed42bab4cd2fd58e1ce3bc9d6c
BLAKE2b-256 7874a27db03133e794d77cb6f94e9f603a373f5e1a3e98dc65d984088f2d5949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adc35427e9e124607717a6f1a9c61ddd93f6451a118aac498b52cd4840ec17fd
MD5 a25acfe09745e859f7b2b122b98b75dd
BLAKE2b-256 f4401b9014b71b24d37e0f9388576c93c2ef1ade80319b3720ef44a49d0b263c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2e445b77cba758861d6ff6206c56cd4a0623273343d4c1396aa96acd8a8b00b1
MD5 547c9ed9a3252fee624aa181247dd1d8
BLAKE2b-256 5fc7a0eb49cabf4dd365f70789820132b8a24219b01ae40a55716204b610a913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b358a7397c2001ccd370c7b640d9a10557b4a139e68f9024f7ff1dab40da481e
MD5 97c97420b5db916aeddfb0e043ccf002
BLAKE2b-256 3b89bc6aac21d35b9b65ae8464d6b1dec9c267cb582dcef25c2f3cd71dcba2cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.1-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.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0880cec7029fef555b85e0f32de168ae2fad2768d163ac65499d1554f09c3d5
MD5 a07e8cbeaf4ee0579dc3dc9691f74779
BLAKE2b-256 1e8e6501a4dbcceaef5cc5342ba75086c3182801df7c328bcf415a884fb6e420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d599dfd307c40e3d06b3544c9c4dc70fbe52f68f55c65c90c2880822ec229b0
MD5 de40a2955b44eb492e4c5eeb0baf3998
BLAKE2b-256 1220299d6cc19a43c21c22596b3d6ea8d04407a3226d2706948b531933f6eb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9801be4c95bd261fa7ec6298ed2ab0ded616ab6f8d500a31852b84548dd75299
MD5 87366af3a9acaea300774a24d816f8ed
BLAKE2b-256 201ee72cecc86a0d7c17b14d47ebef18501dc9c8a39159e3074f9da7827bc73d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15e817c945781936ca68cdb5fb4d705a7b20981e6e37a5d705199454eb16af74
MD5 e7dab5344c1a8fac408502fb07a173f4
BLAKE2b-256 a1a7bb389615abc03185b0967014f19d3c7000c5621f87b4b84aa4d970695a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fae09a8a5f934d221a6f93080946d3a9f5449297632abcf9d012c1a427fe2a3
MD5 ee5b6a87ffb92f5de88ea44e8356fd3c
BLAKE2b-256 b880884bd9a1b88c9c021ef9d08d694c188efe923e12d88e446b9a5bf3674d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46e4dd6f4cca9982bd16148935aa62af9a8f8b8607cc462a3f313562c354500e
MD5 ef5def33793283812553c3185b72195a
BLAKE2b-256 50b7e0d3f46e85944e93ba197d84f515d7b943d7d5217f7e156d673287be6a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 215e81c5bd28b19b5d9eeef76188d201d9f11c1dbef0454ac78a1d3705d44b56
MD5 fef20e6c3a5a7feebb45c78456e2aade
BLAKE2b-256 78df9c0cc4855223e6272dfa22b08435da0d8aa6edd507e3b807f0d9ca316ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aa83d10135628f6530aaa1c0872fb58cbe4cdb08e1e792c4cec375b54dfa4eb
MD5 3eeff67bfab550f20c978912483e0e7c
BLAKE2b-256 68d7a4977da8678f983c3799bcb4247a1f30c9c1bdab21f77fa8f9c173248f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4285b70ebac710a8c3cd6151e91761ae1ac604b035c951e93e3b07c424d734cb
MD5 6528b0d40197c325ae313507b72f7f39
BLAKE2b-256 39c9ecb4e03c9533e0ac57e44136e08820fd114b73c2d279b40b9b6940cf6fd6

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