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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

cwtch-0.2.2-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.2.tar.gz.

File metadata

  • Download URL: cwtch-0.2.2.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.2.tar.gz
Algorithm Hash digest
SHA256 7d3199a1534a27da8169cacec23b37498bada10ca87de4fddab2e9f364ef7b21
MD5 9f39c22af8d3ab481c1df2877a5cd8ec
BLAKE2b-256 c44c90f70e59d05e52a5e2c95f6f9a643b11466da252c7cba417833b4570b43c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 acbd85b33b01851c80775e072552962a4a6ffa564a5f56973d25ad7d242f8d1c
MD5 f43f8234340639bde04bea58160689b7
BLAKE2b-256 8b2c5290906b222ed284f6d16300b676d76f8093f9582b46ce717c3d9c1fa097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3b43073fb4e85001238542e9a5a61ab8d702c10e20569c8cbfa9fe6bc23fa629
MD5 cfb0d4dcf7ef03d1f5eda520d986c96e
BLAKE2b-256 3deb2a45fe60425f013a50900157852d878a95dcb52ef72d44b3471fb24b27cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4980d21b1a5a058ebae1766ab9ea74db6cc47fdb53a59eb902d4e3b3c59048ca
MD5 a0e617ced22723ec1d762bb044859940
BLAKE2b-256 25a17582e8fb940728d7fd119a0e17b20aae9211c65286b836cee860527ce052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f897a73fe3b40482589e5cb8afbf13c36720802a3b2f1490abbf3b1a4de96b68
MD5 859afadccc33d5780bcf2e2d7071ee1d
BLAKE2b-256 2a679805295bbf36ec49191f23c351e61dda334a284cf56a5f67fc0c57c7f70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d9efb4732d4844b8ddb4671e726be9dd9a3a310ef15cf5f3a0c25b8745d101c7
MD5 20c5c7ad9b48199894386293ce46a907
BLAKE2b-256 36039fe0bdf6d8a8b775467b65238776757594c11b46c3c58bb022ecc397675b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.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.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae7246389083b8a6433642febe4bfabbcb6b1277b942eaa84bb662a736ab6887
MD5 c011659fbdea0758a73d268c7a9e0d3f
BLAKE2b-256 b4f8c8b57b03d407cc5c5b2754af0a5f4364954d19d5170125871ab54b05a439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b28d20b7fe0db6cda0dbbada27adbe991a3a46761ca09de96048de6df3ada0d5
MD5 d54cc36b493f1061349c80e76230737f
BLAKE2b-256 9aaf1e68b20613b7195e818ae21c033d2c0459989b372f35eade616efc7f47f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 895a88fd6b28e116f6b507e00b0c9e77c92a7f084e270508894880aa0c3c388b
MD5 7687aed88f1d269f5ff7920b9aa08bb4
BLAKE2b-256 2aaf1acfd38147c56c0b7f8fd7776450a86b4b1f08527b5b16756e223498da28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec0abfbe384e73a560a7bef2af4618fe313b1439645de0be47105fb809338b2e
MD5 8ddc6bffd09af6f713cd991780a0239b
BLAKE2b-256 4997161c866ceba596c85ba929be1d7ca57b2691ec03be8550e1f1be938bb4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a508884e40e5bedce54d7bf4f2d5119a2b08113d307c681f39eb67b25feb6817
MD5 1f3c732bae9aabc2602f379e4b91f492
BLAKE2b-256 56f5f8160daa32e38c0f71acc75ee62d4531565fd7d62900a7001eff32a49c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c71e167ef948c6c1cb839005d7763134891936df71aceb2af57dd636426897e0
MD5 5529878ed42a94dd1c1904f43e2086d2
BLAKE2b-256 eb53abc8f1f6c905359e0eb4e827d20f81cc0a8343af26c9f52fd879b1caa5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63c0fa691747263c362ec07f3ddc2678a5723f0e71d395b7b771a00efd58b330
MD5 57d4e01b1ad13ab726ea096c60650832
BLAKE2b-256 c07fc8122193e2d3d4a40a36d1d5ba2df0d50cd5ffd6defad1e61f9505347483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 666bd0fb5f8437b331fb0cb497d20f05d182913dce4e48ed60f27371e04337f4
MD5 3fa1ea5bc627dfc946f4aed20e28496d
BLAKE2b-256 67d4c298776ddb7cbb6ba76ef2d654ede0b5e16fa86b7606281591fdfeb98121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6526c2baead7f373205ea6beaf4fa1ee659b157fe81f973d4d6c183fdefc66ff
MD5 4c41be3bdb7a89f37fbc8b1fcaf7690f
BLAKE2b-256 16e0e9b8dd59093289427e1711ea52c290e6a892201f81641bf788dd385aff15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c066bc111319bc04012d6988eeeb2c37d4290853ee9868aacf4e9fedf84aced5
MD5 0c71b5a48e7e25152b1a14eefdca5276
BLAKE2b-256 3f7f74451162eeffa5781c88daf0fb716128cb8236a38925b7c485ab75f70ff6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ebab3d9f4ea1755af0fb5444548b77d6d583f919dd452d4c107b020a103ade44
MD5 1cb9db5a902ec0fa4221138c2d46e196
BLAKE2b-256 b614c456a26a0f4e7680c8ba8df837138847ec3202484c671907f3aba8245f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 060e8523699f214f1a6a9df7a9958f334f70256755d2360662dc30a5c9be98aa
MD5 d3aac1eb337c9a6bd582c0287eaa4505
BLAKE2b-256 bd2350bafee5247e21279284884a195ad6d306673b94e4e5d56a26406e553da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 be8ce2892aa4094499b2e1f90b101286e544954143a2f894dd02367a22d5a1ad
MD5 e7e1c12358f59e44b7253c7022a45bfb
BLAKE2b-256 f3946eadfccfcca3797797e53a232829703e7bbf12bb092bef9f25e6582917a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e40df841d72790bf2d206709ce3172d1d175fe39cebf7c0d4c8a20d7869b5ef
MD5 fe993c2a008c169ae280266c10f5809b
BLAKE2b-256 690607ff0793bcb8ed9e0f7d56446cf3bf15d624919694831521fe00d2355485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cwtch-0.2.2-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.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94181bb14a3524886a039ccbe6a3c2219a9f7fb46dae25e57671ac8e0573e0c7
MD5 0fc5ed6ad9bb817701f47da06d8a7f8f
BLAKE2b-256 e06b6ed3f6f75b6ae2e7e834e17a81b857683a61e1545b4bcde4b9f954205919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75d2d38e610e06625470faa88e64a179763bd9c767abe19a4e7a4fe7481fe5b8
MD5 fadaab107f46eb660a2556abc32b732a
BLAKE2b-256 d47de498d762a3efaec99591dcbc54097f9802061cca27de87dd6b5adee7f477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75c0e76b05dbad553d383576c4f957fa695a5228ed085e51fa59db903bf3bfad
MD5 5cedcb0bfb5b6a68aea6ab39f6dbec07
BLAKE2b-256 06b1ba5f6df8846051aed3d678ce8092df48791d4d790466a3cd1d6169a14c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75c3e45b5374b3697a253403db8ff58b3a1c9986703242d0b7698eda8cb6c961
MD5 45f685a8db8e36bec5ce3e200146a2c4
BLAKE2b-256 2c624cbbeb52cf94a69448714d09953f5efbd51a568f690b8bd5df90c46a9046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 263625804cc6fdacb5763113b48a701c8d596bdce5134e7a15ae554c0441763c
MD5 d8418ab0e353e76c33e2c1c047cfae56
BLAKE2b-256 a0a17799701ab1f0a575cba50c9ecbd4e1ef89621fc6a598f1290deaf176ff31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux_2_5_i686.manylinux1_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37172b856bb76cc0ffdcba8bda1ab6bbd1fcee687f1c52df0e22518f58791084
MD5 cacf9c984101db3dbc99730ac19d8079
BLAKE2b-256 27753097e9aa9cd71e8fd690db633ebd921dc7761ea7678a312d79036a0a9011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1040a30eca8d038410891898df14b2d2b8fb8d6534b06d5698bb2adf6e30768
MD5 ddc4ef07cae02676274804a171e461cd
BLAKE2b-256 349dbdf9ca7b488f3e537d33217fb7beb5cfe66f75442ae39aba3e0d577cff6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4940a06a035f4064b21f33d7b43422b9c83401013df11335190fc8e4ca17f8ac
MD5 ee47e0bd8bf195e69c6936662348408b
BLAKE2b-256 9b5d0b0496079aafab7b4d5ccf1628179b2ceaef66b5443215f58acad854e7ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cwtch-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c760c545cd3cc2479c3172e86f2563a874e6d2d144d5d55faff1efcaf0809e8
MD5 29841f8456c70780ee6aedfac55c0fcd
BLAKE2b-256 facd5541517706ef5c4d10ad5e8d30e7584fa9dcec1375f25232712a06a453b0

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