Pymavlink
This is a Python implementation of the MAVLink protocol. It includes a source code generator (generator/mavgen.py) to create MAVLink protocol implementations for other programming languages as well. Also contains tools for analyzing flight logs.
Documentation
Please see http://ardupilot.org/dev/docs/mavlink-commands.html for mavlink command reference.
For realtime discussion please see the pymavlink Gitter channel
Examples can be found in the repository or in the ArduSub book
Installation
Pymavlink supports Python 3. Python 2 support has been removed.
The following instructions assume you are using a Debian-based (like Ubuntu) installation.
Dependencies
Pymavlink has several dependencies :
- [future](http://python-future.org/) : for interoperability
- [lxml](http://lxml.de/installation.html) : for checking and parsing xml file
Optional :
- numpy : for FFT
- pytest : for tests
On Linux
lxml has some additional dependencies that can be installed with your package manager (here with apt-get) :
sudo apt-get install libxml2-dev libxslt-dev
Optional for FFT scripts and tests:
sudo apt-get install python3-numpy python3-pytest
Using pip you can install the required dependencies for leaf-pymavlink :
sudo python3 -m pip install --upgrade future lxml
On Windows
Use pip to install future as for Linux. Lxml can be installed with a Windows installer from here : https://pypi.org/project/lxml
Installation
For users
It is recommended to install leaf-pymavlink from PyPI with pip, that way dependencies should be auto installed by pip.
sudo python3 -m pip install --upgrade leaf-pymavlink
Mavnative
Starting from September 2022, mavnative, a C extension for parsing mavlink, was deprecated and removed. Mavnative development was stalled for long time, it only supports MAVLink1 and doesn't get any fix on the protocol.
For developers
From the pymavlink directory, you can use :
sudo MDEF=PATH_TO_message_definitions python3 -m pip install . -v
[!NOTE] PATH_TO_message_definitions should point to the directory containing the message definition files. Typically, this is the
message_definitionsfolder in the mavlink repository. e.g./home/droneleaf/petal-app-manager-dev/mavlink/message_definitions/v1.0
Since pip installation is executed from /tmp, it is necessary to point to the directory containing message definitions with MDEF. MDEF should not be set to any particular message version directory but the parent folder instead. If you have cloned from mavlink/mavlink then this is /mavlink/message_definitions . Using pip should auto install dependencies and allow you to keep them up-to-date.
Or:
sudo python3 setup.py install
Ardupilot Custom Modes
By default, leaf-pymavlink will map the Ardupilot mode names to mode numbers per the definitions in the ardupilotmega.xml file. However, during development, it can be useful to add to or update the default mode mappings.
To do this:
- create a folder named
.pymavlinkin your home directory (i.e.$HOMEon Linux,$USERPROFILEon Windows); and - add a JSON file called
custom_mode_map.jsonto this new.pymavlinkfolder.
The JSON file is a dictionary that maps vehicle MAV_TYPE value to a dictionary of mode numbers to mode names. An example that duplicates the existing mapping for MAV_TYPE_FIXED_WING (enum value of 1) vehicles is as follows:
{
"1": {
"0": "MANUAL",
"1": "CIRCLE",
"2": "STABILIZE",
"3": "TRAINING",
"4": "ACRO",
"5": "FBWA",
"6": "FBWB",
"7": "CRUISE",
"8": "AUTOTUNE",
"10": "AUTO",
"11": "RTL",
"12": "LOITER",
"13": "TAKEOFF",
"14": "AVOID_ADSB",
"15": "GUIDED",
"16": "INITIALISING",
"17": "QSTABILIZE",
"18": "QHOVER",
"19": "QLOITER",
"20": "QLAND",
"21": "QRTL",
"22": "QAUTOTUNE",
"23": "QACRO",
"24": "THERMAL"
"25": "LOITERALTQLAND",
"26": "AUTOLAND",
}
}
This custom_mode_map.json file can be used to:
- change the display name of an existing mode (e.g. change
"TAKEOFF"to"LAUNCH"); - add a new mode (e.g. add
"25": "NEW_MODE"); and - add a mapping for an unsupported vehicle type (e.g. add a mapping for
MAV_TYPE_AIRSHIP(enumvalue of7) vehicles).
Notes:
- Whilst the
MAV_TYPEand mode numbers are integers, they need to be defined asstrings in the JSON file, as raw integers can't be used as dictionary keys in JSON. - This feature updates the default definitions. You can use it to change the name-to-number mapping for a mode, but you completely can't remove an existing mapping.
License
pymavlink is released under the GNU Lesser General Public License v3 or later.
The source code generated by generator/mavgen.py is available under the permissive MIT License.
Release files for leaf-pymavlink 0.1.25
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| leaf_pymavlink-0.1.25.tar.gz | 8.2 MB | Details |
Built distributions (wheels)
Total release size: 564.6 MB
Release files / leaf_pymavlink-0.1.25.tar.gz
| Download URL | leaf_pymavlink-0.1.25.tar.gz |
|---|---|
| Size | 8.2 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0054911c8415570f3865ae59c263dcad1db020732613ca8c45ad10c7c9f2c00e
|
|
BLAKE2b-256 checksum How to use checksums |
bd1dec959010369d8a84f47aae208cc178efedd8110ff5d110ee87b7412c1def
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c5791ce72171102c3a6b2b3ba51d332d0cc9dbe91acb6035449a3d56c75d80a0
|
|
BLAKE2b-256 checksum How to use checksums |
636bd156cf3643085666587065df0db2c4fa53dea70bdd218ce237269b6f6fd7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3450716d600d281c23ba750573062aef7c5292c98374857477360915d2197b1d
|
|
BLAKE2b-256 checksum How to use checksums |
c745426be36a0c5071ee06dd5e075b030984133d19a35672321097cd703f8ece
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
13c781dd52c696f600b028f9bfffc2988ec421abdca19024eeb4c29efeef30e6
|
|
BLAKE2b-256 checksum How to use checksums |
28eb12e6218966b15b77f264ed34827d0063604a9e34391ac0d0cffdd4949508
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
00b76bc7bee9944e98999131c7bab4b41d9cbe6e626e1cc6c681a40f60f12843
|
|
BLAKE2b-256 checksum How to use checksums |
a1fae55f32e2bcb37fefff9337f3d7b4cdb37e660fe99240144ea3776761f077
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1aba78e1adfe274d9b2744a979b4fba02d6f54a8128f85ab0a11f744f0cdd5c
|
|
BLAKE2b-256 checksum How to use checksums |
a1d3d6f0557a59233ffe70dfb790447533567705ef470bedc1f8170685789dc2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
53fd8cf0880c1f3d10f580601cd3d2d8c20865804eb69b396641c5ab926d5163
|
|
BLAKE2b-256 checksum How to use checksums |
9372a0b1f77811b6bc1a9667f0b226f70515e745214d3d7a9e35e14b65af9c2b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
76811b0e4a0842b7df13e8b125de7b5bb5f483f78f9f014373c85b73afb31658
|
|
BLAKE2b-256 checksum How to use checksums |
cd2e2ece430f7477f21c193412aef8f46fd9fcbc04af5e5836541647ee7c1b37
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
11ac4ca835cabee4556df322271709aec648c7b1cc0f260ac9fda7af7b6d7c45
|
|
BLAKE2b-256 checksum How to use checksums |
6ece4cd89e85d72d21343d2fa8959267350cd95b21f691c69a99d9bef77c1b99
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1884bb503bfa3c3c965d0795275a5c58a13653df914aec304a460b4afd4f8e1f
|
|
BLAKE2b-256 checksum How to use checksums |
bb0649be39a09af29b8c8dc0230e443fd78a53a8d6b4ad66d3026d0eb481c24d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
ac8b4feb0bb2e0155c95404ad9f57e62accbd9885e4f53f0de1e051a7c73f8e1
|
|
BLAKE2b-256 checksum How to use checksums |
0cc9a63dfef56cf3c2e1994f91f8a49303420da2bdd0b80d437d407d0f839776
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp313-cp313-macosx_10_13_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp313-cp313-macosx_10_13_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
5db00a3d64c352191cc2c1e68dd87ab569b3fd39114bbef9fbf24b01291f14fc
|
|
BLAKE2b-256 checksum How to use checksums |
a89dc07f1b2db9087b4c7889a5e72e89c9bdcf8c2050e5597c140f57009e5ba3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a5ed138078416d03851b940a6a43e8a123178f52a19b4646d6b4dc24f07ace6f
|
|
BLAKE2b-256 checksum How to use checksums |
f3b7401422924877b6d8756c065747db16a1ca1589dd84c8e4bb68838b540804
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
f131b7e1346fe5408aeeda38d8858c21710ecc522650c870b7da2d0b7ae8820d
|
|
BLAKE2b-256 checksum How to use checksums |
3f50b96af5b2f176eeecd7c33ed48c56cac0c9e94dcf78ffafd31472d96fb5a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9bc403e06a45eab553781d8adc777af08ea4c05a85d70a5d1c68ba066828ca5d
|
|
BLAKE2b-256 checksum How to use checksums |
a65a1f4e5fc4973ae2c10a1a36d92182ea8bbfca0869c0028ecaf5c7cb09ece5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
5743161fbae571cd9fd5dc2c91920f39f11bfc932315d198fe790d424f14212e
|
|
BLAKE2b-256 checksum How to use checksums |
01d006a334b75581bfc94743929795edb00cb95d9b98cd5d238caa4b6d540572
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
deef835d1432ff9b8596ea50c1c3c6b3643d5ee7fc6060f06f3fb05af1b8bbad
|
|
BLAKE2b-256 checksum How to use checksums |
234b2837cd64c1a2a8530c2f8439ab9da4754256b1550cf8709d0ca3fc558666
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
6d5e9886b6b4d22cdd03d95704748269a21faf2c87e6e0e6759e684484da1c5c
|
|
BLAKE2b-256 checksum How to use checksums |
326bd28ee3e908d41d6d41ecdad8a1ee44475e72bf44857af9c12eb4d2800714
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
99b6a11102d70baa2e87a7a2381da823c3f7202f17ff88e4b559581743fa97eb
|
|
BLAKE2b-256 checksum How to use checksums |
4ac5c8d561278a6e1f42559db77207312d291ed7ecdee7e5b9afb3c530635c95
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
b1854858df02a5e72c6dfee4f32a66def10c5c4871cdd07a7539761f291089b0
|
|
BLAKE2b-256 checksum How to use checksums |
4ea902a77f0138d6032392ab38952e4959f49e5cb12124e0cc0bea7b56e9ff31
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
30258603144df23c775406423b0df26a62cd2208258088062146029e80244554
|
|
BLAKE2b-256 checksum How to use checksums |
973ff53a5cacf3569fd75ce7a08f3a509c33e9053cd78ea0466b7715c533b2c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
1bee91e6c472fb2c3444911282eaef7b1d45c0e283fc57353849fb2e70494dc9
|
|
BLAKE2b-256 checksum How to use checksums |
dcc163ca2f175c6b9735007d8d5f184f60ba59993a07c7f2399bd95fb5ea9eb0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp312-cp312-macosx_10_13_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp312-cp312-macosx_10_13_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
9183b653fd544e1af0b736b3317c55193106c22a9ee0cb2048fbda51ea1ef67f
|
|
BLAKE2b-256 checksum How to use checksums |
7131b4d49800e934bdaa1ad613f48ea33165da6df6042340290e7b4aa134b94b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ee23895b344bbe163fe5cdd73e0c4d1886594204a5842948be343915b1d2360c
|
|
BLAKE2b-256 checksum How to use checksums |
296cc4104c1c1f53c823dcc7189a8bbd3c7d54b6b5a543756011ec28162395ca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
09ea6df04e059bd0ff4763d9b5291c4bd2c35e834d8774222508fd5713f0faad
|
|
BLAKE2b-256 checksum How to use checksums |
4e811a4dd18d1b2a60885166a33e5b636aed6ce1cf5d34c9f9a24d6cc6d08360
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3331345af2d00f49ba58ea9c733a2396fab271950b1fd1de689d9e7613341091
|
|
BLAKE2b-256 checksum How to use checksums |
357b73f20d7e5a76d67bc9eac72bd181be7e92b8272f03e52ff7d4bdbb2be418
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
a8e965279af50a7c28d7c252bce6db027078f85d2cb9b28cdf93a0a7cd4b9d4d
|
|
BLAKE2b-256 checksum How to use checksums |
b8506af25b0f151bb5019e3bdea5173a5ed541625fcdd9cfffb6463a2043179d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
24342473fa92843b0583102ff12864bbc6cbdad4d6db4b865bced0ddaaf5f921
|
|
BLAKE2b-256 checksum How to use checksums |
5ad32e776c0b7b5ab0d4d0a57a91c0d400a7fc5f8d9cb47b5e3237368b49500e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
69e3df93ab9c7cf885c1c8cd1889ee5beeaf4b95729d11772146970646ca8369
|
|
BLAKE2b-256 checksum How to use checksums |
9b16498c720c5dca8ba88527b5d56516bba6f204b7fc7425e18ac03a6ba7c5e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4e3af029625f174563f73c881bc2ddb79aa0978339001b014905fb4a44031c8b
|
|
BLAKE2b-256 checksum How to use checksums |
5886bdcc41dc5d8021e15713a62e25c71becc31985323c2e8894e8e4397f2ce0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
288e98e1f033530c5ce6b0b67c02e1888461736d0113914deeea8243b344e4bc
|
|
BLAKE2b-256 checksum How to use checksums |
e00ccdfb1e1f2293b57bd3192e15fce808bd9461030b1b9a0db35e3ad8bc8f4d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cb17a2c08661a1767c387b3a34f05b2d3ba0ac2f124802a79bb070e07cfdcbc3
|
|
BLAKE2b-256 checksum How to use checksums |
a87aaf734248f695fe31f7a8736370db50690def2bcea0506a1b29b1a3692586
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
096ad4cc9fff44d7a346201db8edcda91334ecdbff2771bf0384ed68304d4003
|
|
BLAKE2b-256 checksum How to use checksums |
a698bf08b5cb9306204cd7782d6515887e141f0c709b0abbb3746eded716ed66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp311-cp311-macosx_10_9_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp311-cp311-macosx_10_9_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
e5965c50f878fd1189319a65774f794772c8413d2b3eff768540ad7adc4e4a5f
|
|
BLAKE2b-256 checksum How to use checksums |
88392d52bb4e9520e5fc06753384015d57096069b29b62b3ff1c50184500c325
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d6bd429bff3d26ea35bc5bddbad3a9e4f70a0a0d8125db07364579dd794815fe
|
|
BLAKE2b-256 checksum How to use checksums |
e21cd1994435b13565a3a9f1ceeb07d4fdd7086bab5f8b3e0e16cd4e64d006d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
badfd0c7c5167e58da8568e05c2e3c3d9c73524645473ee5b58f3d88ee1b2d4f
|
|
BLAKE2b-256 checksum How to use checksums |
9488bfd1ae3fe204a9b6418ebf84bc194c7e393ce2833ec3c7a02f12b35f7520
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
df69ea417778f18170e962b46a7afd9fea109608dde6d2c40564e11a30d846eb
|
|
BLAKE2b-256 checksum How to use checksums |
ad35b1881381d4ef8f77e582c0d984379ec1136f4cbb57e0d794eccff3a7b2be
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
c7c481d399530c7dbb4e9d8b37a54010f5ab1eedd7381460c57a9b157ef6493f
|
|
BLAKE2b-256 checksum How to use checksums |
156140c6425f65658a3caefefe4fe3239b88884c336cef0d58a2cf67da763a32
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
281fb3131c50a7c9538b5f6fa4249e3639000eaef700199403523b0872c75287
|
|
BLAKE2b-256 checksum How to use checksums |
b6c76feb31645ec3bd3b28b385579abb85d5dcf16bd73175bf4f7c0d2c535db7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
bc37aa54367b377011db450146efec8e12d6ce3c54a4116f02cd276417d6efa6
|
|
BLAKE2b-256 checksum How to use checksums |
793863b075a0fbf33349233ab62e2886c7ad4473db63eb81b25dffed0e56280d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
735fa555298baf44194491dcecbcd98da6fd3f1ecffc5e4088255b4cc70980b5
|
|
BLAKE2b-256 checksum How to use checksums |
c22f65f419d426f100bab918ef8d5ff416dd75ad62f1df4c700f8373b5143409
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
8a01f1f84aa564f231bbf936292da17ca92289b1edc0362abc89d4708f5f53c4
|
|
BLAKE2b-256 checksum How to use checksums |
99a890737b4cd3de1b94705efd18e907721289271cf943b707a239a8577cfedf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
fa3319881bd63f0f401c3cf64a9dc86ffed4687bc5e8cc2abc35270a7c4682f6
|
|
BLAKE2b-256 checksum How to use checksums |
04a305d9c8e32160f9475fb68b72ba3f2e8fcc33cc8fe960e6e3078ed519665b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
494cc7c5567b622733c049093d02b0d98e616442c199d028893cb463509b24da
|
|
BLAKE2b-256 checksum How to use checksums |
2f545f8f1b5ad228f010a7efefce448d6897789d4132310e8157641a9c831847
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp310-cp310-macosx_10_9_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp310-cp310-macosx_10_9_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
9a75de7bdce9807ab85c5fd3a2280007c1a5c51c059fc8d644a8c6023d83c0b6
|
|
BLAKE2b-256 checksum How to use checksums |
fc4de1f0f8fd985957eb605f02127978a61d9094b566dd8eeb0362c1e9ea5e7f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7d471d1cdaf4109a54620c63e4e1dd92b196294317203b3e025959d0d8750fc9
|
|
BLAKE2b-256 checksum How to use checksums |
2c8dfca9d93e8646ae7c8276c377e1948ab00cc34bf0098ce684803e335465fd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
600602e435323fc4fe03c7c1e84dd2ba54644b59b7c171450a7347f3c4ddefbd
|
|
BLAKE2b-256 checksum How to use checksums |
9602424da9f9739b11fe12ded884332d1a37820b0df553bdd84273720e310626
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
867b7f0be65c2439ffde048398a3dae24099fe30b9f91f415767255866a45ec2
|
|
BLAKE2b-256 checksum How to use checksums |
65e9dd6d02bbc7b83109221e7bb50647ec95d845164f527499ac59e910916631
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
64c487ffecc1e24b69d417261e5f3974d295e5ac4c99e5e31013834c6dafab43
|
|
BLAKE2b-256 checksum How to use checksums |
fca5152da564b8a6412ecb846f2af306b7689877cdfab1f6ab865be19f917cc1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
411447b7f1948458d8e3131708e0628d1d8c43f80dcf024589edcfe98effb290
|
|
BLAKE2b-256 checksum How to use checksums |
b7d3e02c394946e874673811cc725606833db1a78ece6c82b830cc57915462b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
c805b68e1c9227d81278bd96e59d8a6c167a53921d9cc6f6f8b439adf784bae8
|
|
BLAKE2b-256 checksum How to use checksums |
b5ced44d303d3c3294e31965ab4cf1cfb94cb347937a3a8b0557b59c6606ab40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.6 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4a40e7254a4c8e1329b7ec0f52b63026f94ba46758b390165385df5a9145ab43
|
|
BLAKE2b-256 checksum How to use checksums |
52982f3258c3d88f0ab81f8047421b59dc3c029bb9929d2a47e25a47a1ae73b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
88614cf2d5c726733d062d46d79267334a8cfca5c452d65157213dd2b1c32a9c
|
|
BLAKE2b-256 checksum How to use checksums |
d4164ceede2d05d3ff1fa1928e4278161003a0418f38ae49c2ded872110cd757
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
87f3a6911c6f8a6ff18e5b5fae9d6a52910eb26613c2c7959757b1ee1240a2df
|
|
BLAKE2b-256 checksum How to use checksums |
30c515ba45110d9e9afc1348a1318ffc2928a4a2588aa67fea42160a1e63bd71
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f2e1ee80d32444f647feb6104c96e072d8345689b20047542a523fed400e0c23
|
|
BLAKE2b-256 checksum How to use checksums |
d2475f3b10b68fe4a1815a1fdef5b7e058c21c5f70bcc07ce4f894b00ba34b1a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp39-cp39-macosx_10_9_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp39-cp39-macosx_10_9_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
b61b806ea993a17ca2697c49ff6f5f3c1e54f258ad85f3eb41c529d91672f80d
|
|
BLAKE2b-256 checksum How to use checksums |
ff0dac21108336966cefdffdf152bee2045e7a565ee3ffb7e166aa236cc92d1d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-win_amd64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
35e636d80baa8bcccc28738c285b67f9538d3c4f14b24af3187dfd660225872a
|
|
BLAKE2b-256 checksum How to use checksums |
dcd68f6a2d0864102adb43aed7581474b6b87a6649cb2d29b964728e208d52b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-win32.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-win32.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.8 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
8a99a232b731f4c376cff3c58cd33e30c227584a751a62b9a84cb867c62045c9
|
|
BLAKE2b-256 checksum How to use checksums |
ce7c309df5840fcb447117f940ac3cc0a60fcb3b7a2b52cc19bdcdfa5b79edeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
93bb29e7a254301070045f4ccfa639178a2cb2d6e365e278f2b6be8016457c9a
|
|
BLAKE2b-256 checksum How to use checksums |
d0b86d9536d61824b13d8bfe4a429745f42644060af2eda6d6680413b8534fef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
5b915ad514098e2ca2aa4278f7b8b0088fb1a9f639f8939facb1881502c3502b
|
|
BLAKE2b-256 checksum How to use checksums |
155beb9866fa1e0e25dfeb61f84e23d8d0565e8f5695b4c02586a7eb1a8e0238
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
60e69b0acc3b6be6fc978d0869ab831b1780c4cb3e24a4ccfaab2bc10fa7cc69
|
|
BLAKE2b-256 checksum How to use checksums |
a75a882803065ebc36f1298b9385ac0e0f09f98db3cf274edbfb5baacb8eeed5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
2c48f3e44f0bf7c3520a02e59af76f8887140bf5004b9f894ff102fe21bf2c85
|
|
BLAKE2b-256 checksum How to use checksums |
201aa55cd97218a5fbcafc6356fb103b08b9607433b279f24b48fb7bae80530f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
ab62627bb165520c876d44a21e8a03b545e5fbb3869d5d8829c5a7a0844663cc
|
|
BLAKE2b-256 checksum How to use checksums |
7b9ef7fee0187de6a01a2a83e0596d9e0afbde4852150571094ee0e940091079
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 8.5 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
5a6543d1834963ce89b49a155414fe2e8a5a4e9039907b82ae2fa3770fdf1e50
|
|
BLAKE2b-256 checksum How to use checksums |
0f6530bef493ac6277931f279c6352297868b10ab5fc6e56ebb87da9ae28715c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
802cdbcbefd1b7f1af0cf9114a6f002d5023d195ca7fc50999707544401e5d07
|
|
BLAKE2b-256 checksum How to use checksums |
6c7ddbe038cc75639b87390d018bda6d5f066c2a0da2730613a7fa8733c2dd36
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 8.2 MB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
686aa546d5ee1951c8188885dec0ff104ed050d19c1f4cf3f77db5caa0381045
|
|
BLAKE2b-256 checksum How to use checksums |
11b835c97bc22c493c172772fdbf99d1c5de4ef3e6c3df504cfaed051ddde36b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / leaf_pymavlink-0.1.25-cp38-cp38-macosx_10_9_universal2.whl
| Download URL | leaf_pymavlink-0.1.25-cp38-cp38-macosx_10_9_universal2.whl |
|---|---|
| Size | 8.3 MB |
| Tags | CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
7c249b280b1681564b0b1b3c5df006841a649441ed3208e287c83973e8fc9c1e
|
|
BLAKE2b-256 checksum How to use checksums |
eaa41130aee798fb7174b5aa77a9985a99958671b8b7a0e852a40703d2196539
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|