Skip to main content

Python bindings for mavkit – Async MAVLink SDK

Project description

MAVKit

Async Python SDK for MAVLink vehicle control, built on a fast Rust core via PyO3.

MAVKit provides a high-level async API for connecting to MAVLink vehicles (ArduPilot, PX4) over UDP, TCP, or serial, with support for telemetry, commands, missions, and parameters.

Installation

pip install mavkit

Requires Python 3.9+. Pre-built wheels are available for Linux (x86_64, aarch64), macOS (x86_64, ARM), and Windows (x86_64).

Quick Start

import asyncio
import mavkit

async def main():
    # Connect to a vehicle over UDP
    vehicle = await mavkit.Vehicle.connect_udp("0.0.0.0:14550")

    # Read current state
    state = vehicle.state
    print(f"mode={state.mode_name} armed={state.armed}")

    # Wait for next telemetry update
    telem = await vehicle.wait_telemetry()
    print(f"alt={telem.altitude_m}m  battery={telem.battery_pct}%")

    # Arm, take off, then disarm
    await vehicle.set_mode_by_name("GUIDED")
    await vehicle.arm(force=False)
    await vehicle.takeoff(altitude_m=10.0)

    await vehicle.disconnect()

asyncio.run(main())

Features

  • Connections -- UDP, TCP, serial, custom byte streams
  • Telemetry -- sync property getters + async wait_* methods for reactive updates
  • Commands -- arm, disarm, set mode (by name or number), takeoff, guided goto
  • Missions -- upload, download, clear, set current item, verify roundtrip
  • Parameters -- download all, write single/batch, .param file I/O
  • Validation -- plan validation, normalization, tolerance-based comparison

API Overview

Connecting

# UDP (most common for SITL)
vehicle = await mavkit.Vehicle.connect_udp("0.0.0.0:14550")

# TCP
vehicle = await mavkit.Vehicle.connect_tcp("127.0.0.1:5760")

# Serial
vehicle = await mavkit.Vehicle.connect_serial("/dev/ttyUSB0", 57600)

# With custom config
config = mavkit.VehicleConfig(connect_timeout_secs=60.0)
vehicle = await mavkit.Vehicle.connect_with_config("udpin:0.0.0.0:14550", config)

State and Telemetry

# Sync access (latest snapshot)
state = vehicle.state
telem = vehicle.telemetry

# Async wait (blocks until next update)
state = await vehicle.wait_state()
telem = await vehicle.wait_telemetry()
home = await vehicle.wait_home_position()

Missions

plan = mavkit.MissionPlan(
    mission_type=mavkit.MissionType.Mission,
    items=[
        mavkit.MissionItem(
            seq=0, command=16,
            frame=mavkit.MissionFrame.GlobalRelativeAltInt,
            x=int(47.397742 * 1e7), y=int(8.545594 * 1e7), z=50.0,
        ),
    ],
)
await vehicle.upload_mission(plan)
downloaded = await vehicle.download_mission(mavkit.MissionType.Mission)

Parameters

store = await vehicle.download_params()
param = await vehicle.write_param("BATT_MONITOR", 4.0)
results = await vehicle.write_params_batch([("BATT_MONITOR", 4.0), ("BATT_CAPACITY", 5000.0)])

Links

License

MIT

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

mavkit-0.2.1.tar.gz (42.2 MB view details)

Uploaded Source

Built Distributions

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

mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

mavkit-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mavkit-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mavkit-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

mavkit-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mavkit-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mavkit-0.2.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

mavkit-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mavkit-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mavkit-0.2.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

mavkit-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mavkit-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mavkit-0.2.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

mavkit-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mavkit-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

mavkit-0.2.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

mavkit-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

Details for the file mavkit-0.2.1.tar.gz.

File metadata

  • Download URL: mavkit-0.2.1.tar.gz
  • Upload date:
  • Size: 42.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1.tar.gz
