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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.2.0-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.0-cp311-cp311-win_amd64.whl (20.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.2.0-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.0.tar.gz.

File metadata

  • Download URL: cwtch-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 fafaa1218f0750189245d57c49f6b577bcf9334ec977c968c539e0bfe37544da
MD5 e5370b016029be31c0cd875e058dc242
BLAKE2b-256 0a789175190ca84623e4256aa37abdf54a68a0f5d4b9ad4b953e1905c67962e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98f8b5481474332d01934368da01e0984e483a4fbb4ce4855ce8d75614d270b5
MD5 a28658f434ad6f4c271641cffc233712
BLAKE2b-256 c1c31b75d348469fc1a9751a132ac91b62f53bf2118b33cd0d55c5ed80dec22d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8dcf5ba4d2e3719a3acc0f69b4a334acf729a74f154225aab04dd8a606287da1
MD5 73f41e47ede8bb0652d73ed9b91ce973
BLAKE2b-256 8a4454ea5018f86ade0e9e7cd4af48e510bd010543965993c2f39715f053676a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0447ae573c5e54ed729a88bdac084b632a09815310e517980153c2038dc3ba77
MD5 159dcfc4ff68c7332ebd394a1b83a97e
BLAKE2b-256 c07ed131acdbf713290dfa9e9f3e3d3a0aea54a425fcedf4a7ed4605b3ddc771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ac96fcef700588fc93d865aff8a58ada713e2bad017591f4f36ea49ac307ba5d
MD5 3ae3c092625a87ab39eae2b7a7bb9dfb
BLAKE2b-256 3dd4bec5a47947c2cd1d81148c2a7eef0b510e62c77a6f3b32a4fd777e5b23d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9cbe8bfedcee459a4a82d598bebf894397aeb7b09d209caa7be8e454a632cea1
MD5 baf1519c79d7812070e8545b6a6509cd
BLAKE2b-256 7c61e7fca092bbce8925f9a55232ab2231bc79972ea9a720485d3934a4f6b550

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.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.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad3e0f580f69945013dcf8585ccd4c6b1c092aaa15534e070cdd2fe3c766106c
MD5 7578354f15a26720eb10361da74a0eb9
BLAKE2b-256 4c62c0b843b384678f311a2e0827a9845d6344af411e5a30b96ff0331da1487a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d3bf623ddc742b31b2860b9a02dab35f919bbbb8851d71d1917dfba0489cd0c
MD5 1934a258b5eb25cef4e453ddc0aea673
BLAKE2b-256 ac90d3e96a45d444752767dce165be4880874da66c29d10c1f52191b90c99add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 850854467049eeed36b3a38c6d1960a7ce7e6462dc6be3ca3e7e7793d8e94340
MD5 acb6a59e5dd412421367b741c9b02d61
BLAKE2b-256 600afb07c50c98e6eab1d85e079ac754d5495a785d8b3e15c2363602b9f987af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cd80c623b40fd1919666272c4d2d01227464f705bb869b7edd7cc630a8209e7
MD5 e2a1713aaa7c14f1030a491cf94ebf37
BLAKE2b-256 28fa8ca97e49be72ec1fe7cd118027377b6f22a1f40876bc807a568f94a0f0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9a9e74d1e7980eac2624b41ebbfe5bb85728e2801c913444efc85c3f9374633
MD5 37584073c7bcc3550670e31b36595ae6
BLAKE2b-256 5b666293d8e063019ece55ce3fb40fad113ce42a6dca1d8bbd85e9ef63e7b305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d7b797921b32f1926ff8a3f24f2278acb29ae1f7520e49885064cfab70001fe
MD5 46cf94f655fed7425f9826d71332e9aa
BLAKE2b-256 72f39de93242a0d86db2802a67739c160ad687eebf9d54003f48543578d6a78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5196398064c3a9bf0b5cc96a234814dfb9eb0c6e8017862d79bdc6ce8fa5f5d2
MD5 877a98b23121db4bff3ade44321eb4e8
BLAKE2b-256 fbaf6d0d7636975adee7b3c0b19fbbe0053eca06ba56faf6a1dcd67b1e9d7a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6806b66da5c0d04b76a0e07fff908978a65caf59db5b514267a75cb4ccaa8c
MD5 cad97505fd86e2af6eb3be8902cfa91e
BLAKE2b-256 074f94497283dd616e1ce9addd92b02c234c9dff0f43daa793e7e07df85c17e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd051267ccbae982bf15fb9ff6fbdab74ff96e3ec862ae1033e11dd9022059e9
MD5 314c010b318ab3a1cf951d25dbc53f21
BLAKE2b-256 9e8937dbd4649b3dbb0f2a3294e55bc46961fae74a1eeee81d02cc639837edef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82756a229d13787b774593a10cf6d93a2d5ddbb7b0d9b71584ace9cf6609ccc9
MD5 d4d5f08e9d22dcac95953e680844ff22
BLAKE2b-256 87074928be046509dd52bf4cd5301b4445333b01b4ff6cf4d1aca92d9eae4de0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e2de8112d9a3b06c4f65fdbe144326999d6f51de93c08ebdea6f6e7e36bf1dcf
MD5 c5d4f07684fbe87e667f53079e3c6af0
BLAKE2b-256 bea9398269ec8365c35dcd076caf71eb98880c44dd1f0b63672ebf9d8034a173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57a33280adf2329b96b82e7e08c89cdd08e8fd41c2d307b5eb4a06a5261a2b54
MD5 082978a20e29f7dba62cccfa5888a13f
BLAKE2b-256 e807ef8b523d951e31f585a60777a2e88727c04aee6c2de291b3eeb7fa95e534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dcab3575cc446bc8719bf583a9720e2fc8ee8430216e4421292fd5ebcf426a42
MD5 416ed93a3a8ba8e734796e3f5fe290cb
BLAKE2b-256 4fb638f56be66b66414a313e74aac4138df56b23d7e0bbff42fe24cb8ac5dd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 42bf90f51cc1837d979c7554a0789e7797251e6e144a802578c8d97853fea1e8
MD5 88bf0c6656499f6df38fbe2977fa1645
BLAKE2b-256 ff2a1b37296cd696307042838b709109f0cb2cd5732007cf149e5352b85391a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.0-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.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4db61dcc3021c331a187b4d4ad8089bef09204285ef5525aeb8b0d88d671c52
MD5 1e01c197095f30da1543c44b6d04232a
BLAKE2b-256 748661c71cd69d0b19b340ecaec0394f32b8e153ae66cc77d7693ef1e009a79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f33a072272e40d639a707b5fcf107d7a9df2ee6b05c7d83d08b32faa8bbec6d
MD5 1c31fe70f96b473f3b8f25c0bd2747ae
BLAKE2b-256 01605def33431a1c5bbbbb53b26684729b2462d48af76876205e30b8b8d241e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18f5d6391aa096e733bc8f0d03a5024eb383ca7553298fbcaadb64221aa24811
MD5 6997aaf2d7f0183c41f75484f9686118
BLAKE2b-256 bddf769895c2eee7d3deff91f0ab86a788b4c6640278dfb09aba16f2c0c5cf00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 181bec77fd7abfc3f0b865cac815a14f76a8cd729d7ceb8dae034655473256fd
MD5 af3542dcc21895705443070fb6d3f9cb
BLAKE2b-256 a564165fa4cc4d57c0f40738d526c0d4d638a252c059454f67226e5fce7afadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfb0ed7de781c92076eb403df87e6a571256eb11ea584638e75df0523f0d1946
MD5 b38851481b1d4128677bcb67ebf5543b
BLAKE2b-256 ee89c8a17f187073125ef66696cd0682da90e487796bc3888780db1636eaf822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55a475828c1e16dadf8a00ad5241f1067592d350488ab263f9fd5c577dcfc645
MD5 19a9a720bc5f5e227950950f95fcc082
BLAKE2b-256 29ead129486602c49f8bdaca20d46a2ad94ffac92015778d1e53bfbe7a777035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e8ecbdc0c034d6fbc90e5f07380a69847aad5aaaf1848ce230f6468600ce85c
MD5 29b1490526bbf0087d68186baeda1e14
BLAKE2b-256 c0401d6f37f0ed4c628a10ceaecf60d7b97c3d3649a6a490ad93ba81db10978a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e06e3764475a30b316a7a7f47014ae726efbc11bf9ba73c6ebcd45f1fd1cdf7
MD5 f28ae31e5bd44367aeed058461d90623
BLAKE2b-256 f8e4f7907b87f91e0c9b189fe7c68a075cf707f0ee9a0723d5bfb970b8e1138f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f922f922f2d467cda2ac0b07b087896f8eb8b1348071200deb9cfe45ff9c86d3
MD5 7f8200e186b3533512a4009296a933f3
BLAKE2b-256 8ffcacda5c3dc1954a4b66af6a573094a5c4f316609d18361a2d2af0957f847b

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