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

Uploaded Source

Built Distributions

kvh-0.3.7-pp310-pypy310_pp73-win_amd64.whl (866.5 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.7-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.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.7-pp39-pypy39_pp73-win_amd64.whl (867.3 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.7-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.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.7-pp38-pypy38_pp73-win_amd64.whl (867.3 kB view details)

Uploaded PyPy Windows x86-64

kvh-0.3.7-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.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl (88.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

kvh-0.3.7-cp313-cp313-win_amd64.whl (868.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

kvh-0.3.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (89.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

kvh-0.3.7-cp312-cp312-win_amd64.whl (868.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

kvh-0.3.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (89.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

kvh-0.3.7-cp311-cp311-win_amd64.whl (868.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

kvh-0.3.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

kvh-0.3.7-cp310-cp310-win_amd64.whl (867.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

kvh-0.3.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (89.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

kvh-0.3.7-cp39-cp39-win_amd64.whl (868.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

kvh-0.3.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (89.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

kvh-0.3.7-cp38-cp38-win_amd64.whl (868.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

kvh-0.3.7-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.7-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.7-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.7.tar.gz.

File metadata

  • Download URL: kvh-0.3.7.tar.gz
  • Upload date:
  • Size: 33.0 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.7.tar.gz
Algorithm Hash digest
SHA256 7f8d9b7c5c4b3abc7784cbb9e6367479dd9cdaea8a1b378dbbf23f337ee89998
MD5 fd11ec286657ae9088f605201a157c67
BLAKE2b-256 1957191e14a1c056b2ab10df878513f65b4637139d14684aa8983c0b8114c598

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 55f4a006809a6587d80e60cf514732a8824001ce55dbf505039b52fae4b04335
MD5 f9bf5b7a107abb01ff6706b8b7eca0bb
BLAKE2b-256 dc166892c9b84ac2792ea527782a9e8ed543f09e3588ba1ee9d42d2f96d38531

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea94667ece22d4d5507cf8e9e85907a1d2f97cfe06f083b864ccf6c0e60dc956
MD5 e161e20d2ebf121404e378311af5c19a
BLAKE2b-256 d6730bb55a59459e7ad2e0ba2df9530d6a3fc49901f9fe59ce4bdadc17aff747

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3e310a54de042e66c2647a8fea9581bcd6e6a28d232910ee2f5a6037f8c7d2f
MD5 2e9941509642451dd06e14746699236d
BLAKE2b-256 9d33ed5a1e6c70f18bda9a24b3f7a3d25ca2fba65d10e5b07d655d73d22a920b

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 88aafc507ed490320b73e42832ab1ad14bc904f0c5b0e306944418c7103080b2
MD5 ac49dc22cd186a5cb7c482ad78c9d13b
BLAKE2b-256 6323cd8eea38fa496f72f06c1b3d679e2e6724d047a38b4ce4ebe2db4e6d494b

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f3f79f9c298387b6fdc182f6d5366d1fe5536908007eda04b41638c314932c1
MD5 eee0e15830455139d0077628a9ad2518
BLAKE2b-256 00f46bb5e12787b53d25946239fa7ceeb56c66748107ee360bea0b9c37c5b275

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ab1cabbf4f339a871df3180d45067b56b6e1b3c51ec5e1786eefbf7afba2630
MD5 0ad65f4075950914a5ac617ca30d15a5
BLAKE2b-256 5039edcffe14e1d2f26b4574a0d43ee0d2cb48feda9a867c1f6dc13ae0d44110

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3e4edd120001ff54134cf5879751992e47224533d945007dd1ef90cddb4c375d
MD5 597ab94237698058b7c16a791ce6ef4e
BLAKE2b-256 575accfbc4277bb1b226901e118947b747141301c187a7c6bcff32766149aef9

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2eed9a4233cd5910b1f8220cd58d7df6df8d21e963f43bdec4c61ac994c0e57c
MD5 c1542e19250fc92a4c70b336d93698f7
BLAKE2b-256 23ae6ebd34e33489c224f0ba67647037787e23b82955d9a6d799398a4f80c66e

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0848a81d58540b7dd7ad24115e0e8e1d6968720b7ebb9f5acfb86460e2ecff6f
MD5 d12d3c94dde94e183e7351e3bf15eb0d
BLAKE2b-256 c3293a16f1298513f76d869d7f2bf0fd2535a818dc0bc9fb63e4b959f0b129a0

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 868.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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ba12152f37b5a2b872a328d532dd2ffb090569a0d92358df553f74d7252807a
MD5 49bc6d2ffc212a1c049c53cb57476bf9
BLAKE2b-256 16e439bcc5e39a1296cbf6a68d88b6b2d133913f70fd054a1b67b781ef013904

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ed83fc5a31353247cc7e243df857993ca3dc826c3601793c2b6127a795d05fe
MD5 7e089c9093c62b4a4cb22c96d098a7fd
BLAKE2b-256 f504a00e6aa99d1c5d047518eaf33e17805b573ee87b8f568546dd3b51f4d866

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8928065401c2cd0023057a2cc30192bea441c674c5ba2ebfe8ce7f09d68b9735
MD5 40c357760eba092ff2a909190e9baa19
BLAKE2b-256 0bf05b86b7b2dca7d17561618efdc6ac5cdd6c041ab6a479b3bb62ec695adf9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 126fcf522bac515474c73af9b21f9012eaafcb3b68251a5665ea1eb3d25ca9ab
MD5 ce04261187b803770ff64c088fcb4e16
BLAKE2b-256 729831c32859bdb88f7832789c33eebfa058e153fc10c0314982683a7e3d5ef5

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 868.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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 094b3000dbd12985a9b31a6fcd58d58c4838ac6612eef39e679b22b64b508c95
MD5 9fe42aa00dbaf4caf86cca058564e096
BLAKE2b-256 2c101d15bc8c770eb02f74a155e7fd10604c32ebfd2738209d713ceb84a3761f

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7167b2a51acccd48f99d2360dd54225fb80f505ea2877d72c1f2b60b4e89aab8
MD5 03bdaf78fac3b39566cbd4072a56c16e
BLAKE2b-256 057159dea6c1c2bcce196bed4a3eafed676a631754ac8c1aa97a63b9f97edc52

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cef688319982a4e82014b7419d0f7d6b973f8d30a34d57c4291783e10c60b93e
MD5 53c679c0cf276da10f2c4150ad0e8146
BLAKE2b-256 20fa359200a2744f35de0fe7c90b69ebfac7e83f04fc2e3fd726594056f85e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90c4e23d3284d432b039d57465bef7307bcba49838ebed22f75adcb11fae9c43
MD5 8db6696be504d84bb1f60ec362e55fd9
BLAKE2b-256 cf835161e67dac595a5368c7713405f4dfb5706c7475c0456a88ff13c0f06153

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 868.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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5f277030da030914bd1f8ed5759e673e195bfe8a9be6ab0439ae12316b2f611
MD5 82589a1af2d5d0740647c43b59844444
BLAKE2b-256 618f469d071e05f79162a16592f472244906035ddac4493bcd0b74f8633033be

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba6d11a76158e383ff84632c77e16cd989b3dd9536b03a37135835161e577c68
MD5 e6913ce5919f8bbe709aac511cdb86b7
BLAKE2b-256 23f566d76f68fdd4e76d548352490d4942ebf82a3aa92aa408b2ab06f45c7967

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 041334d4dc10e8a70fe75c454794a80360cc80aabbe82251739b17586d7f140e
MD5 da0c95a3b6bdcbc6c391b1725c839211
BLAKE2b-256 5b6b73737ececedb58ea2db2d76adef4ccb59464c306cf5951a1322a558cf7bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66c7f3ef398ed6a2dd896ff751d42c1688b435430056d2371b7a59ae0180270a
MD5 8bd754802532e799a8e71c0da181f7ce
BLAKE2b-256 c797acccf734f35801a8e4d00d88217f3364809f623bda1252e9df2d995f88d8

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 867.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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5204c6ba70db2d43ba36d5a3735dd6182724671acac68276024f5b0f90c6ccc
MD5 d9965509cc0d53492e0f43604e6745ad
BLAKE2b-256 bb6a3e06d5881bed5e9a24aaf0fec28376ecadacfc7da306cc20a048b383e3f9

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 815206d5ea186d212e4147bd8845b853a49be043ed7e6aad12afbf4932e1e435
MD5 f06db14a3ad83f4a0efa346d52a5c0c0
BLAKE2b-256 9f47fa705c8c86f6cc2e72603a10abda3ec6e2e096b6e67787e076e8da0cf51e

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6ec8295268daa737ea987c01847184ad5a2ff77cd7492c76ae5956e1cfeed97
MD5 a86e854de4e7948fc815f52d50b708bb
BLAKE2b-256 cbbfabfba84754d0933313f7cff68e30ff495782b3a8581e56d1590224c83e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9237cf29cf9793f955014973fb9b947c457812cc1c3c1cf2a0f3a2ac2ac8d83d
MD5 647b8c861e6c771c22a8878f92693d29
BLAKE2b-256 2c9c2033323f9c56350991f5710b8bbeac158175b353fa9d68450c860137e61b

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 868.1 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b0e8725d789771d1a112479d2897ca04c7037e9fc2cfa58cb61dfc3a67420679
MD5 f35fe3213d921d97e43d0d3a44b1d68d
BLAKE2b-256 bb5de86df07596ae43781790981b3c3baf0d8f71f9352c3adee0ee4b5dc80eae

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f924ce1aafa4696d4670065a26a09cf74bb4a68bcaec9d032595dea431bd598
MD5 a8a57a5134f5a128484956b76e3c95eb
BLAKE2b-256 3f6f65bde369e6b902067bd1de0ee7450d192d5f63e66b5f26ff7427504f84d5

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2199a718015f5af4770c283fb3b61cb0688fe80c5bf5ca55824d7eb58dff086e
MD5 04a541ad596afef56b1c080d6bf0ab36
BLAKE2b-256 5e7467128863f170de5f1ece5fcdb90fd37d7f30a6d61e09b27ef43860c41948

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f46a0ae8dbe3edf1a90ef065117a77630d91fe5e9412f52dfec2ccabe03ef4ed
MD5 14062f2da1d7a8260e0beda58943db78
BLAKE2b-256 af7c98b3abb65cb043f47a823e133f77f310a3ac8c3b962de5f2c5cfc2280487

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

  • Download URL: kvh-0.3.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 868.0 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c70b6d063fad0e9845aa6220ba10e139e96eec79f5b5bd4a7a1360d9f1f695ff
MD5 ae1b8c6dcaecd9b7ba8980970503a5e2
BLAKE2b-256 01d5acac3d5fcb96ce2ff522d15d86f0339eda84ba4ff9c1b5ea69c4f5dd4d22

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2298ef27c0949669c6024339631dcd050977e91ae3f9061d050a15dc7670fbf
MD5 42446be09419f79ae0f31598f0e8cad6
BLAKE2b-256 c91c32eafbd290b0eacab5548c6c157404964cd419f789a97381e4ea0568cdd6

See more details on using hashes here.

Provenance

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

Publisher: wheels.yml on MathsCell/kvh

Attestations:

File details

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

File metadata

File hashes

Hashes for kvh-0.3.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69ebe77431a679d8c2620ce60a1bd0219e6c626acf74517bb27ab43f9e62040b
MD5 cd85855cefc1d5edeaf4234f92c8ef4b
BLAKE2b-256 bb965935c43e1451538f1e5f38f3a5e18f7bc4a04d8333ce4f10fdc7958ea125

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kvh-0.3.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b08021beefafd415d1059da9fd03da5b9802e8ad47436061adafe9f493e959e7
MD5 9e8e64dd9de4c2b062aae95c954556e6
BLAKE2b-256 ae7a60be12b6cdbada134cd50063d8f9d0667e5873d881481b71474adbf3fa26

See more details on using hashes here.

Provenance

The following attestation bundles were made for kvh-0.3.7-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