Algorithm Hash digest
SHA256 afd7dc0c0246ecd301c32786e7174efdd3dae180cd98f67fc351899fef3e034b
MD5 b6f21c282562bdd5335df584b8d310ef
BLAKE2b-256 0c12b5077f17d7ba011a4680f41e384112611a19c6e56668728872bc977ad6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1.tar.gz:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2bdb421f695b4d0b87387e1648808b06a37cc7cc28b7318da5c34da08bee090
MD5 5fb84077d752428d8bd0438cb84aa286
BLAKE2b-256 0916a75023edcf855e26f58b6aa092e97417133b29492efdb50b3434300f64b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1142237adffa911029b5f2c837ba8d31b898bc177c591706d022069182c53abd
MD5 82afcf60638468f3527f3fa8d3abfd1d
BLAKE2b-256 79fb5f091c8991a825aa09d686bf501ec1d1138e546f1c70c2845ecc8fadfe96

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2c57f3e34574603d822a0382966e1c2f7f29ff5a32b60aee6f5087907d553d6
MD5 838f1d13e65449a111fd1258882836ff
BLAKE2b-256 76eb0a3e70e8c2e123b2e72c1d25df3fcb7c0d3f96d288c3f2d94d1b0c15a708

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mavkit-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e735e1ef8c073520834612e6c801c620e6d77536a85cd8c30892919ed2c45396
MD5 8958081a86108dabaf7b748c7d95fd87
BLAKE2b-256 cb03427b7dd402ad6dac7a2b9c9ec5a4618d7129e07fe5fc0f3e289c360854ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314-win_amd64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b19171564fd36c7ef81e4d3cb11da1ce9d314489a76bc6d514263c2c20d6404
MD5 d3d8f5c79403e3ad18e73e686b1d3cd5
BLAKE2b-256 d15435c8fc8a95a6c7c020b71cbbb768cc181b5c43ab8b4280e6412c45b8a44b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8be92eb95e4151d5ff7144992378130aed5fc9efdae362e13bdcee6453433d0c
MD5 fb4b559bd8c29ef70ea75ee47ab99aaa
BLAKE2b-256 6ecdcf9e2b20d82744afd1ba83a7a4f1686ea06ff9b878c87fb1497dd2111c5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d639c7f96da39f18cff3cf0743730b4abe9d21d18addea5f34176cd95d1fc961
MD5 cca301ddcffe71a1de17e331970e44de
BLAKE2b-256 86f8edfcf0ddeac3dc3ac32c46f05993eaa8988e25c68b756be27ab581294134

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7cd3b323bbd485e5bace5dfc7d49f41ddf72bdabe3280e9dc15c434408a7a64
MD5 55a22b58f232677b2672bae9e9927dac
BLAKE2b-256 05487079d930d2cd07af1d73f62a546405def0424db70eb21d56fcfc3cd5f427

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf5676b48a5bb7337ec1742c191774d4158761fda56a68428ab2fb5afdeea143
MD5 a0a52e0f171f3fc95cda76ecb06afe03
BLAKE2b-256 035f5c9cd030c6a28e1db1aef046b6837dba27eee0be5d0f49d3a8e3e18379cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mavkit-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2f6a55c6bd8d77895e01869aa3ac23d65513ff423fbca16da6024efd6765fd9f
MD5 a885a45f9eb017f3223779b35d2b4bc4
BLAKE2b-256 c3e2a448dfb60c0e85f89595b5de5341f457d61568b3b3513de83e93863e8aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0cb1fda75e122a833b65f039e5c0b40b3055605d4fea47c680a37b2f85c4423b
MD5 d7ba93e8fa82cbf4fde4a16932709846
BLAKE2b-256 2ad58bca9dc0f7c80c564c0475cb71bc7e18bc1f40585deed9bcde74c1dc4ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22c3095c9dbfb67a5719e2b12910bf811190cc68b2310fe3bd4adcf358ba37b5
MD5 35c94080706da77ad78fa0144d9ea941
BLAKE2b-256 a0768529c4ebbe446349f0ecb65718bfd61cda75593cae901b37fd04818d4df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae47b5f4e4500015180b023443d92b490ca92a1909aa1daf93dd967603cd4c04
MD5 7a0a4f6a63f4fe83cddf220f52e68bfd
BLAKE2b-256 2368f516c9176d11235785e8e389950f6edf545db44a7db92c839826f51ef907

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 532595d0e57cd6009e8c7028838bcc11b85e301d6854b2f0f3933a4ae0820e77
MD5 8005e8fa6e6fe65a42e975d3d84e5d95
BLAKE2b-256 414ecf6135afc992ef129f336431f2d4a1cccc4dd7be6abcb393b97bd81b88fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mavkit-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf49a38e40a1c054a4d7c515078e16e660ca31ffb2f63d79ce8dfa5eec841c88
MD5 d919b74622c5641f21131b698f3495f9
BLAKE2b-256 3bae89b7dbdd6905070b386f0216a9f117e0aff4829ab792c423bdb9a6a62298

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp312-cp312-win_amd64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2989e467bd90c840c866f5e5979ccd69d38803ada177acfd4512f5498004600e
MD5 7cd2952dd5926d74906969183b13cb9e
BLAKE2b-256 1291e0f4a7c55d3d76b6df3efe1b93a2f175033904cedf366b3fd472018b4a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dc4927ea55b2293a72f6889e54e31217652c00f232a2e63227ac6f148b0b35a
MD5 b7f96671bb19cd39304c8d96999b6fbe
BLAKE2b-256 98ea882171d42b075bf25fd5d8771c7a6bcfa601b0fec31d7b45466f74ee2ec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9cf9bc9de129a1a3593e4828b15de4a339ae7be4ef37cc22c1063349160f13e
MD5 63a9ab866deaa9ce50fbb9e50ae99e99
BLAKE2b-256 d3bd40976da77652fd006a38dff8655969ea9a47a77727fa62ada9f52615c524

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7600707020ed5bed0efc0671f7f372e43359fe63f9386a66cd4af9b702f82e8
MD5 a5fc3abfd902629041f9045e51e75870
BLAKE2b-256 6279932f7f323d1e5139e7e27832001e1c56509bae056f7e77ea30c8854be84b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mavkit-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e87d75682cdd51e83a0f3ee1ddc3fe1347829a5d9c716a448860053bc3f1c12b
MD5 eafc8e9dadaf623ed0c8a03522f6712b
BLAKE2b-256 3de0123b1642955313b8bd9af313bf582a495bded1f1ff9cac21435a4f8fc606

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp311-cp311-win_amd64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cb6c57b967def5041b36acbd8292b15cfd599b810cbc21018cb377ed3c5d361
MD5 cc48c9068a8a654cb065525550526106
BLAKE2b-256 63ee084ef6ee5072e619e6dacd2206028451767b76a340cbff7f677cdf908313

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44bb7bbf99243d45059644991caeaf635e56b67be0064bcd7e43d7cbb59a7f57
MD5 44ccc1214c57c3d18d4fd8a778b5aa6a
BLAKE2b-256 10e37c95af046addafb07d04d6146b32d3d1fc38db6efdc2500acc1fb2b6b19e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce39a6253474b65fd1157540daaf9286b0c16fb5d082e0e15c12503ba7ffe8f0
MD5 d7960bc2b5c37ab2b598d12f5124aa73
BLAKE2b-256 a830ba2537bc140e8293584eec12333e60fd1631085da93d691cf6c48a2c3560

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca67cc746434af83377109308dd5f7db337d17f4294c3a398c963f416601eb96
MD5 dfa6210b800acea0150bc0cecb9f4fec
BLAKE2b-256 5f006ea3d14a71df2415512804749952530e4fc4ca0110a66a5edb009f0f5f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mavkit-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mavkit-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51d4a62387da4571fff465f63ed26f3e82503cc387abce81fa42c6e79f55a798
MD5 f867106c57382a2b38b57cac3b9fd7b3
BLAKE2b-256 fdbd70e96d9835f551532e63107d405a0c12173a0f2e8c4e2effcd9cfc38ebeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp310-cp310-win_amd64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8353fb9fdce9469edd781ff106cf8294f11865faa5aa3e12ab9f27bb3aa29a3
MD5 cdc227428ec7e5b7824cdfbb835ae412
BLAKE2b-256 a31efd0e0e7953e7b82a589404700cc5c6b9ec2c8a6283c69e8bbfd025a3b4a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e810ec29a47c433f329d0d2059b9d33897add2ab1447da4262fadd5f9bf5153
MD5 e31b0ee55f5d368b548c3adc596142d4
BLAKE2b-256 ac252e87dc8b3712e1cec968a6a37e95c0e701c71d4ef17535fe7dc38663dbd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6905bbd84717263989984780afca296fa554800588c4db2d9f9f1e99865aa14a
MD5 ec4b7431e47c4fbfbe6b7c06bd22b638
BLAKE2b-256 ec80ee001ae5fe69e3b980930f376eba5ba19b72825ff2f1c9597f149adc6887

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab2295bf9411b79deb556ac41fb3acaa2b57f896cd53f6dbb34c52ae4e2d75de
MD5 f472a7fb24fdae7d1ac9420d1a15ee5a
BLAKE2b-256 13ce883d5285f71bc56343d3f03dde576732b4d797385db4c82084b726d099bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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

File details

Details for the file mavkit-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavkit-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09a3db5411733feab560650bc49b9c5a2f72a951e2c2f12142445095b16cdfad
MD5 0b5756754ff7cd681a002687de2efe31
BLAKE2b-256 7d05e567520137101121c757b6e9518da60811d305b5be7447f87ba815ca9ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mavkit-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-python.yml on averyanalex/mavkit

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