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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.2.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (342.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.2.3-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.3-cp311-cp311-win_amd64.whl (20.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.2.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (184.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl (195.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cwtch-0.2.3.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.2.3.tar.gz
Algorithm Hash digest
SHA256 7cae48e27ffe442a19a81cc4ef33a503e8eec7df842258d9395eb1a6a061b246
MD5 5ad89b26ea0eedeed8033f9f08fb5b42
BLAKE2b-256 d7ea21e8c2d7126355c1587946fca3e0b56bfa589c938198c2c1dcccf9d8aae2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb38fa6711e2ec0706483d0e9135ba44d342148141bc96fdf267ada9a5a20d6f
MD5 a802e4c11a426e0b1047f8b5384330d6
BLAKE2b-256 e0f824c7adc130544ed074b513b535ac16af47a76641c701e9bebf0dc1e7ed0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 60b66dc5cee318f8294148cba5951075877c3b74b545737336fcd67e1cb0403a
MD5 218605e30f63d6a27723cb28f70b4067
BLAKE2b-256 9f9922867ed2cf8e8572076c46c01d388fd245e6456692a0ba10f125cbb2450b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c07074991aa9f70c7008910fc6e8f2c610aa25dd502d9988d3ca6e9a54bcbf0
MD5 9d8f88cc2f23a01faa0dfc1af1d7a4a5
BLAKE2b-256 41ff95d236565de91ed7c1fb30968f9d7246e63a9aa11f8cde3299e788c7ca1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5a48abf24ff46911a206d267c2f399b245824a5bc394ee7e57cb017fe82420ac
MD5 bb1dd2a319d18b346c2581e724643645
BLAKE2b-256 51bf50a594547225429010755cc578ed20d3c1ae66e2965dadbc515d59ab2cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 96cedf90bd4e16550bc147f82afd96e3d57a4e514849ac829079e47e70facc97
MD5 00efdff80e6964f99e03866508186fd4
BLAKE2b-256 a1ecd7d99c8bd1c017c13127c22adce2c990e159d6f0af5ba2060b158aa0d41e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 443ceeae3519a7b605d94827a6226de2c60f690a39beb48b5c3bd2891c7ec6fb
MD5 0e824c5d63993b72242efec6af7bc163
BLAKE2b-256 a24baa6fbfc826e318ee0d64d08d5debecd8349b1719dfce9164d6b8a3f369a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b43f9790ca3c17ab43bb8dfae86a3511b53a232639e3d86a0202163103e0a7c
MD5 65b311cc7465c8b3f2cdc195f184dab2
BLAKE2b-256 ef1433fd2cc9a6f23c1693c0419459cc3ebe6f3c3c3f50dd206acf2b6b43c63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d49541b6ca65dcb7f17357ccc1072c85cd9d80fb1746083c22ffef609acc559b
MD5 6a343e0a4dbe0509f296f3f8ce18c149
BLAKE2b-256 9c4b9e148f7c35c3362c7820efd87e5f088d1bbb1db5da8a2523eda2bf9df33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a58a2c14c477b200f26b14465961659d528c9dfe85624cd69194dc16ff6bd4aa
MD5 c79f09195ed1171d76d6e998a815a6e3
BLAKE2b-256 5355860ebff1051d027554fece7cc44187c2b8a98c87de6bb7ba5d869ee2ad43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 329cc359850882547b37700f8212364a32b8f1b3d89d24e942bb311f748b2cec
MD5 1789636380c607d01f6a26a75c03f1ad
BLAKE2b-256 5344fb6f86e8dccd05b672f82112052f348e2f5f539903251c3f325088806f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 005748bef6cd37d0c1d9375d0b244f7ebcd59949f5b827f5e680a7941e0abc83
MD5 53acbe9fc23695924187fa171a080f8b
BLAKE2b-256 7214eb476bb9b562c3164be232d238de477c8b7dce2330e2d8176ca39ce33269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a431c7545495c5177413d09271da9f09e4d097ac6805cc29ff91aa35889d310a
MD5 9c981ad3ab9818ea322153aaebd394d2
BLAKE2b-256 48c3c37eaa0f7465409e9a5bdc5784b34cebbb6f8d3e3912bf008c440feb59d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 039830eda2cdd03ff4b155fbbd1c38ef207856c48432f1c025a00f265a58779f
MD5 96cd3a92c5246943ab21d0d2653ababb
BLAKE2b-256 cb5f4845853c84d7e2356f9728817738cc7688b20106cf770dd4a61a4379247f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7961834024c2f5852d3f8033aa9ad4a52a282c1274073b9823162806b00912c8
MD5 2d225cb7e80d09d9f9262a3bc0d865d0
BLAKE2b-256 a764d5aca49282ca941b496870bd241f1475a1751ba270f45c5e09309ec21ccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b70ef383aae517d56560c9c430d98e351b94e35aa36373074163d79ecf3f0dfc
MD5 161cb14794ccfecc848b4dac7bb91e91
BLAKE2b-256 76211a43aeb4b0c981adea4c3e997c16f87091d029e22d4a49e895733c73b5ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dbb51bd45a72879bf05403837ccc9c1513e542d94aa4a96c1b0add69b38b7a80
MD5 81a526eca07b837f4deabdbb707ba9fc
BLAKE2b-256 189fc7be19d5129a0105ede8a32f0850372645117964157d1651db412969e5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 114673a88492e14154dc53cbbc29f3c41863c039bb6e285be6255af2c980a68c
MD5 f499acec5916cd1c3309aa28a8cc431b
BLAKE2b-256 9f661c86c38e38a0b40846c15593dc7b971182f16a5f4302e8797c7eae449dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 30da21903b49e1dde0b7bdba2b16c897bdfc24737f24bcdff77a4f92efaaa6e4
MD5 7999bc0337f9b4e78c0b4814ea77384c
BLAKE2b-256 73553907e1e892631928c89162de7ed4b02d9abba2af03b625325a8c7822abad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c5c11666c413d09841d08623961fc6dfb58aca1e8ec261a5627dcc52b1a73ba5
MD5 8fe2dc0b0ff3f6811932ed13138db073
BLAKE2b-256 cef740f25fb1c6f98f66985241508159511020bea2ec740de09d3f86da11eefa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.3-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.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 229e2777771af7082953c3fbcadeae025302f538fffdbbfab5c6b1792f5437cd
MD5 f5b0cecfb1b0720b5dc291b600ac2739
BLAKE2b-256 2b8ac355a2e06c1e4788fb515c8f185096eadb843e08572623263d451736c088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaa106976e8dbb507f67c87cacfb679f74af7a2d819863b0c58f44628a2d6754
MD5 58d188fb723e99778e7d3e06864af1ab
BLAKE2b-256 629a5f660653f2463a3ca42d7397e11d0277869c8674fa7c6aebc716821d4be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df9c8047c23b50adf46af0a3ca38578795c5f9ddd40173d5cae9cdc1197d6e6
MD5 3f8fb54114deffb5040887ad5b8ec54d
BLAKE2b-256 913744a5e021d67b6e8d18c189931a19a0a43ce94e2b7acaf913137848c5ffc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60e24fb13257ad8679c288304902f013f2ce50c9962019dfebb1d4d8b145ef23
MD5 7db7cd58a1029ccfd2ed8282da3a9436
BLAKE2b-256 bac104e32cdd3aa308486e39a6cfadd9dde22bc710bcc17342442c0b359d6c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c17aa6261c91ede91512326ac8e692940cb5b175608787959eadda11d729805
MD5 05ab410cc03ec90df1c1d5263d6dd571
BLAKE2b-256 38f70d4555666f7d7b83f414132f9872db4adbf4a486bd59fed67100a96de7d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89537162c694352a7ad5ee11099cc2b2f9af4b80e3e6f7fc6ab22ae90fabff14
MD5 bb2ac42d86a914e7747d98d42a43b634
BLAKE2b-256 062ad8c1ef370708a65f98a71a847a4f78dcb8c149bed7fcc56ba591aeea5d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8b971ab9d81b1d33fcb2c24dc8c4d802f4cbbcd34e1e5f49d883eba47ff4b35
MD5 250338d189f3ee174edbda55687b7797
BLAKE2b-256 a62345d3a19de613230e2c736bc63c8f7996fdfa75707227eaed269ca3bb786d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c227f6ba50eff90693db86ae888656237500eb0ae9f869241245e30ef5fec36
MD5 f13ecfd63a6b3ea1f47aa08aaa303d17
BLAKE2b-256 b87fcca66c4965a6fcbbb102455ff9a99caed6c4e8c48d44b647aafa0e720b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c4ea4c1f2e4ebf586241d5fd984edab32b3b04a547b499e33d62ce29601ec8b
MD5 faa99e11dd4dfbcc2f2c76c5c2d28c24
BLAKE2b-256 22d2b6102184a9d191262ccc836b95abeaf93323a023da72fb09fb303018e90f

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