Skip to main content

Python bindings for the Bovnar (BVNR) typed, unit-aware serialisation format

Project description

bovnar

Python bindings for Bovnar (BVNR) — a typed, unit-aware serialisation format with a C99 reference implementation.

In scientific and industrial systems the expensive failures are rarely bad syntax — they are unit confusion: a value written in pounds-force and read as newtons, feet read as metres. The number parses fine; the dimension is wrong. Bovnar closes that gap: every value carries its own type family, bit-width, numeric base, and physical unit, inline in the byte stream, validated by the parser.

.velocity     = <float:64,m/s> 9.81;
.max_packet   = <uint:64,Mi~B> 16;
.price        = <float_dec:64,USD> 19.99;
.matrix       = [1, 2, 3]/[4, 5, 6];

The wheel bundles the compiled libbvnr_shared library, so there is nothing to build and no system dependency to install — the bindings load it in-process via ctypes.

Install

pip install bovnar

Optional integrations:

pip install "bovnar[numpy]"   # numpy array bridge
pip install "bovnar[pint]"    # pint unit-registry bridge
pip install "bovnar[all]"     # both

Usage

High-level dict API:

import bovnar

doc = bovnar.dumps({
    "host": "api.example.com",
    "port": 443,
    "ratio": 3.5,
    "matrix": [[1, 2, 3], [4, 5, 6]],
})
print(doc.decode())

back = bovnar.loads(doc)
assert back["matrix"] == [[1, 2, 3], [4, 5, 6]]

Pass typed=True to loads() to preserve the exact type annotation and unit of each value as a Quantity:

data = bovnar.loads(b".velocity = <float:64,m/s> 9.81;\n", typed=True)
q = data["velocity"]
print(q.raw, bovnar.unit_to_str(q.unit))   # 9.81 m/s

Units and conversions are backed by the C library:

m, mps = bovnar.parse_unit("m"), bovnar.parse_unit("m/s")
print(bovnar.units_compatible(m, mps))      # False

A streaming SAX-style Reader/Writer and a random-access DomDoc API are also available — see the project documentation.

Links

License

MIT — see LICENSE.

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

