Skip to main content

mvkit

Machine vision inspection for production lines — a framework you install, not a library you call.

mvkit runs an unattended inspection loop: wait for a trigger, grab a frame, run an inspection chain, report the verdict to the line, repeat. Cameras, triggers, result sinks and inspection modules are all plugins, so a new site is a configuration change rather than a code change.

No PyTorch in the default install. The runtime is onnxruntime + numpy + opencv.


Install

pip install mvkit              # CPU
pip install "mvkit[gpu]"       # NVIDIA CUDA via onnxruntime-gpu
pip install "mvkit[genicam]"   # GenICam/GenTL industrial cameras

Then:

mvkit serve                    # http://127.0.0.1:8000 — dashboard and REST API
mvkit doctor                   # what is installed, what is missing, and why

The dashboard opens on a demo file camera reading the bundled sample images, so a fresh install has something to look at before any hardware arrives.


What it does

Layer Plugins
Cameras file · opencv (webcam, RTSP) · watch_folder · harvester (GenICam)
Triggers hardware · digital_input · software · interval · push
Result sinks digital_output · modbus_tcp · log — several at once
Inspection see below

The runtime keeps capture, inference and dispatch on separate threads with bounded queues, so a slow PLC never stalls inference and a fast line never silently piles up frames. Camera drop-outs reconnect with backoff; a watchdog heartbeat tells the line when the inspector itself has stopped.

Inspection modules

Module What it checks Weights
barcode 1D barcodes, QR, DataMatrix none
presence part present / missing, by template none
count number of objects none
color colour deviation (Lab ΔE) none
patchcore surface defects — teach from 5–10 good parts DINOv2 (ONNX)
crane surface defects, zero-shot CLIP + DINOv2 (ONNX)
detect object detection D-FINE (ONNX)
detect_gate detect a region, then inspect only that region D-FINE (ONNX)
ocr text reading — needs mvkit[ocr] and PyTorch EasyOCR
schad structural + logical anomalies — needs mvkit[train] and PyTorch trained on your machine

Model weights are not bundled in the wheel. They are downloaded per module on first use, or imported from a disk:

mvkit models download --module patchcore
mvkit models import D:\mvkit_assets
mvkit models status

Teaching a part

Upload five to ten good samples in the dashboard; no defect images are required and no labelling is involved. The result is stored on your machine and never leaves it, and a product folder can be copied to another machine as it is.

Teaching from the command line is not available yet.


What needs to be installed separately

Two things cannot come from PyPI.

Industrial camera SDKs. harvesters talks to a GenTL producer (.cti), and that file ships with the camera vendor's runtime — Basler pylon, Hikrobot MVS, Teledyne FLIR Spinnaker, and so on. Install the vendor runtime and mvkit will find the producer on its own. Order does not matter; the search happens when a camera is opened, not at install time.

PyTorch, for mvkit[ocr] and mvkit[train] only. PyPI metadata cannot express which CUDA build you need, so install it yourself first:

pip install torch --index-url https://download.pytorch.org/whl/cu128
pip install "mvkit[train]"

mvkit doctor reports both, and distinguishes "not installed" from "broken".


Where things are stored

Location
Model cache %LOCALAPPDATA%\mvkit\Cache · ~/Library/Caches/mvkit · ~/.cache/mvkit
Products, teaching results, logs %LOCALAPPDATA%\mvkit\artifacts · ~/Library/Application Support/mvkit/artifacts · ~/.local/share/mvkit/artifacts
Site configuration %APPDATA%\mvkit\site.yaml · ~/.config/mvkit/site.yaml

A product folder is self-contained: copy it to another machine and inspection works there. Retraining caches live outside it and can be deleted.

Line PCs often have a small system drive. mvkit doctor prints the artifacts path with free space; move it with mvkit config set artifacts_dir D:\....


Evaluation

All modules are available for three months. After that, barcode, presence, count and color keep working; the rest need a licence.

An expired licence never stops a running line. Inspection in progress continues; only starting a new run and teaching new products are blocked, and the dashboard warns 30, 7 and 1 days ahead.

Your teaching results are yours. They are not deleted when a licence expires and can always be exported.

