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

Uploaded Source

Built Distributions

ckdl-0.1-cp311-cp311-win_amd64.whl (75.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

ckdl-0.1-cp311-cp311-win32.whl (65.6 kB view details)

Uploaded CPython 3.11 Windows x86

ckdl-0.1-cp311-cp311-musllinux_1_1_x86_64.whl (107.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

ckdl-0.1-cp311-cp311-musllinux_1_1_i686.whl (111.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

ckdl-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (107.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

ckdl-0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (110.6 kB view details)

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

ckdl-0.1-cp311-cp311-macosx_10_9_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

ckdl-0.1-cp310-cp310-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

ckdl-0.1-cp310-cp310-win32.whl (66.0 kB view details)

Uploaded CPython 3.10 Windows x86

ckdl-0.1-cp310-cp310-musllinux_1_1_x86_64.whl (108.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

ckdl-0.1-cp310-cp310-musllinux_1_1_i686.whl (113.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

ckdl-0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (103.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

ckdl-0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (106.7 kB view details)

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

ckdl-0.1-cp310-cp310-macosx_12_0_arm64.whl (82.5 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

ckdl-0.1-cp310-cp310-macosx_10_9_x86_64.whl (89.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

ckdl-0.1-cp39-cp39-win_amd64.whl (77.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

ckdl-0.1-cp39-cp39-win32.whl (67.1 kB view details)

Uploaded CPython 3.9 Windows x86

ckdl-0.1-cp39-cp39-musllinux_1_1_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

ckdl-0.1-cp39-cp39-musllinux_1_1_i686.whl (115.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

ckdl-0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (104.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

ckdl-0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (107.7 kB view details)

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

ckdl-0.1-cp39-cp39-macosx_12_0_arm64.whl (80.4 kB view details)

Uploaded CPython 3.9 macOS 12.0+ ARM64

ckdl-0.1-cp39-cp39-macosx_10_9_x86_64.whl (88.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

ckdl-0.1-cp38-cp38-win_amd64.whl (77.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

ckdl-0.1-cp38-cp38-win32.whl (66.0 kB view details)

Uploaded CPython 3.8 Windows x86

ckdl-0.1-cp38-cp38-musllinux_1_1_x86_64.whl (109.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

ckdl-0.1-cp38-cp38-musllinux_1_1_i686.whl (115.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

ckdl-0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (104.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

ckdl-0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (107.7 kB view details)

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

ckdl-0.1-cp38-cp38-macosx_12_0_arm64.whl (78.6 kB view details)

Uploaded CPython 3.8 macOS 12.0+ ARM64

ckdl-0.1-cp38-cp38-macosx_10_9_x86_64.whl (86.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

ckdl-0.1-cp37-cp37m-win_amd64.whl (75.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

ckdl-0.1-cp37-cp37m-win32.whl (64.6 kB view details)

Uploaded CPython 3.7m Windows x86

ckdl-0.1-cp37-cp37m-musllinux_1_1_x86_64.whl (108.5 kB view details)

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

ckdl-0.1-cp37-cp37m-musllinux_1_1_i686.whl (113.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

ckdl-0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (101.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

ckdl-0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (107.5 kB view details)

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

ckdl-0.1-cp37-cp37m-macosx_10_9_x86_64.whl (84.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

ckdl-0.1-cp36-cp36m-win_amd64.whl (75.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

ckdl-0.1-cp36-cp36m-win32.whl (64.5 kB view details)

Uploaded CPython 3.6m Windows x86

ckdl-0.1-cp36-cp36m-musllinux_1_1_x86_64.whl (107.6 kB view details)

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

ckdl-0.1-cp36-cp36m-musllinux_1_1_i686.whl (114.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

ckdl-0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (100.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

ckdl-0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (106.8 kB view details)

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

ckdl-0.1-cp36-cp36m-macosx_10_9_x86_64.whl (87.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1.tar.gz
Algorithm Hash digest
SHA256 adca2a4f140fb5702251207d0dbdecb3688b297be9c9fe0531b2ca2a5a137436
MD5 217bb4732d81d2263560008c6db05cfd
BLAKE2b-256 e8e19bd844fae17fc75bf03538901d792f0b45c324b7e983522e354e45ce55d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75d713f5a424f1b32cb444fcec4e57e0c0d0be55e08a50d6871eb421abde13b6
MD5 9be3f2edb6a6c08d12bc4d6b17ac4a38
BLAKE2b-256 d049860e7d8c0e91790193a5c5359952813f00507815c23986437a3b22ff26db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb46997cd957c56ccb7f00a3b00bbb28dee60d5d6741903a9063cb340c1ad35d
MD5 073cec496ec7a9e25def30cedfead245
BLAKE2b-256 fd3b72ac34958fce91de1c735400dfc447c79db1112d70121e015f22d8114cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36dcabac61e7c6c527ef0be9653617e5531dcf3b3160f023b540dc3826272539
MD5 056a437178fa74fdaf2f18e1253602b7
BLAKE2b-256 3e8629e083476d391aab74b5e971feccdc181f9a5d447c401d4e21b52e05c667

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp311-cp311-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 111.6 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e6b12f5c87136a6606cad9ac016423505f0cb9094e375dcd70f7155951231b7b
MD5 a796070ae7c4d26c3afe809f5ef48b9c
BLAKE2b-256 561ecb7cfeacb50c72d7e398d6a6813ff73af165f6d47fdd596456d19c92e756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91dbc7108e03c54eeb6f574c37eaffc7f17293dacabe303e9b8956374f0bcd52
MD5 09c532f1100acc935fa807c4b4456248
BLAKE2b-256 44cbad46e0de715be11a61427a54c8611d7502aad73b04179b2174a23d2b9e0e

See more details on using hashes here.

File details

Details for the file ckdl-0.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-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c42155ada1267ba1ed5742cf67ddcf7f92804191aefd31e9bf2284cb71c0707a
MD5 fe7bbc6bd163606a7f7e33fcb3b0de92
BLAKE2b-256 46df83356e7dacbd5e8fad6ed91828c5c798f8b1fe12cf92923ab880c28278f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e4763ebdd0044b04d07c3cd718e16629a095330117e0062aa1d369bf6507dea
MD5 893af9f3e30881548800a1aa010cfd4a
BLAKE2b-256 9a879851ffc375dedb31a57f31ba75d2cd804de110531c006dd1beac7c7d4304

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 db46d74b2b4a27dfafdd4079b949fd47690800bba35398a437f741d37ac4e01d
MD5 1a33ed2b5f48d546507b4fecdb4f9f43
BLAKE2b-256 9ac3848fcb0be39472ec479ae190d3aededb15d41779be6bbd14480585ace185

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 20df0fa5b86083ccc04e50df4ce0d0e83affd6f728eb112360183e66cce8730f
MD5 b4b656c7fb1dd2888089156a86a3643b
BLAKE2b-256 b3cdf6adf2f83b1f3d55d95c5220208f7d3b9337f62864e09b0b4a127744aaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6faea45f83664498c91c81105cf6596a2bfd421752ee4fe701a00b30b957fec
MD5 037d7194acaedc34207eb44fbec56926
BLAKE2b-256 0b81ceaa83e97ed762a5c71cfe7ed5e1094bc4e6460cc196d86ac06441f84f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 113.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e941bc154906bda5033b8e74a0f853a6d16ba9b2b231815d38181af817137e9f
MD5 b22527a6433531221fa2dae1ef32ea9f
BLAKE2b-256 1aa4043c5a543284249c6e7957ee0b423b4e54060658daed457c26e4a7f2ea34

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bddbb0967f417b3f7c2998d3e88285c24aef69fcf628b18ff426cdfaeca5f24a
MD5 721118ef84797c53068e64c96840d896
BLAKE2b-256 eafb25d56a72374f66fabcc41ec0242a0a1db4015ceae6a450865753c10bed79

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbf52b4d1ad18a1ae2006adf4810a1b9833633b76396a0f3c2d05bbd4510836b
MD5 2199046d4ab3c2aa7159f2912746eeab
BLAKE2b-256 9017cb2ecdbf82a0c32821e7be39446fd7faade62a4b5dbbd2b966a9eb6afe0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 8572743474dc0a3067211571e3eda76a4457ac3ee8229ba834ef1726f8b0c39f
MD5 60ea3f08c5a9d89c4e41b0a64e5d773a
BLAKE2b-256 9e500144103f6fe3e43a37a12da9a2e6bbef05110c5c4b9a6a1c69aef7ce3b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8fa0ddb35a8bcb2880fc69a2d2f6c6a7ddd0c57eefa2134f3d919801abfcf7b6
MD5 6a7596f9f81ca658466dc802cb29b3d5
BLAKE2b-256 1534f2089e6b1cc787ddf332a7f81a8fcd9c47ea88ceaec472baf95aabee1095

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a89c72d3aadb2776d8101a84f3839591a2091b3ea084533ac90f0f753f91a679
MD5 63b317a12dc28c25ea85fba415a25b7d
BLAKE2b-256 59bdf9ec62dd61445e847b79a7fa6b6cb69a2d2ffe72224d0cc21581e2809dfb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 613de827e01b57424d70cb947a92f404e84ef6d6fc127b7ad5960c56c0d66f20
MD5 ff24b62489e502a86f9ad1aac750adf8
BLAKE2b-256 9be8bcc149f1b210d900f502615b4b8caad5870b66530bb4a7c85e7cefba0889

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b806ea3e7a03b94cab1388e9de75b1bb0388058086e9b8ba2ac1fd14d2b9b357
MD5 a2a5106cf3a51937c23e644241096db2
BLAKE2b-256 96fe32b543d3cf0d823d7fe1c507ebf07cf4c075cf0c0836d8842590a8286abb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 115.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0928198b515e0913052c12772637849ee55a921bae35122885d10e86c1449813
MD5 bf05fb407e5003b4b38d765ff2cc11a7
BLAKE2b-256 e4a7f89cfc0f6094c669593644bd01da92a318dbbc88299767fe8bd716d1c9f8

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c1df4e002729e4833db90f6afec5edeecee4ec7fe48b071e321f0a0c74401993
MD5 73816486efcf491d332bb1e574f99a94
BLAKE2b-256 7d96462184e031a99e0881c4bf2ee10fe852ad01fa46c0239e97b229d888f070

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dd73421869ada9e81143ed44c30ca379ab27c2855eabff4f93c823187aac0d0f
MD5 08c19479d87cb01337f9a5bd78a7c7b9
BLAKE2b-256 1fd7af34d7b5c082ff0726bc490eab988ecd4e2d44a60d77db0dc24998a27d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp39-cp39-macosx_12_0_arm64.whl
  • Upload date:
  • Size: 80.4 kB
  • Tags: CPython 3.9, macOS 12.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 6dbce203242424f836350fe4237a433ed09599296baaeacaf00b056f547f7282
MD5 456d6ce281eaab7324d0dbea0c7ecda3
BLAKE2b-256 40de23455805e234eae9b2307800aba9559d1aadbd1b5f5cf3335a4e7a2c09dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 388e22e7f6bcd41d97dc09bb5fb817da4ab3ac1fb9b8277ae8742b64341f5659
MD5 0ed184cb94c0b8ce753158bf47bfb724
BLAKE2b-256 631e3c73d387b31e3a39fc4225a53baf45e5822fa3fbac3ae73af260cd66fd58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 945d19d8f9964372e75205cbf8a612a2d3c2c8059e7227b33ed12d4a75d19b88
MD5 aced143a5eda0d273d7df42adeb6ead8
BLAKE2b-256 5ca5d0c434fe025f2a2b9b26eca0f42995048ff22c2989937133cbf1319b2ddc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 073c07034e13bc46a103c318b20adec6845099e15af6d872fd1e48a0a78249eb
MD5 a91b4e25c8efb956cbf854c418ac323f
BLAKE2b-256 9c7817a4ee5c0264bc1533809a9d65ce799ab18a9fed03aad32172d1ee8473af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3f0ecadfdfca1a99636b0386ad8db2f9901c8bef8d0db7c115a93fc49fdba84
MD5 f35b4bfc7dd60ab5a6c026151a7abbb3
BLAKE2b-256 4f6dfc83dd60ef8ce866eda59f9cd99dd7144c9f8f700cf3ba4797e9d3e7b108

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 115.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 007b7d8ce801b1648135d54a8eb1d97f448ec6b3c2e4e6070179bffa82215465
MD5 e39a47b74ecb9358acf59691b94862c9
BLAKE2b-256 a36bcdf13257e53b09073fd46b54edd58e34b1ae408698d5d7876b076237993c

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 10183dc8ec65359a7373e2e9123ef51b13605e394fd305a43bd214edb82c0067
MD5 22ddb2a736319ea2441f1576880923e9
BLAKE2b-256 44c8e674438e1e308d689d67662bc44ba0d5976c28f23388bea1a9f2db71643f

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 629626a1ccf468bda0bc38025946f9bbcaa1666d82175b27caf258549df0b350
MD5 15649d1886d7dd9d750360934ea70cc2
BLAKE2b-256 751c730950ccbb4b28112f784842790853a3c0f67711b2d2809cdf9d2a4a1c8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp38-cp38-macosx_12_0_arm64.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.8, macOS 12.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2675eb08991c796430c1e23606ab5c4b5400ec859a4dea94b856e191486682d7
MD5 120eaa58387e31c3a6f643ec295e61e4
BLAKE2b-256 1d60f9fda4f30d38e232a700b7248e7ec24251d9bd443bfb0c40f1074adfae0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c61d8311aab2c69bef8e7e98e64597d613b85209d5cc34e71c0d95a20707f1f
MD5 87a80d6539ed7828e729b94edfe0effe
BLAKE2b-256 a184e6e611e529b3f30261eab69d8788e8ebf9c090ac32fba3fe8479bcce99d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 be9aceb1325e31cd698961fe58e7717e0442eb874297862f053a70a9cea1c64f
MD5 b0bb878098c6f4b2869d2951607e7f5e
BLAKE2b-256 f75f1df12d7c8e9e988bafd60f4ebf63ab5b7b8dd1d468510ffb2ea111511333

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3cdff46fd3983dc2e54019318501e2a2c993e30b7c9c3f297c67d1f6511d164d
MD5 914a87ed784799a62c01c2d5860781ba
BLAKE2b-256 6fb864ca9c25caca191cbb5c476cd21d3856f9721a4d8087476258c39190a0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71905a0034adf15252f8a521f7c9656642abad03c8fb8095c5323fd62e957568
MD5 8d5c5e1d7c69334f02bf2ec00bd13f9d
BLAKE2b-256 48a9e702cca95f4e6f2869acda87a624877a553275fa1543126c83c3f83d8693

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 113.2 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e9f954dbbb7fc104f7443dcda34f46585288b5e93927d2ec4a1ea18db5a572b7
MD5 6186b85dfeb9c3bb73f066b69693e20a
BLAKE2b-256 12c8d62d6d96962592f884081567a8a4ef40fb673892a0f0de555b5dad0c0806

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6a86a339adedd7850f199a30fcc36b1e949a0cf1e0863cfa26f39f468ed573aa
MD5 a88370a158cb74aca58cb442b89167d7
BLAKE2b-256 ecdae8fabf3dca770345126d88e7defcfa00624c1d8519e36d44f27a7baa1306

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d19051612df70b3a424480b3a4f6e567d315a2363c05cfca354b038d5c7ab8e2
MD5 96dc8b365727438a44e7264e4c36e272
BLAKE2b-256 d314ae0bca22d2e70ad67bafc568e100e98a0a97a27fb4655d84024e302bb188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ff0d27aa7e2a6224a8a68d8617d3a3ba42113103d110cd41b6703c6986853bf
MD5 4f160cd717140dc3b68a67a7a0cd6085
BLAKE2b-256 14e1c766a222d4dc36c542f9120fb367879db760e4cf3c84645783c21e4c90c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 76e8854adb87e3521a1ab70861d0f8b29e4a392522f6934f4852cde73714ab78
MD5 30410b418c058f747a13c7e0fdac9296
BLAKE2b-256 96ed1154ad28986ea11e7646915cac83c702f9d41bb21342b99531e575b2aa68

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for ckdl-0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0bb2728672f2153bc03111a35828432238acdbabac98772a731559ac6b0e7efa
MD5 b04fc381377a70a4056854640de525b7
BLAKE2b-256 32ee2985869249593aedd531905132b8750f5f362379aeab04703f72c87f2f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ec0077cfa8dfd3fb7d681010637a691167da693773904700a97649014f047a3
MD5 0775a3935ed0bd7d92192a62c0a5b993
BLAKE2b-256 93996aea4530d4757b52f0ca07998bd6e378b1f2abe4f892053702af54755685

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ckdl-0.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 114.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for ckdl-0.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 af6107a1145e71eea07556789b5457a20bae8d71336f98d87b5624e23d29bc1a
MD5 8660eda0c6556114ad6c4e205e71bfe2
BLAKE2b-256 e949a2e80f00a32f44d3245424178b7766af7e1d4af7a394875ba939a73f7e43

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ba8e3eb4d511963397113a90c5bda7696bc57c04ff670c7ab4abdfa11eaf7031
MD5 f40977aed19e5c05260d6bc973914de3
BLAKE2b-256 78d3f018eca8d58259941ef7308e3c4f91978e0d83c9c9707c121a9f57b22bcf

See more details on using hashes here.

File details

Details for the file ckdl-0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for ckdl-0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3fa465a68cecf3f2c97021a8877f1087a6e6e4719a0407162ddcab8b6a47145c
MD5 782b4e4675706ab4a308a775ab133430
BLAKE2b-256 fed0134a06089a0c7cc679416ee76cf54450735e4935a2a10db0506305c741c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ckdl-0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66817fd0225d01f04402b4862b5ecee19552545fc027f0bac2e484cd1670c1a4
MD5 7f3541b062861ae9f6518e3c368b6e4a
BLAKE2b-256 616bcf2830b83a0943fb372d9a42d4a8e1525b2cfc32b6d06f64226e05cec4fd

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