bovnar-1.0.0.tar.gz (5.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bovnar-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bovnar-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bovnar-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (157.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bovnar-1.0.0-cp314-cp314-macosx_10_13_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

bovnar-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bovnar-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bovnar-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (157.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bovnar-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bovnar-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bovnar-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bovnar-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (157.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bovnar-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (161.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bovnar-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bovnar-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bovnar-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (157.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bovnar-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (162.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bovnar-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (176.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bovnar-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bovnar-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (157.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bovnar-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (162.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file bovnar-1.0.0.tar.gz.

File metadata

  • Download URL: bovnar-1.0.0.tar.gz
  • Upload date:
  • Size: 5.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for bovnar-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ecc62d8e9a31b11cf0568ab0c0e47f32237255ddcf932ec2650b98857a674acf
MD5 feea73e83a5f7d23774c1046d44c32a3
BLAKE2b-256 8d0dfd9fc8918c79d9d74ebfb11cfa6f023fcd9cdc9b0189ea825ce52f7e460e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0.tar.gz:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa46562de83214d835049483de7d8ca3c97094a5671137f34c1194264473bcda
MD5 ca13c74609e00793bb27ae14999db687
BLAKE2b-256 26d4da087c1ccad0e803c143ff4764c4de1a3e9fe8c4433dfebcafa271c947ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d2f0f74877a97139e0e6ca6e564c737296d48ab69c3f1427b0482ee3f62d073
MD5 9b79de0eb2273f0ea19f2d2a679e9081
BLAKE2b-256 b6646128e3e0525c44d12a5fe5d17ba30a226ed8eccf26a0768d0b0d1f4a5cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373365d6b1775625d0f585fdb9c63ece78c2da47ee46c97e9f481850d36dd5cd
MD5 e66b7424686a88d51324348362ea1bf3
BLAKE2b-256 01728720915bfa51115318ee8f64461609be610208477e7fb2f730d9b198a3f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78aac40b3adf9f4efad44ed49cf551eae44582bd4353f34426d9175d36dfa291
MD5 b083ea58ebb4529471ae76d1f7cb0887
BLAKE2b-256 3b41a0db7f74e4c276dee1b067c242f5f5a61dc11165ebedd56b4a5a80f4e11e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b52062382eacf61f077b44d06f059de910221d3bc171245044a9194a2e7fd426
MD5 086a060cc39a9ec1f968143a970afb73
BLAKE2b-256 44c7fe3887be35cd6b31ee8097e4beb93f2f7b15a47a21e4358d8bb96e267e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdec1c728f9d5f7d6736286e9234b3cf567de69d73d772606a14b016a2c7cfd2
MD5 7ad817489857c68f0afb48af7b0e3db5
BLAKE2b-256 5e828d81be9f51d241b0a25d144fc26eaff083e45af137bb06481a7bd23c6e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f3edcdc57cdfcf8ff446ad29ff687e7e22a3d36c6ee04f01d6af25f8b2731b
MD5 73dffd3b1ec875b0c093b774b28d3654
BLAKE2b-256 0921f6a7c85cf6694ee95da1aef91c3396e0f4b3d37d8998513ab00bcb4f0d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e0dc12aeac4676f8a9effa56736d84ceb2c9c8742937b6e9bb4397129b8f17ae
MD5 0e145edbdb30fc96b31c9e88e362b1bc
BLAKE2b-256 82cd4e7b6076aab72bf159588609c62338f389ae2cd6fb42976520eb5627379a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2a26a0cb63e26f70f95691ae9bfabb9df52445da732e424dff7096f9fedcda2
MD5 e4bfbac2e1a3f83525fad360384b3a1d
BLAKE2b-256 7959c2665700930268b188bc8e29f0b439c5e66ce40d090b34e0b0a7c0589830

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f9bd193c7207fe21fb205eede34ba93c6777569b389cc07c1b624620665861d
MD5 8f8fd71f3aa23b30003b02cd95971fa6
BLAKE2b-256 93de40bf5411dbeb14226ecf3f812a96238736468938b6df5e55a4426f680c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 812a4249c8a92fdd27075f617bd2a3ec954ae04cb80ab97cc3778f58ed2b1483
MD5 82d04c4142ea7cde53a308c03d3e76b1
BLAKE2b-256 7b54c51548e2b0ff7b846f3a9369604cfc2b7b95fa43f612cabbb30ee72d6afd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0b3e06a5bf08468ff46acec641ae76387ee9c19a21dc39a629ef07aaf327d60e
MD5 325eb6e2bf72f1aa5b8442e012354a39
BLAKE2b-256 6290a8d7b2a1782fbcdd7112e31de23d6fef64434036f040484e94cb85be62a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2e042597e23b9f9c2647d3e9c839fdd4b4dbd77011519f4798c4aa2c984a7f6
MD5 8000a1dc507d287aa3d378c7a4fc2f24
BLAKE2b-256 2e9187c1664b0e1ac1fe50f5014f29a5ead7160a680f2772d62eccad6bb7b35c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2bda9aab81b9e10f6ef819a46ff3ad17a0e479cd902f8cd47a559054c6551e1
MD5 675a1d5dd86290509fd1ac4f4c87cd12
BLAKE2b-256 586ef6a3f3c93fb61246e213bc7da39bac606c1dd09c03f7e65a050e072303b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43cbdc8736e128079773ced7a623c474f57d469cc7c9e13d72ccd18c57ce062b
MD5 6233e15275061c0be3be850ce45334a5
BLAKE2b-256 a12e6d055ed7f7ab304bf6ee15b015fced83cd3d4f43225a66f724026da9d14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 078dac175b1dc7d15be00de2122f7af8a6d48c45c820150c968909013e858436
MD5 cbe0380d320633d7b5ea5c602a1a26c6
BLAKE2b-256 99142a414cf6c75f08c1494d5eb74395b949e361551297510f0ac72263b93f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6867ef1b543d68b41a3395042f3a0b416462ab2092e88ec05e25d9f86dfd7ece
MD5 77a3336fdfe4f1297e068b3bde88d5d2
BLAKE2b-256 5ef8b4acbc90601c97fa755187438ba47cc2e9f6812bd50834caa3f4778550e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5169abceda79acbbc2b504872d965b332dcf8e163d9f015f9527de395142f39
MD5 3f2cc78c2f0e48d662f10f5b45edad6f
BLAKE2b-256 82abaeac4f95042686e9b43e8630ee4e55061aa836fc631d05f43d71f090f738

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6ba5817c04af9e1fdbdaccad4d11ac0d423d9eeb9245407969d6e77d9c1f859
MD5 95523148bd455abc0c3e2b1b9401d4d5
BLAKE2b-256 5caa27eda7d95582ebad0b6cc95169e1c865f99e4ff7b3528c74b1aa2977ce7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bovnar-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bovnar-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d7a61888bd648e787168aca9e7c2c6b4ce783d6894c6a2643f169d84c801da2
MD5 48c052ba36aeabf2658bfc709b002107
BLAKE2b-256 47153ccc5c860d3e299e2a72316df9a42ef9c2e30af2055c3cfa279018857867

See more details on using hashes here.

Provenance

The following attestation bundles were made for bovnar-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on sothis/bovnar

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page