For a licence, email vislab2026@gmail.com with your name, organisation and intended use.


License

Proprietary. Evaluation and non-commercial research use only — see LICENSE. Contact the copyright holder for commercial licensing.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

mvkit-0.2.7-cp313-cp313-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows x86-64

mvkit-0.2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (28.4 MB view details)

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

mvkit-0.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (27.9 MB view details)

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

mvkit-0.2.7-cp313-cp313-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mvkit-0.2.7-cp313-cp313-macosx_10_13_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mvkit-0.2.7-cp312-cp312-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows x86-64

mvkit-0.2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (29.1 MB view details)

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

mvkit-0.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.6 MB view details)

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

mvkit-0.2.7-cp312-cp312-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mvkit-0.2.7-cp312-cp312-macosx_10_13_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mvkit-0.2.7-cp311-cp311-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.11Windows x86-64

mvkit-0.2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (28.3 MB view details)

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

mvkit-0.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.1 MB view details)

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

mvkit-0.2.7-cp311-cp311-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mvkit-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mvkit-0.2.7-cp310-cp310-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.10Windows x86-64

mvkit-0.2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (27.1 MB view details)

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

mvkit-0.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (26.9 MB view details)

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

mvkit-0.2.7-cp310-cp310-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mvkit-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file mvkit-0.2.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mvkit-0.2.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mvkit-0.2.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eba74098979ace4a97b7b322f51f72df1e168d0529c1da9f0820db4951bc4592
MD5 e5201c0540c57ba968b5c6ff4d1282c9
BLAKE2b-256 0b65b9300b3fa82f33c31ed6113306c9bf00a3a136d5752f4434c085de475387

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp313-cp313-win_amd64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcffbb864d3303517b2b2206b048dab1aa5d207910aaf2776db078cb6103d1c8
MD5 325b3bfd5d5e4f619276030a192cdd34
BLAKE2b-256 59aef9dfce87bbd8a8ab7e4c59d9eb18b6cde1c4932eae90e1142e7dfa890005

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7e2da599f1af9bc17f94d5f435f2789d74fb93cc1fefd88efe22ed07bb9ab41
MD5 f28289efb001e4ab5e13c27e34d6a3ad
BLAKE2b-256 ec33f8abf86cdb8edb9f013bdc1b14625ee866ef1e1f74e57c01b542c5cd027a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b395c79df7976da340ef9ab849e1c684e94c7aa1cc6ec458cabf2245829a174c
MD5 0093607d03687656ce421c82a307c74d
BLAKE2b-256 0f48d7b5c24392f1ab019e837dc9955a48e5cce7733ba57fc5a90aa4b2d2024f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91756a618c4c7877bf7bd224b3f1f6e08895d39149c865b13bf3215e1d0f53c2
MD5 5852c939f5e6fc239c11c1ea9a93cb7d
BLAKE2b-256 18dbab002698c924adcc3e06a81064db1652c5d65142d1b4bb16d4967e44653f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mvkit-0.2.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mvkit-0.2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 211f7d7fd678532e5a83f4fb262d6b39d54a00a935270eae8903494823abea00
MD5 47a26ed0624e88da588932732cd045b2
BLAKE2b-256 88babf50b4705803519806342308a526a69084d02c6dcdce68c33218cc44129f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp312-cp312-win_amd64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58c1b435a4b0a283e5dbe502fdffaf1384a09c8468c021e861c01cc598031b3b
MD5 8ffacfe4b20fe3700227177882e10810
BLAKE2b-256 8d8018af99b7bc77877f42bc8bfa183ffff4e265ef57c8121b85e097c3965609

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f31fcd447b106637fe666c6a3f25603d6068553044bdd8a6b7a0cf4380e3daaf
MD5 7a3e8f05dcbb03f58848f2f980234241
BLAKE2b-256 c5bbf30db1461dde54f278c5eff57b7802e8b01936991f456bc37ae17e0c1846

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abebbbc30138e91915bedecf2174755ef1d55c8e4d9e08c5d4e17a178fe2778a
MD5 472dda49761c8100cc68879e7d8fd640
BLAKE2b-256 388075bc61096df70228e2e60fbb72465d2321be8159f503a27dd28aa2c9a0a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 db7063378f2e0047d32e8bc163ff3443ca953b2f4310f2010f596fb93f905d3a
MD5 b3e6b26b8c7db6204d9a2b3a461d0869
BLAKE2b-256 0760ded8760257dc3d2be85c5fad1cd22b35ecbe6ef111b5bad45cbc8ef50c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mvkit-0.2.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mvkit-0.2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4da6570af5032904d78588179acb83ccbfed79e649b994f57cc8fb03699316cb
MD5 6e199ce46dfc24fe0cd487de9299e919
BLAKE2b-256 bff5f64eefde487f3d931af55685e08f8389f03f13f59da97cb0d9925b56ec20

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp311-cp311-win_amd64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b51804e0ab36a55a68115faa7f0ced0d89e50c1e0df2a12ea2b3264fc2c0d307
MD5 d74c79b02b8fc253ea77aff7ba722dfc
BLAKE2b-256 7d11dfc0d17d0dba9e3aebaa3a279253888e19ef92092168c63bb5ca68c6e8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8572f2b978880f6e3e62d2e7d1a02b35c3e1d4de4f15d51e42c3313be7a8a6e9
MD5 c440d4246e45ee8a1e14b34e90f4a8a5
BLAKE2b-256 2618e2b5a81dcbc298f03252036a0b85a36daac61ff7672d7647d1ba4706f986

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45831c6624a18146b462b0c4c73f4c8d7eece0b32af5629ae98259ed49d5d9a8
MD5 f35325abf63f2f9ad0227d066c139ca5
BLAKE2b-256 4046b0ca2a5e7a87b4bf9ba77ca7fce834e9e081ef55746dfef4362fb61549dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0d903fa53f66e6c77612612104643ea51e2b6800f56a7b120347326d0318bfa
MD5 55397de336e7a4c6bdf8b31286a56567
BLAKE2b-256 2de48d6ecc2977b4e3d290c91b6040e13e9f187a8f50778424208d9735ec5ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mvkit-0.2.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mvkit-0.2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07c6134ec27dfcb05a7f5681e5ddfc5b60bfcb88a13fc1f7093a14eacdd63295
MD5 a260c5156b6fe5969136eb9bec1ef16f
BLAKE2b-256 4bda819b6710eb11daf7328f44a9a864d978e39e2839069894609a808dda6a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp310-cp310-win_amd64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5130101cb174a9bf0ddc25cd51f9f8cf11b254d99ba9222f1c0c4a685a2d66d4
MD5 87fd7c8f3fd8c3cb1e084df21db41fa7
BLAKE2b-256 8f79861724661f33d6bc58fecc3fab53e8bb755c2ef5d53846423432511be138

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b72a0b2e0c0f89830cdd3c6af1bf430ee621027de52169e2f2a74a5c97038458
MD5 17bc7532f1bc3fd221f33bd488b5a888
BLAKE2b-256 4397909bced25af3d4f71cd363ba263b40953bf72ae25d166f2590f9df83651e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f7a1137f052722be12cdf341116fbc7b3ae25816b05cc1828b82b84c187f044
MD5 965665de720f11824b3fdb702db3fc21
BLAKE2b-256 b6171c05166eb2861e533ff11f604b0f71b8a27eccf283293223e2721664dfd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

File details

Details for the file mvkit-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mvkit-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 527f722b91a6378ac00c8ac6022083785086049186666113025d583ee0a6ccae
MD5 f5ee1b2101da98683ffb9dacaaa388a2
BLAKE2b-256 7cfe7e76fdafb2854fb5fb121251236b94ba68657e5aeb40cee248d8ed3e4ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mvkit-0.2.7-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on theodore-labs/mvkit-src

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

Release history Release notifications | RSS feed

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.0

1 file

0.2.23

1 file

0.2.22

1 file

0.2.21

1 file

0.2.20

1 file

0.2.19

1 file

0.2.18

1 file

0.2.17

1 file

0.2.16

1 file

0.2.15

1 file

0.2.14

1 file

0.2.13

1 file

0.2.11

1 file

0.2.10

1 file

0.2.8

1 file

This release

0.2.7 This release

20 files

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page