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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.5.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (343.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.5.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (185.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl (197.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cwtch-0.5.2.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.2.tar.gz
Algorithm Hash digest
SHA256 bc3ddee98819d4f2fa48ee40dee96e809691427cc7d841c80c7ed88a392bd721
MD5 b0e1a7f59a37485b89254b504f90f438
BLAKE2b-256 aef146af359321c24d084993fa628f3e3ef76e6d44c014cad8d0f70fa02e4a51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5a196d151e50c6fbbd2d4ccafa51f7d52ee9a3aaa91021d6745a36cc008a823d
MD5 487cbc2ef8f800f1ea82befd16ed68a0
BLAKE2b-256 a93be2b1954e77d5de0ec3494e9d05e50d825799b036442558361edc0b60f322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 40d00690cc29de9aa779b14091ab7937727afbb0b2a10572f1d14fa377a2642f
MD5 97fc0afd7958357d19d985065a2449a9
BLAKE2b-256 5253564c396368db5c660177d82f00f1a92c4f75ebcd80dd149c206b53ae9b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9055d5e787f7a6144a04f145039f33d46a10b78e9752e516a04320fc9d0a952
MD5 0910f4117e0b436f75fb468589d93a8d
BLAKE2b-256 0b6b44f9e4bf4592510bb68b86d6480dab90d7280cdc0f31ea94bcba1b9c58e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cea0b7c4ba88258126884cfc1ca7135f3329a52ba334476805c1ed60d804a88f
MD5 11f96293b80baaed95107e8e93d455bb
BLAKE2b-256 bfb32c252ba0b985c450bd1760dc2b2f957c2e74b5e7acb2917c7de58904541d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 13cbffba491c30f25cc6bb850d1a2bfabd34fbfa6d64f71ef44468abb64f249f
MD5 5192f2a2ea12b7010a8848afd093f2f7
BLAKE2b-256 09f70b19b9bb66a84562d79033814b661ae877882623f49b2284460960762d3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afa743385f76d250265a3612503547c9e046caa260dd640ce6642dd6cd665e2d
MD5 9a01a0ab99060178837382c6d89a08f4
BLAKE2b-256 c4b9bb6d56e11f039041596c461f3b51722d37154b612ff9c0e4b07c60e1e872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cb62cc03dd566bede4d15cc4e851f1a7a2ea9199dd3569eb8b85bae4034dc5d
MD5 b2491c9b4baebd2ce5e616daa1eebd37
BLAKE2b-256 a16d951c3e2641384e812de2cf37a70394ff8999257d13578a367b6bb6bc4d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 109640c9cad534045c254443d418fec80a54b05b97338c4cf243b5dbb35c0b25
MD5 f2b02f0c86cf3487e930f7e0169ea32d
BLAKE2b-256 8d3f12f730bcec0c38777888ccad0ebc136ebf616e7f364363537fadb67ca12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55e4f02efdeb731c080d174fd6f9c086c9800710aee61bd40cf1e66a82a2896a
MD5 7f0339d544f715d79bf1582af3c68373
BLAKE2b-256 8bd298186bb0875cdf72f4f3f041dc2432d781bb093311202ebae12658a38a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 369bf3392f96c1d171cb4e1acd739b72b9fb4171b50b16de458533efc6f5d20f
MD5 1cd04cd1e57634960b907c55a80e4580
BLAKE2b-256 299025b05ff9f407a26da7a3041fa360ba452ae66b5bd5f1e793ea6d38a986ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2245739590e2ba412445016e8f15333d682022d997b02c90885a61585feff1dd
MD5 2456ead329898792b69c21c0b83d9114
BLAKE2b-256 aeb6087cb9329834f625a84e1ec0644732df21a1d9df4bf5b618fadf77d59093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7aed08bdf8c50797bfeb8d89be11e4f4b0b8088d6d6b0d5c9a81d34760312ec
MD5 9e4dda948c5dda878dcf4ba843141686
BLAKE2b-256 88b7b59fd3c66a4f6c0a8c70c7945956bc9eba167b135dfc1c99d9d6dc0de356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74c01c37bc49e8ae657ee51a68cd174008d22f3d2e2f813920447c26a3b736de
MD5 727b4ba268d4336274a7e7d89b8325da
BLAKE2b-256 7ee20241106a11b764ffa1d0b753166056acf1c48176fb5e7d14c75d96a8ddbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e02bd6ac44d486fd73472d525cb75b701c6a06c3f4302bbf56d55bd180d41608
MD5 8377f38080ea739faa3be47bd0119343
BLAKE2b-256 4dd9b2093f14975e3c711ea4cdc952e42b48dfd95706da777ccbaa4ba2787a80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fb1072b5b5ae7e49f19b5124824541a6b6feda6adc0d42e26793a58c9eba559
MD5 05490d261e1abf821163e21565ba0951
BLAKE2b-256 cf621e8b6ccf32cb85b5b2dd854bb672417fd7322c52ccf4e74fa7464b0fab74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78f617e0498a88d6d3721c16705ce19ee57101e4b375b9432369bc730282c9b3
MD5 bec94c00950623f661cf62d529b0636f
BLAKE2b-256 abe7ade9a09b9b6cae6af7475514541ff2b9c9bab609e20add9734e7286a4dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bdef5103798a73e9d30d51f993a8a9d8dad46bce453e3e5f7c0329a4db25618
MD5 9eaa5e962bf2b9193a4a4bbf539e2c39
BLAKE2b-256 24cdb25d633a55951afcea0973b5f65aa0d7363e3c96cc4cc19fb103256825af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fb8cb2f5e69d1a7d2cf5ff94c5e66fdf994ccccfdcfba8b5cbabf6b404b65124
MD5 fe3c3596599a6c0ccf813f81fac4880e
BLAKE2b-256 a0c63d8fc2242a865b0b932cae1aea58e026f2169e5d838fa2054edc08e8430e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6defef8f8348fddf2379d5ad89be0f63c7e9408f6d4feeb26e6f38b242bb388a
MD5 0171d0d4e2897068f33c0af703d2e92f
BLAKE2b-256 5fdcb3796a9283ab1ac301dfb3beb00cd0d150f35786a5795b82f97bf174aaec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.2-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.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a9067cf7f3a5859456bdc1ba27988c3a50bf5a2e50a3091f54631d6310bcfe3
MD5 915ba1af841a151c3f0ddf4d93ca4494
BLAKE2b-256 7220ffdbf270f9d7599acfe61f95d83b1b462272ce1c4239aa798f8a52b55abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ef7ffbfbe476a20d7ee7a82790984d196d8717ec492f1dc193e51c82964ed7c
MD5 4210eeb6353d5d6022f735cb8f377a2e
BLAKE2b-256 d8a4999323e1cb12f46948e86b78d5129938e4c008996eddaafe815ec1466005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1409b003d310fbe4ed07369ebb12788649deb055508da7f4d443112cba76f41
MD5 9e53fe628cfc2337d86a002a7a5c3743
BLAKE2b-256 5abd72773f7ba047fe659324a5a9132e1e60b700d9c621931bdd32d7dca895b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 861a3df48bff8b8a535796887488b8086b35406f5ba9d76cbcfe12b3e5ce2a64
MD5 85869d4fd2ca59f99749b76162b91c37
BLAKE2b-256 d5c6e645ea76243bb812f1223980fa42edfcba71b46d71ed61fd9655d4d5f289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03ab6c9ea03b436a6f97cc294cbe608d9b6633e1cb138a605d0e691ddddfd2d0
MD5 0845ec0c00032db0f5832c97800ec67b
BLAKE2b-256 55c12c7e05fc0f84d870126c13c8bc6c255b616424c9a646309c8dfcd3fad20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f236cdcfbbd183af45bc85145358fcb9d46212f19076d33b24b5196c228bde6a
MD5 1d5d482d4c3857fa7b0489b1760542ca
BLAKE2b-256 3074597c0bf66df279b0b164bdbcfe746d5f9eaf0e619c72005bfb067a877e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b8f3283f4b0199460282fe7a606f19fa8aeee84fc40a89a88b83168fc8352af
MD5 45db169c55aba00dd59cbdd771e914f5
BLAKE2b-256 ea40ddfee2c23329e3e46127b7496f5aad6260cbabe2e8687aed6eaa923a213d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b44d79f280e864d5741e16f7a5f2b38143d7845676fd569260ffb98ee429b7d3
MD5 a774a504aed5168e074d0ed24a7e2311
BLAKE2b-256 ada18e7b3c0c78f9b04cb82025d9b064d492159a212e6e83d3cd8fc156d54a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 301f423d9c19944e61be742fd07da912c1c6ebe4390b23fb7b070104f45f9655
MD5 b24f1c3a3bb937db2427ed6a2c5cd92b
BLAKE2b-256 7aa25bd05131f63632b373c4e45b4162bcc06b9418f3b3eef82e69f68b7a81b1

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