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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cwtch-0.5.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.5.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.5.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.5.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.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl (343.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cwtch-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (371.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cwtch-0.5.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.5.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.5.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.5.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.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl (185.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (196.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cwtch-0.5.0.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.0.tar.gz
Algorithm Hash digest
SHA256 efe1a2d1e9cb2f397fa74b8cef1e9cf13001fb21e7bc153481d1242ed9643070
MD5 9110c72d31c618154476453439fde9e5
BLAKE2b-256 3904aac2093735ab27fadc3b8ee0e70cb47f700cc8a36afb71a3f5779c6f1b4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3aab09406007ac1a021f8b61920a05a0bba9f90b964e61e908ca84c845c6c84e
MD5 ab6a2f2744f4fb215c7c8cb0280fe6a3
BLAKE2b-256 0933a4e079d2190dfa2b0ecce339647c407d0e493a630d3f2ea09e61f64d7cb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 240890eb3475d7db1c2e7b4b893062ce95db9478fa11a23f4bc035eefd3c1754
MD5 baf8e1bc050dedf0e2633e3d4cd3db85
BLAKE2b-256 7ceb59da4e79b8a246d71ae00665a66c9c608bc68e24515e738208910d468d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3792924521fbf62bbaddb8e35a76519afc6b37f0216547c1ee761d7c53cfb71
MD5 939be017f174d335a5a215643d8b308e
BLAKE2b-256 a0ff1ebd6a12a911265ba9ec0ccf640c9d184a183e6f954c8141f29781e8f543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fda76961fbd7550158b102f8511570f0658e2000f7488c13116243d7dd458986
MD5 0f527a94942b6d299e36dbe5a67c0c0c
BLAKE2b-256 ed79c0349cbfd93970554e156e93ebf1f1e512dd97e4956e328776e95621e4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e4dd06a9470d6e8faa136d23354cba54b34d1bccfc5ca835a08b0ee317e5b8dd
MD5 417729807032ed6a1600176e7bbba505
BLAKE2b-256 332c91330091e93efd1627fd16f3f23117026828dd9f34b1ae465cdce39821b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.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.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34a7e0d5574b56119fd3093f85f8336903635052fb027c2e1c886a177f70b1a9
MD5 ab84d5461f59e3f92fbfce21ea37c221
BLAKE2b-256 7116f905aff0e18aa251751766d85848deeb5d2601374fbff1839b4e669a59c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3bf965d6937900dde0c1df8dd9f741a587b16df894e68e56c1c37969948c658
MD5 6bba6c8f73621fad86cc2a851ab00407
BLAKE2b-256 fd4802382c9c7ea6890171135910dd069f4c604a5fbfcd7ecea88ee6729e956b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43fff2675c9c0d81fd148890c0f7458dd6aaedbd339b05b19f4a9f8281bd8793
MD5 4f0672f4161c9fdf9c1dbbb49babf7e0
BLAKE2b-256 3a4b68c702474a16d73676d8f053e88ad0bc6a9eaf4b4193cfd0a502e2777c0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 966e394a2cdc4dd9611db970cf97214bc9c5fcf44329670b92e3209e0b1d21f5
MD5 9cdc8e31042a34448d661cbee746d255
BLAKE2b-256 7c85fb28bec43dbd1b43f33f131c38d9bea82251f1c6ca5d1a543339e7c41ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a9ee18973924f3db56636d69fdc5cc9e29a0ab7729079defe024dc2dd441b69
MD5 483536b7528d411472b39576ba6af859
BLAKE2b-256 feda507fc2d7dda1048b2d6eacd173ab33c6ee815681d288ea397edebff14b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85a895eb9874e17d1688bf6901e16a01dc4b3113fca21639be77e1e8b5835135
MD5 14a3c1b1c750027713a9801432d1f0a0
BLAKE2b-256 a5416a7d840a5ff90ff6896133c56b81895930a65c489e840ea18e47dacbc862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3615afa213724e0361af1e43762e5e702b6aba7edc8d50c9450ee8da218d1a7
MD5 ef3b5a749efb8e8d41c07aebd758ba23
BLAKE2b-256 b045c961796feedf1b00608682c2703f1e54799da90c83f7c0e2698bb2aa4d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34ed6068d9290a846fbc51262d527c6da08bdfeb82f2d848debf53a1ee9b4e53
MD5 ce3c228cbea1e156699b834e59d33553
BLAKE2b-256 ad0ed042bc98aa4ba77e051e27aeb5791c3004e935e93f33f75fdb71efdc1779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a512e6b8785533101caa86760f0860fdb7618478c7b94e29d50c5fe2de2b5a23
MD5 9f005dfd950a7512d231a73b4ddb9c83
BLAKE2b-256 bc13995dd51f5543fbd37d5b97f5b444f6162dfe5e01142ec15bc5841b49ca49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9cfb6c53c800f35434f23d47391471a6013a95b25eba4d6616e8d1dd075e5405
MD5 b18aac48154c3f3b825abce86c49ee8c
BLAKE2b-256 3d19b0d7f88072f50c5b9aa1df0c92bfedb3718ce75e3cfdd914cd10f02b5974

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ff9435a90ee171da6923cf0557be8ea0ba67184b1807614fab39365ddf429033
MD5 20dd8e73814edf5038a9c1867e6a67c1
BLAKE2b-256 52a03d914645c5fe6e85bc92211231c388cf58eeb9be7be23aa1330e17279e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6890207fe907032dfbefbfce215f9cd8057fa93875466ad658b150126a22ae14
MD5 167537e8cabed88d141ce9f7a1764298
BLAKE2b-256 91cfb2696d49f05f2342e43ffc72d6df9be1d77dd2462bc13fb11bbf43a9e274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b349db12fa925c76db045cb4092ac1c40fbfe1ba4a1b4e0a971b623b34e3c64f
MD5 9ac5d93297b967101859b0781ef91600
BLAKE2b-256 0fb2fe6ac6b93d3eeb155ee03fba1efc55eba71db1d86facf51aaa32842de4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e4f3b05549354d944f78871d6c8d2a33f0c4f2e41245c281f010ba4f38c3f567
MD5 b5460ac695ee6d6e6f056befc217ce70
BLAKE2b-256 41eb9c693d4fd41099b25138c3ceeed3e3e6569f86f4b8aa140b0eefba21b0cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.5.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.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60632d2d770dfe60cdee8814cbe5f56ef7237f4bc301400bf00eee904aebe87b
MD5 e5704f451c61e575332d8834d6b243f6
BLAKE2b-256 6150d191c95212ed30264feb1503601a18846f2208290900b4ed7cf44514e21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f1ec10c03f7d61290a53c8dddba4154a12fa55d14d7b8c3dd0c5d36a1473f99
MD5 68df86cca06eaafa01b04119fdf86afa
BLAKE2b-256 ef32abbd81c2d9cab3e6a62c8159523330eb67462cde3fab67edd9c7da71674b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef1bbfe70ae121e2fd83a8c18c45d4589ef7ff0343f18cd31f1aedf39e51d79
MD5 d5161ec210be7a340ca4c243428980f3
BLAKE2b-256 714713e9b45da63b85c682603c65cf4d8fa7d548607a1f5472531785d84ce6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c68e5a7f505d739e261976a0623a065e455f0e58980681272604665dbaa48d5
MD5 cede5247c503dbad412df717eec02ab5
BLAKE2b-256 fcb52218d5d6aa064699cf2b0c79a7494e1c4c9af34f42c940a49e825b45bf4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb71d0cfca348f2bf75f899dc669d3edbdac900597460358f9201546f92022d1
MD5 15bdaa65ec5ea156dae69c8839f69b29
BLAKE2b-256 ea83dc7d2d1c6ed78f4238680af34abb3f176a9c692b745ee6d86fe3226c64b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea28086d021a813238685674e972c76b7f4c7bfac8dbcb1d02504c91d490e769
MD5 ab0a5f74980daffa13a9933310d6e335
BLAKE2b-256 96d98d640d9349628fee9fc015f9594849c87e49217f70ff8d69da7c76a26e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db28a98ed1fb4fffcbfd16009a51418f31d8e921e1faba74bc0e8bade96e24a0
MD5 5a67322b11379452d486a1d25d93b4a8
BLAKE2b-256 8c2fee781b2eac07b28871989b5e79aee10a4e837519bca588ebcd473b77f117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d107fc6b778edd8f010b6404bac0f1aa6ffdea01d80a051a4d3f496ba27b2ac6
MD5 dff1aeaea6f3dc4fde728d7672843c42
BLAKE2b-256 d6af6bf80196b52dc0fe51afb4995496a6b97d6f9786c275d07667571b120d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37074d2fdeb575e988e9f00ad52b4cc88109ab1145db4fc842d09257f2384d1f
MD5 1c10b4881f422ff78a377da681b842da
BLAKE2b-256 9b873a4bee429112c48cbac5aadebdf685734db1ce056dd8e0deb14cf84ec1d6

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