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

Uploaded Source

Built Distributions

cwtch-0.4.0-cp312-cp312-win_amd64.whl (20.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

cwtch-0.4.0-cp312-cp312-win32.whl (20.3 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.4.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.4.0-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.4.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.4.0-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.4.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.4.0-cp312-cp312-macosx_11_0_arm64.whl (342.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (370.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

cwtch-0.4.0-cp311-cp311-win_amd64.whl (20.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

cwtch-0.4.0-cp311-cp311-win32.whl (20.3 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.4.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.4.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.4.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.4.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.4.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.4.0-cp311-cp311-macosx_11_0_arm64.whl (184.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (196.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cwtch-0.4.0.tar.gz
  • Upload date:
  • Size: 19.3 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.4.0.tar.gz
Algorithm Hash digest
SHA256 250efdde2671f7ccc5c273f3ee4957b721ee0ea7bd56fcb7a1f748cf1e173589
MD5 237c1f2381b7e0eafa777da76094ca87
BLAKE2b-256 c0c7583eda27e7e65fc08f516d027f40cb263b02cfd3e3477701e05422f87ccf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcc8f2fa73449b724122c8313874639308cb9e91ff9f6d81f785f5f5419307a2
MD5 fd21d08aa5401e172e33887edb8145e2
BLAKE2b-256 b5da57319992871ecacfe7d0374dbd99d1697ec077e0b215ee22bff74107791d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.3 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c7fb58e8d627ba72f950051fa16ea5a7010f2c5a677aff8b7dc877d313fe1987
MD5 163681ee1d1bbb3e1a3b60f9898a47c4
BLAKE2b-256 8b013c48cbeb02784fee77ee3125f83a49e632142dc8983b8a71e0232baf64fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a845ee08b830e78ae60dbdca6bf27bc530535437dc986d6fb38745bb4a7a424d
MD5 66dc0f9e2e1605b47c518d0fb5fb73b6
BLAKE2b-256 4cb17e43537a2b4deed037fe1b0f2538c6ca4d65d832a27319152ef4fcf67b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 042f18983110f4b3306660f51c485eb45a69bfce4ad424d61fc9a42555820c3a
MD5 eb81535842b8989bfae8c4f6091244c9
BLAKE2b-256 138c2229215be8bba1769045df761c06169348f2e05fbfcfa06d94e6ed03613a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 053a9a1ff6bd2f5bb33b55f4ae16bcc2c8e8e8c3f3774d24237471a0ed6b0958
MD5 09f8959b34e0584ddd8f1d06a523799f
BLAKE2b-256 6296936bfa625145b2921cd74b4d784c9fa5c10488235597b64d7e10418e311e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.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.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42ef029c60534b2c0abe55a2be2c7193a796213d329ff03b00d0b6ee1594573e
MD5 f71fafc670db7c834a942ed37b8a6a36
BLAKE2b-256 1efd47c9ef3b0e9f79a780be58a7f94ae50bb4bd06c88ccaa14023727181d6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a3b081c36e826e566b13be57a451544bc6fa6fbc7bf6a459ed1812fe26f4db7
MD5 2b67e68b3878a8eb30bdc99d4d367d50
BLAKE2b-256 149662273d0936e8e6293458828680fe9a25e34fa5605cb9bcb0be2ff0cc1e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c465e6c25568b8f029d3aa084c07e4e4927f5ca3491f598c6da414f7bccbb68
MD5 4c7f1cf4949c03bd57c8cffe2d18d865
BLAKE2b-256 33b6f21321dd6e269d24f74b8e4085522a31d6ae9a2783a4f279774706c561ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f1696ad0df82c5c1659aa35379b79ca86b1605c149c392be995a53ba138481c
MD5 4b907761e2d2a4ca74971dadd364a331
BLAKE2b-256 c9960eff56d6626c98dae15871b4764e364ff6d1eddf90c6a8f2e7a053f96198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45c61a266fcbc3ab387279a4ef46826cd20371790dac307909f8dac6cf5e7c5f
MD5 8a35e8315d33f8b4934f02d9157dd6a2
BLAKE2b-256 815939b031cb42df92f9c1e05109b408c9350dd14991cbf63831eee37ee2e3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 932dd270392eb68b345b6a4848cd494c75025c0298ce55e6b19c9e1ad51b4006
MD5 ab7f2f5a67d9f2ce0caa29540661b87f
BLAKE2b-256 d4129fd0e9423da0cb0ae52aad3ded51d089a52defcbb669adeb8b2176ff3f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e65e848aec591f634318fdc880fd172eec6c9cd8367a8115e80b40af41a5d016
MD5 a241fd8e22287068efe5869a5f7d3e4f
BLAKE2b-256 1ccbc756b8678f2b04799497e8e71ac6c982e8ad24c2384d74934febe7419c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 623ea3459c5aadae98ae4b444714ffc38342f1521bae8a4621c8cfe23a215f63
MD5 c500a1ca69d21d09c1630c67a446f608
BLAKE2b-256 58ff0142e738749b55879c65c94d04bf0357e839b1daabf01c698637a28b837a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 811736d2d268e4191433ba2d2cf141b8951d519aba81206269a923e8c8ae6cdf
MD5 bd52e8a9f41fec78e0d62c0d6dc9d294
BLAKE2b-256 287c3eb6836232f636def9278ee8cd7aff8d15cea803dcc30a2e8d576297e0f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e3a040d7000e5f872dfd38ce785c365cadccba7284e09001a0b29a704ff0a3f
MD5 d7d95bd591223c6e55d148ae1109083d
BLAKE2b-256 03a722e674c23327df31d362b7bd53c5be87aa8a716e8139c12524085fc2cca3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.3 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 01656941f820f9c75d67b776fcd8f2089f1de8edbd62464548cfdbf461571ba0
MD5 695a07ef44e1a3271c0832ea975e9cd7
BLAKE2b-256 cd7bb2d145ce126266174abb79a16cd657d9553a10d44c28a2c2c129cca693bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef62dc58db0eadff0b478816a5ff9d0daf202f2c4d5efdebb549d39575b5d48
MD5 a1e0d56098fd7553d4f31e433be263de
BLAKE2b-256 b617fed86f34e170d6ef77f7a22ccd48983da57e55e6de750b78d18e5cdd423c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c760a9361b35a9147c85a42b527494145188b3a7ed5a3da30230058c8b386a27
MD5 747f2918d7732ea579e3a78686740b5d
BLAKE2b-256 2789b38bbdb442d4ee70310683098a70a21455d2bdd96e8d460b5ba6d94e05a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 50c625823c74e1491668aea1fe1176726a6544183714b74be3b7be07faa0c27f
MD5 51d283f3838e96b000becbc9efd1e947
BLAKE2b-256 e5b026128d20aa946ea3569b44c4967b0188f4650f22e44a51333c54d6933cbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.4.0-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.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 123acb2c6f1fa2f8641df863be57acdd86374f242b411877faeed2348138bfa6
MD5 e8a8e9bc744488dcf9660cded721bbf7
BLAKE2b-256 9f896f76a7ad1ac1d30bf99cc186d96496cfc58bad69006c37b18933e748ea3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acbd98a2979da722bf495f0014e9d85d6a554607ec8db496e61f46805aacde74
MD5 e430478b9bc667c4143c41164e90369f
BLAKE2b-256 def96cdfb6a3d43887fe3486bcb1399ddbbdb08b7918d49589a6c1601c5a9e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dea71215627b3459e16f76334ab552ec81d9bad06a2c67d74ecd34f838adcc60
MD5 50dbab9dfbda2eac9b3b8c8b53fd9271
BLAKE2b-256 3712798175d9f84a20f5882343c90744189bfe460d6bcfb3b9e75ad254a1aa02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 377ec43f859fa1db50b85a2ac127379641d5f8d222410c5b3950124a2345d843
MD5 228df46fa38e75d249638f1a0f034a33
BLAKE2b-256 915c63983293aee084d758f9f31019e1bdd0b57973e3a6ca37ccd63dc29bf847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8b76f56245e5c6bf957cc5e56ec8bd1416c35f934a4b6201bc0bbc044b89d4e
MD5 07720557ca123b98a786da771744b6b4
BLAKE2b-256 1eef7d27b2b9103cf128b4a6f0a3773c255dc5dc7985fba4a66be1ef34dd0090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bb2f66f391a22cb05907589807fa7e7daae44434fa3563105a239a7f5f14c37
MD5 ac2532dd5371c7d457e125b6ae7e3051
BLAKE2b-256 171e3494b76eb836b13c06aad3645f1624861ef592748ec2dde237c01c5e5980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f416a32019016fa957e6b4d234921a2dad2182f7e0fea1dd7816fa4461c5381
MD5 6fea03738c0689efe666c93046540584
BLAKE2b-256 8f95a7633d57f046be1022b3f81098ee2c38c0e1283868864d059d42639f0265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3db8ab5523725f2537041dd89a56c78ba3704bf6b0ff44f552442bac98e139e9
MD5 247a483317637d290153bc1481c38f8b
BLAKE2b-256 526a35c191b59b607afcd85346903f06b56a855ffa856c8ea25609817da1fce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 645eade851b40ecfbae44757336d516ebc4574487d0d2e8bf0c34b452356acb5
MD5 e80b2ffda5902a4d06d98d624ea8b3d5
BLAKE2b-256 e3d9207f5e91e36feab6bd9810344dda90f3d4462f7871dc7c732d03687d163e

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