Skip to main content

KVH format reader/writer

Project description

kvh

KVH format is a lightweight key-value hierarchy format for storing nested structures. It uses only 3 control characters:

  • <tab> for separating key from value and indenting nested keys;
  • <newline> for separating key-value records from each other;
  • <backslash> for escaping previous 2 characters and itself.

For example, the following file introduces salutations in English and French:

salutation
   en	Hello World!
   fr	Salut, le Monde !

The world salutation is a key without value. The indented keys en and fr are sub-keys of salutation. As salutation has sub-keys, it cannot have its own value. That's why it is immediately followed by a <newline> and not <tab>. The text Hello World! is a value of en. Note the absence of quotes, double quotes and alike.

Let suppose that this content is saved in a file salut.kvh Then we can read it in Python3

import kvh.kvh as kv

# prepare salut.kvh
with open("salut.kvh", "w") as fp:
	print("salutation\n\ten\tHello World!\n\tfr\tSalut, le Monde !", file=fp)

res=kv.kvh_read("salut.kvh")
print(res)

# sometimes, a dict() can be a more tractable structure to hold the content
d=kv.kvh2dict("salut.kvh")
print(d)

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

kvh-0.3.6.tar.gz (32.9 kB view details)

Uploaded Source

Built Distributions

kvh-0.3.6-pp310-pypy310_pp73-win_amd64.whl (113.5 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

kvh-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.6-pp39-pypy39_pp73-win_amd64.whl (113.6 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

kvh-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.6-pp38-pypy38_pp73-win_amd64.whl (113.6 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

kvh-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.6-cp313-cp313-win_amd64.whl (115.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

kvh-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (120.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp313-cp313-macosx_11_0_arm64.whl (89.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

kvh-0.3.6-cp312-cp312-win_amd64.whl (115.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

kvh-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp312-cp312-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

kvh-0.3.6-cp311-cp311-win_amd64.whl (115.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

kvh-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp311-cp311-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

kvh-0.3.6-cp310-cp310-win_amd64.whl (114.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

kvh-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp310-cp310-macosx_11_0_arm64.whl (89.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

kvh-0.3.6-cp39-cp39-win_amd64.whl (114.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

kvh-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp39-cp39-macosx_11_0_arm64.whl (89.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

kvh-0.3.6-cp38-cp38-win_amd64.whl (114.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

kvh-0.3.6-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

kvh-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

kvh-0.3.6-cp38-cp38-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

Details for the file kvh-0.3.6.tar.gz.

File metadata

  • Download URL: kvh-0.3.6.tar.gz
  • Upload date:
  • Size: 32.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6.tar.gz
Algorithm Hash digest
SHA256 7dc4b410058ebec859c24efa18485148f50af0ed7577115119ccdca1099c1472
MD5 8bbc187f4e17be7f58518439e1119a98
BLAKE2b-256 3f4f286b28a75441c00b1609d17937ec373ad252f73c2ab8932b38f5e2daf1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6.tar.gz:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce3b50bc8f8ad78fdadc78eda544bc4c13d0173dc713f4f5de9c539811daff47
MD5 b002ec2b08ddbdf438a68f662f85a92c
BLAKE2b-256 819672be6e08131151cd81f17128676ec5958e97fb40c763d8058f9333904152

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 912cfa7e044bb11a4a2c8f28cf983a1493411f539a689fc2202910f27a5978a9
MD5 f3ab05cb7ede4412704b9e05b7a5cb0a
BLAKE2b-256 cd7cbfff75c3248d6bca57289b00955f17c1995f0cb8be8dbbefd273f1b0425c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c495e2228a1048d66d5fdf2c09b96f6a906b955cc36ee0af2c03a964adbc320
MD5 c8d777c6b9ec08b6fc99b519192e5c03
BLAKE2b-256 ee1f3f51a37892f462252bacb5bce8e3f0cdb6329d0bbd8ef753194be5c90d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1744bd1a570569ed9eed6705d39157283b0cc69cab06826e3bb06f58da2e2ba5
MD5 a5b5b498941d61e3c023deb28cd00389
BLAKE2b-256 06f88b1b18b411ef2f49219ca6d3991e4a3f54bbee7e9b3cae7d2dc173c0f173

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp39-pypy39_pp73-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d46b0e25fe8752c739cd8584913bf94ac2523e988fc744c7de26b56d76ba956d
MD5 fc4a77e796344d2338f9487b0d572954
BLAKE2b-256 e74b3cd580a18177f2fa41c34f128ae23426819b0285fb35e136a6ccee7e4a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c237d8fb493e369969d16b1b16dc939f9bf108acbb6bc513d3781035cb28bdc
MD5 d4a8ed0b5a019828a7bbf2ef3e1d0d01
BLAKE2b-256 daba2ba559b7c60123b3ae6738a1b7246abb0d80af276a72e70804eb5450038d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8e57f83cb09de581f0fa4f8ee3ef94d30ef906670956cc47a42ea3f4b31f4aca
MD5 c74f7af5d2288ae7469e501320548383
BLAKE2b-256 7746909f507de40e361c0b3de73404c5f1bcf9206af439b0b65e63d2e1a9f13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp38-pypy38_pp73-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a90fd9636a7c38fab4ee7d7b16ace8b546ecc95d5b0b201b46dd41d652789e6
MD5 940db7d333c4266d5816c4368ff8f291
BLAKE2b-256 d7a424b5aec4dd7240f27ca3fc8fe9a2704ab6e63b78d1cd9da70a89b13c31aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfa9125ab95309f61e9e294fb405bf57f6ffba91ee8955754b9679a71e929f1c
MD5 69a11617a3582f0fef764c40c609a3dd
BLAKE2b-256 654c7dbeb6b48730eab9fede9a6d78a544bdafc472b484fec77427460568a70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 115.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cad1bfb75e37a88504d28aa981dbe5e4737c5855a5f80bae11d608a6eaaf0239
MD5 6528cd2877bfe1060ef64c6ba66b0c7b
BLAKE2b-256 8abca6d09df9228b00d517e2d3facc7db62fb77a4df0a5d99fe2a3f113c74076

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2246ec70edf021180f50894c0541270a7f5804c7a32d852821ca0e12057c2f00
MD5 bc16ed775f026409539a28ca86c1f51d
BLAKE2b-256 7f32a9efaed6ae88c02e567ff5b36588fc0f0b9eda06a045196c7bc631cc1bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba474bd818472acef1539d7694192bc0c33836c1ec3826e7c24a7f7f4afd6d9b
MD5 abc640cc12c2b07ec75d5c93f4706fa8
BLAKE2b-256 ff338fe7fb108ef9b4befddd60b39752da81b63557779ee5e998684192aee80f

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75e870bca3e8e9833c09ba92edebe2bc81990af383863912f724410d92ea04a9
MD5 11f36f8d933ca5878edcd7d1c8ed7da9
BLAKE2b-256 40c92aec6091b93426411937eeaa8b79b5f0fe478b9e7fe2e51ebb33b78e9f15

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25a3cd30154023697a9fb3be1cc875b2b85338434987b76d3a9ac2a57c9f278a
MD5 2c90656b1b40d3a146e60010187bff61
BLAKE2b-256 9271d01c4991b844b7a0383b1949524a859cbec30d29c70535820a4969e64554

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46632bc54ce026add751f23fdbd87263913d646ad36384dda31163a73505c4f2
MD5 46f2f726eff1e3837f6f29470dfbf4c5
BLAKE2b-256 fa7e4f2c407c34e3246ae5b46f64bdad0f36621d5bd5191ce22398e2ef2bad75

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5be4bce63f162fa3c53be332fc69b745f8918a2cca573c3739affd08ac365e10
MD5 c9f9c8133e83347d6773757924e93e62
BLAKE2b-256 440e0e403046cf34e35afac2d72d132f299fa09b6f2fe51a61d00827213ffb7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74a520ed5d7d6adbe9d83876780e27496fcb6bec3b7ff5ded0f0c4fb967ae0f5
MD5 9fc9f0953f453f9c3a9064e7ac99132a
BLAKE2b-256 82b6b2d4fd707ebaa17d9bf331baf4e719c820da8a04b7075d785807610087f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 115.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d46a8c5b9df18bdd563ad2e16fb3791eab57fa8279c6742b5d5a976e9b6e084
MD5 4eabbf6bb0452c5d9c6ce025f085c703
BLAKE2b-256 dc77633ad84d133a6aadda6d1bb3f159be11a464d1e3ebdc43fbd4e590827a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21f892210fb0da17e215a778659d17df9f8141289549f27a41d1fa65710ab48a
MD5 ad288872a4e088242dca8c6c64eb82a4
BLAKE2b-256 f2bde0b35129320be53b742f4f0f4d9ef175ff342b92ce3dfa4a104327e5b56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a4d57a6692df7eead1a37be71fcad8c6b91c18195331df39e1f52e88a7f0d52
MD5 1c7e39823b8cc0bad2c8e7f98401aaa8
BLAKE2b-256 cf20854901b0886a2890f37b1cbdf53ea8a62685bbfbd2aea853ddb94eea05d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f59ea3b9a97ae62907c980484e42ba01ffded79bf6a15acf3cbcc8f532865f55
MD5 524da0858f5d6a8350bb8c8cc17bf267
BLAKE2b-256 bbeed6ecd4b9ede280cd04f9991d553d4210b7894df73b391519f8d662fbf5f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 114.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3a452be8176fc32d36599913769de5bb761e5c1a980fd926023843400b08c20
MD5 180d5f3f8283bccd7eb4be9fdb12b56a
BLAKE2b-256 1d34537b9e58e43f227b2012e9439c8a1341bee85cc6b85e052c1a64f1b8b622

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 679c8d4bfe914db3d910ea9e2393ff92e3aec41e7843612ef8803b27ef0b9716
MD5 9ef6bbac9c575ed1caa765168bf02de8
BLAKE2b-256 92b1274cf3500b8cd6d7c66bdd3b653cf726cf62b3806336f2fc99a01b53b148

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c734f91cdf1fd8e1952f700c266bc717ab5095c6454fdc63dbf7a714c49ae19
MD5 85de4ab03b9c1bdbfdb13e9469f315de
BLAKE2b-256 a1ef8385e30d5a990b677af0166fc10077c387a6f392df6cda996466e8d50417

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90cf604873353b286404d16a2eaf91c0cd6f4eac7c92f784a67669a159926d2d
MD5 05b6d5c87e8549b4995da4e124ff776a
BLAKE2b-256 47584cabb64aa6f65107b8dff8d36950acf7c8fc658bb11e91c750baa9aff7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 114.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cfa05c37f43d71e496d1b73d789f03cc204977fb9f5ad0afbd2aed600fe49952
MD5 bcba7647710744fcdbe4482b760c0a78
BLAKE2b-256 ec64c1b55b9cf7b98efb6bc4d507397a574905ac4c888e3a42f096c8c0a36510

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d4aefd894e2670a85208875cc08215dd14a794e77231ff57dfe138a61064a3
MD5 f370da82be6255904f4e555d17cb6172
BLAKE2b-256 5541dbcbeb7ec3fecc5c61ce07f0581a5aa39174b7fb0e27e4b8bf98f9bd8952

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0c2d6cbe32e443762512e42c55708a67b9870a5c4382ac53cb056983045a6f0
MD5 15baaf7b839fbf07ed4aef3fbd27528c
BLAKE2b-256 61cc61bbbe234cdd1f9f70b4ed13f51a5e76c09f1805c8f8e6fc397ac4ec66d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf7b5a034d2e9f16bbdd40baf65727670cf75e0cd334485a29de705e6437f06f
MD5 3ff280fb0600b440bab7df19488833f0
BLAKE2b-256 71efbe2ea105c517a79f38bda1829cba0bdc610fe4eca08b72ad313fa422700b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: kvh-0.3.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 114.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for kvh-0.3.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fdfc18cf628786fe72161cf5ac803ed04dc7de5de8794398881fc15cd6ab0059
MD5 6f59a9432fe78519192d21a15bc77da3
BLAKE2b-256 a44f27a0d298c3da3d5b07c8bc819e4a95836a03984e33123d9bfff1819c350c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 639110d0d582272a8c9ea3d26a9f715722305391e2f1699a48caf6c0396af63d
MD5 741dbfcfc9c96822736b3aa9d3e4d48c
BLAKE2b-256 c6d1bfa84a922d1cb4685b6eb6b844834fb9e5cabae2365acb2e63fe94c7bdd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93a4f5275b046ead92f655cd6fc752fb13565c77d15601c105d3c964f2c1a8b2
MD5 13f319643ea5ded75fb95d6ee585ed6f
BLAKE2b-256 c386d9459ed3a2edf3a79d3dea679910066f49606bc041c080f70203c2bfae6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

Details for the file kvh-0.3.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be2b63c3614bb41a870a9820d42245cf15ec834b5f876a60f42b42557de96bc9
MD5 e3a0b563268db883c9d292806f589012
BLAKE2b-256 29863fb7e61644c353d6cfcc4ad42d542fadd997782863fe35e0054137ebd91b

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.6-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: wheels.yml on MathsCell/kvh

Attestations:

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