Skip to main content

KDL parser and writer with a C back-end

Project description

ckdl - KDL reading and writing using a C backend

ckdl is a C library that implements reading and writing a the KDL Document Language.

This package lets Python programs read and write KDL files, using ckdl as a back-end.

Install with

pip install ckdl

Examples

Reading

>>> import ckdl
>>> kdl_txt = """
... best-primes 2 3 5 7
... colours importance=(%)1000 { green; blue shade="синий"; blue shade="голубой"; violet }
... """
>>> doc = ckdl.parse(kdl_txt)
>>> doc
<Document; 2 nodes>
>>> doc[0]
<Node best-primes; 4 args>
>>> doc[0].args
[2, 3, 5, 7]
>>> doc[1].properties
{'importance': <Value (%)1000>}
>>> doc[1].properties['importance'].value
1000
>>> doc[1].properties['importance'].type_annotation
'%'
>>> doc[1].children
[<Node green>, <Node blue; 1 property>, <Node blue; 1 property>, <Node violet>]
>>> doc[1].children[1].properties['shade']
'синий'

Writing

>>> import ckdl
>>> mydoc = ckdl.Document(ckdl.Node("best-primes", 7, 11, 13), ckdl.Node("worst-primes", ckdl.Value("undoubtedly", 5)))
>>> print(str(mydoc))
best-primes 7 11 13
worst-primes (undoubtedly)5

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

ckdl-0.1.1.tar.gz (62.5 kB view details)

Uploaded Source

Built Distributions

ckdl-0.1.1-cp311-cp311-win_amd64.whl (77.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

ckdl-0.1.1-cp311-cp311-win32.whl (67.4 kB view details)

Uploaded CPython 3.11 Windows x86

ckdl-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (111.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp311-cp311-musllinux_1_1_i686.whl (115.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

ckdl-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (110.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (114.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (91.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

ckdl-0.1.1-cp310-cp310-win_amd64.whl (77.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

ckdl-0.1.1-cp310-cp310-win32.whl (67.7 kB view details)

Uploaded CPython 3.10 Windows x86

ckdl-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (111.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp310-cp310-musllinux_1_1_i686.whl (117.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

ckdl-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (111.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (116.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp310-cp310-macosx_12_0_arm64.whl (86.7 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

ckdl-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (94.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

ckdl-0.1.1-cp39-cp39-win_amd64.whl (79.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

ckdl-0.1.1-cp39-cp39-win32.whl (68.7 kB view details)

Uploaded CPython 3.9 Windows x86

ckdl-0.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (113.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp39-cp39-musllinux_1_1_i686.whl (119.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

ckdl-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (112.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (117.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp39-cp39-macosx_12_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.9 macOS 12.0+ ARM64

ckdl-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl (93.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

ckdl-0.1.1-cp38-cp38-win_amd64.whl (79.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

ckdl-0.1.1-cp38-cp38-win32.whl (67.7 kB view details)

Uploaded CPython 3.8 Windows x86

ckdl-0.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (113.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp38-cp38-musllinux_1_1_i686.whl (120.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

ckdl-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (111.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp38-cp38-macosx_12_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.8 macOS 12.0+ ARM64

ckdl-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl (89.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

ckdl-0.1.1-cp37-cp37m-win_amd64.whl (77.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

ckdl-0.1.1-cp37-cp37m-win32.whl (66.3 kB view details)

Uploaded CPython 3.7m Windows x86

ckdl-0.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp37-cp37m-musllinux_1_1_i686.whl (118.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

ckdl-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (115.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (87.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

ckdl-0.1.1-cp36-cp36m-win_amd64.whl (77.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

ckdl-0.1.1-cp36-cp36m-win32.whl (66.2 kB view details)

Uploaded CPython 3.6m Windows x86

ckdl-0.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl (111.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

ckdl-0.1.1-cp36-cp36m-musllinux_1_1_i686.whl (116.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

ckdl-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

ckdl-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (116.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

ckdl-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl (92.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file ckdl-0.1.1.tar.gz.

File metadata

  • Download URL: ckdl-0.1.1.tar.gz
  • Upload date:
  • Size: 62.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1.tar.gz
Algorithm Hash digest
SHA256 59409639be866c527c1cf93ac75e1f1e0d476c5322ce1f52ce7daebce3772ed6
MD5 a3bd0c121a02dd96d99aebc985ae4625
BLAKE2b-256 57f62ebe8e42ac1a76384db1a1b06c30da6c51929a8f0a6e1cda556210cedf45

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 77.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e31c8bfa5df6342915c3d81f2005ff711aaaafca426be1e44cebe3f2845d7d5f
MD5 589a6f6e7227d241cb41d68b7333bc81
BLAKE2b-256 4947662813c5b407dcbeda0dea55aceed72459d7c976a927f89c454f8394564a

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 67.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6f01a1328ad78909ffc8a3bedd4190dca7a599ac5890894c5e192b95624cfae6
MD5 9e9f64c939486176c81f63d84eafd0d4
BLAKE2b-256 85d095dc6720872675089ad5ae97d611e37a6eb087bb2d383c5d1f95f437a78d

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1f6bd9d9f6e2c6c4b1788e35ae4db7f7bebc1c401c12603051bc46baaa20b1d
MD5 ad9a179d9e923e93a33e7e96d8516808
BLAKE2b-256 bf35be73febb3976c9d8b21459aaeb6b0e08b09495d04e00923cd2b09ec0f885

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b4451a9e5b8aa779a9a01ebb533043e0972e9835e738cc7e1e26f2bf7f46c5fe
MD5 d6a0af3424798665538ed8f137f15548
BLAKE2b-256 84c286f8a78e89d576cecc8a0d8fdd28a39b49b1fcef3f28214c2d866780d8d2

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b2c86686af8da06d4a95d2a82c312d9a22fe196d9b0c5f3f314d3a5bbecdf94
MD5 51d01c06aeb1f49a9813382ccc236033
BLAKE2b-256 974bb0f2d343f5058e7645d4b4204fa31405e7f703a6d01cbabdfe4b8a439335

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0633511a3bd89fb517faf29790e2df92b5206db6aa33bd8bf7c8b31de45a3b35
MD5 bd242061a81954c451714ea99816e4f5
BLAKE2b-256 8cf4275ba0c1ec8ef01841c6abe4149e8b240e7e9c2d6a9f6740dbc641fcac4a

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf428090f5c62b3526515ef38cee6192cdd9c5b69fb46a04b7f20ef0ce4df81f
MD5 c70165bfe2192c8e6036d63719b2f407
BLAKE2b-256 b5c149d1fb339a908e4f0d4d9d2223dd3158f578166d7d91c1d008db32e69909

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 94c92fc2923ae94d51a9ec13332da79f7c08e6889d6360858a46550f1c5ad1cd
MD5 96ef8ab72406c85c3e5450711a4891f4
BLAKE2b-256 639f303cf243933222f7a7d92bacc8c4c93959ea6a03f334e0d50df752591f7a

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 67.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0ba3cf942f0633a911fa2bc94ac47f77993e54a76a051bf26bca9679882a766a
MD5 c5965c6be9a01a18df4072d3e02aa27c
BLAKE2b-256 0ae403ec0d902e359e24e24141dc71c7c4a4740c315e46b71666484412e92ce0

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 733e07c3e972b556ccc7428c1b4c10eeb72e7930e69222b618b5f83a2bc7e652
MD5 db17a9a237237d17837ad4d0a81c3ae6
BLAKE2b-256 943297f1f99cfc9139eb70c4e07392c3521d87f6474aadc20b1e4ed552092ab6

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e4d1bf669950eca38ff0b6a7256f7e2608d981b8a05e02125d85f02b4e8e2294
MD5 a5e67b7adf4f02a520fe26f9179b1bb3
BLAKE2b-256 87f95f0f9ba36591baa25a3f7f27da7624ea57ad7d9f425d3dff192141186a11

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27cb59dbfc9085492aae4ec139c85953ad789db2d096376797d9f1cc301ef3eb
MD5 12896caf8af66ddcc87cbd592014a75b
BLAKE2b-256 81ce950504aa355fe03f376e4d33bd4727dd3272d7dd08d58a71667705ba4e8f

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1afeb0e0d43366572a70e9e9d0adfd2a0582c67213f955e02bf6ed153064b6d6
MD5 542ca87a6aa824ab421ed8890496e9e5
BLAKE2b-256 06f40dad236f0d6ee1ba9ae5c0e28b689b164a620c26d1d2783c916d329633f7

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 bc504380722320bf0ed56bab2ed652aa0a5e6351f5b59a063f9e621d986a26e5
MD5 1c1d5f325ab23046c4404f8c5718cd50
BLAKE2b-256 69858b013cd2cad0afbbfe1922268f7b848f0c4a05013656583ea708ef700e66

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c3bf0f73a3a3f84c6162fc80e463def89969617d52249dbc8826a43b4af0700
MD5 a3d587d8cdba7f529f0cffb1577de401
BLAKE2b-256 f57dd8c6a828a1de22ce3ce698edbb1bb26dcc9dd707d2c40ad2ef0c14fc5bc9

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 79.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9207356e6270db0c516004ec757f661a46631efde81b9824614e0eae8d9349b0
MD5 98d9d32b92606d194120a01e7814390f
BLAKE2b-256 284c0c660bd210520b08ad6dc3e0f96dcb0d27d04905a5df732a9050fc0575d5

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 68.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b2caea84b7612b4c228e97dd236bab2e16fd33362c86fe869021d8a64cd54434
MD5 ec516dd9ddc20868bd974203a6d4ab59
BLAKE2b-256 53c1a7fe607fd11351d5a6c0254065008ad3158071a40ed76c93dbed0758e273

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be21d592f6d85d8932b82d1ffee8c5cb8a250e90974a7e255fff9e7440af0fc9
MD5 bd653fde37547b878897e38aa05d80fa
BLAKE2b-256 39b56a8db4940c87811968169b8b56910c5642f3f2bda212a24d8268f5c4c8ae

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fefcea72404ae8bf07bfc6a2b012d9cf53154dd7213a0966d1973654bc3ac5bf
MD5 54a813efb90f54f4d702ceab2a3334ae
BLAKE2b-256 2371fd8d9d664038ea7075041f995fc065be9546d7ccd201e1ba7fbaea5ef85b

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 521d19ca30d69587f34646fb7e64281b2e73218ee4c92afe72395274eb66e735
MD5 34d3768535685fe0e20479a3203e2741
BLAKE2b-256 605f209ac91af2e6a07c4945a36bb8051d520487fb65282f5d5f54f61d7e7688

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31b9b332c606397c7ead1eb71c39acf2efc21a0dc2717a9b591df65406bccf67
MD5 ffe1f59eac7e8362b52cfbcacfad9697
BLAKE2b-256 7398b75ad8f0120fc5ddf364ab0c53a39e744b310905b052d2423c8cbfe0194f

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 73cdbbef2615f2c0b03d27b92c5d9820a17fd9da31aaf6796807c9a1e777ec79
MD5 15bf05ad2ed3375945a4ae205fb3ee95
BLAKE2b-256 e8e0a38027a5fe155edeea828aeee7094565188900e96542703312b74a212b2b

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2734d43514f815273847527b9150724d602ad6dcce6d5b0572da2c777e622d16
MD5 aaa4b2af84bbc9f7ca88e747f58d203a
BLAKE2b-256 3e565c11276725c110585db6d2d3e17a8cbbc011610faa77178380e4d744f9e8

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 79.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9e2c66ebc2a07fbb683b4be316d0224f7e7e501ce9518d727eb09d3ac423100b
MD5 5e5f35dd7f9c47983d48efc7e85d6824
BLAKE2b-256 30fcd94a58459d10444cc62041649b62d6742b1f69444a80c26d63f35f7d9aa8

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 67.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 204b6d86867bf772f9178050c08fb8a6cab07468e9b506ffe6fa25e8a31cffd5
MD5 3a753e158960a290e9750823fb25363a
BLAKE2b-256 f6515e1f34b9b111e2494f99f46469b73389075b7aef4adc201a7855de0f0575

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eae7c81ddee0c54e47ba18d169cde73c680e5e38611a94f9b3b55128aa7b990c
MD5 257fbb9b3f77d157bafd7cfcff481b39
BLAKE2b-256 e5f785958956cf5974447e8e4f4fb221b52fa26d3cf8a3c6cc1d7cdf54abc8f7

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a87508c4c70b2a81ce81c730c35c2e9cb30f9b1291208e998276e02fae907dd1
MD5 572b7d7d908d76dd72c3a93846c3167e
BLAKE2b-256 7324cfeb2672634261e8909378b5a8fca7fc484fdd019b98a18462ba640aed62

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47cb7cc2b249bd33b1f11ca940c69a18c6a04546a0d951771ac87ed1ab297a7
MD5 b37d50049f94084bbe66658c2df3e863
BLAKE2b-256 92834b174aba1542b31181cdcdffe407892f7fa4f05f20aaa332f5332fabaf36

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f491462dc04e4d3741b5256882f2249be397d0c072a1345e2f2a8b31f9daf607
MD5 1dfe3ca3be124c00421113c85676ec2d
BLAKE2b-256 dde8e94257cfa141a71047caf564fa9105aa0f72f0530e92093a69d645595191

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 18057662b2085e694e02a0f90a4f5f75f97bf57af73baf29e3fb3e0fcd68bba1
MD5 4048f588183124d71536920aa8b62d8f
BLAKE2b-256 e48e8e6bd8b03ab0d19a4957899ad3c51899b6c36d318a494dbbfb5a8cc6fbd0

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51ef759b14bbd3f4a0bf14223ae01f114fb36b4042d7b0896dc78314e9fea641
MD5 9976de36f60c8f56bfd7035d97116230
BLAKE2b-256 21adf70d9270d0cdcc4ed10835cd9cc23f1bef8972b0589bb00949359e217ecb

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8fb42b68cc73aad9de6c90480ece00f077d3df137cf33b172503df27684b7ac7
MD5 60db4a83e77c1b888f19e7c9d64d1fff
BLAKE2b-256 a1584c2baae3595549a6a863d3a0c86093fc1726e703c92804b65cd558ace0e9

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f15e9d71800dd5cad7ffc98fa14ab63e42ed55a028d81454bd0454f4a455403c
MD5 714f35b69a35b32bbf2cc6132b662f72
BLAKE2b-256 c0cf04da1fd9f588e082bdfe4f9467684af38f428fb5c192cb1a6b4b3ce62aa9

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 342e12aaa79ab967ebb26bad08bb71fe846a717326c0a23555ce430604301a26
MD5 c9908d6e528ec9c9810497686d3f9d0f
BLAKE2b-256 329773b98b77b2aadcb5520fb6fc39d491a82e8079d0e07c969e77967138a2e9

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 706eb8be760f321e013bb67929279728045f7a2e133e5674bed55462f3827c88
MD5 3491d48a391cf0804830adea6b087b31
BLAKE2b-256 4d3bef5f522e63484ee2b98a01f3524515a494ae72c4967057c623d805b9d86b

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e3b25402f7b3919e84f3ca02e84758234632bf7d8b6ec31ff3d60d63296106d
MD5 db64286bab8cf8355dad738ab80a0f2a
BLAKE2b-256 e979d4cb2755deb24563ad5822894e5c5144aec7baadcdc652449658bce959fa

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 104bf8778b586544eac55f8bd188f44f33360407251721a829aae4208c3f9db0
MD5 8d442adcadef53120f72b7b2f622d8ca
BLAKE2b-256 ac3f7a77b4adecf3866423d0800644224cbe6876d9346e0c06d42e1ba7781e73

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cc18a7f2490e2380118607946fc9463a519c4d9b335844af80379397ddf668a
MD5 c56a1b53671ae03197df19e079aa34e0
BLAKE2b-256 fd47affd2f804ad6bf15ac16069e89a356d9b385db9644235c68621b5d39828e

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ab8de5aa7b9f88d0a2ea7603d4acde5e282f4042d417e767dc26aa886ed39fdd
MD5 e77d61e53cf00bee12d37d99cf8a7418
BLAKE2b-256 9c211917bdbfa706c7f202c803dd12129281a54f9c64eb8f28aafc3f3ed077ce

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: ckdl-0.1.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 66.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 142746da2956a648fdf0454378cb750f8070fa2a06ac3066f231b6a86d608dc2
MD5 50c42bb2c72662d24c68de469c03edb7
BLAKE2b-256 9f423713298c773b1271ab998a056f484fd2dbd5d7204aaac0c4076f129b5ff0

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d963a3ef387ea88bd3097801cf936fd3d0fa8696363169000975536be537b218
MD5 f2e4677a776201ef6117a3a819b73108
BLAKE2b-256 d81c5bc31513b6515ff1ad4ca7276e59b67e6889849b729bafaa6b4270b4cb94

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2b272f70e4d4e2ebfd0b202f7e1e541f9a602d60a234f3eaf31b4cfc7ce50d97
MD5 ca161024cf7742d99d2c03fee08d7b38
BLAKE2b-256 068f456de760e8e67bfed4d09d25983f22e39f0a206014e4622ddc1538521195

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 955d3a484d70af73b15db1547eeb319fac35fe4890798d7115fada0c949c487b
MD5 b50aca12daf49557c294803babc9b19e
BLAKE2b-256 c087af7ba8b4a86f503eca1c7ca2345d903df7ea9c5c761712c6880862eb75bc

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5437dc9696d87bd3f5a3e2913aadde4804541d6863c69dbafe4d76e7ba3471d1
MD5 c1b8b4edb164e4c20272366251500aec
BLAKE2b-256 2a5326b1489f2f3b1c8938aee6c1c98acb4a6395c1e0d9951299a4d6568d9ea9

See more details on using hashes here.

File details

Details for the file ckdl-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d1ef9812623cfa62dd232493242a8624dc13d475aa9438e36519ab1803bd0fe
MD5 648dcb9ce1ebe2419f6ffe4b73a0e8a3
BLAKE2b-256 25e98c4ba23a5035d8e12ac86475f7ec0d853d10b948dc096956b991711df378

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