Skip to main content

Parsers for UAV/Aerial Drone-related formats like MavLink and DataFlash

Project description

Test UAVReaders

UAVReaders

Parsers for UAV-related formats like DataFlash and Mavlink

Installation and Usage

This package is available from PyPI. You can install it by doing something like this: pip install UAVReaders.

Currently, prebuilt wheels are available for the majority of Linux distributions and no other operating systems at all.

Example

Here is an example of using data_flash_reader in a script.

import UAVReaders as u 

dfreader = u.data_flash_reader("test_data/dataflash_test.bin")

for packet in dfreader():
    # do something with the packet, which is a dict containing 
	# the values of each field in the original packet.

I would advise you not to keep the packets around for much longer than necessary. Do not save them into a Python list, for example; it will probably take too much memory if your DataFlash file is large. Expect a 50x memory penalty. A 1GB DataFlash file might take up 50GB when each packet is simultaneously in memory because of duplicating packet field names.

Usage from Python by cloning this repository

It is also easy to clone and use this repository as part of a larger project, for example by adding it as a git submodule. There are a few build-time dependencies that you need to install before building the package.

  • regex, install with conda install regex
  • future, install with conda install future
  • cython, also available through conda with conda install cython
  • A working Linux-ish C++ toolchain with make. GCC is what I have been using. It should technically be possible to build natively on windows, but I would just use WSL.

Now, you have to make sure that Git has pulled all the submodules this project requires by running git submodule update --init --recursive.

After that, just cd into the directory and run make pypackage. Import uavreaders.UAVReaders to load it into your python. This provides access to UAVReaders.data_flash_reader, UAVReaders.mavlink_reader, and a few auxiliary functions not needed during normal usage.

Commandline Usage

Running make alone will generate both the python package and two binaries that can be used to transform DataFlash or Mavlink files to JSON. They are called dataflashreader and mavlinkreader and are written to /bin under the project root.

They both have the same interface. They take data through stdin write to stdout and stderr, so you should use them through input redirection. To use dataflashreader under Bash, run something like this:

$ ./bin/dataflashreader <test_data/dataflash_test.bin | gzip >output.json.gz

This reads dataflash packets from testdata/dataflash_test.bin and compresses the output JSON, storing it in output.json.gz. JSON representations of MavLink and Dataflash packets are very large; you will almost always want to compress the output. A one-gigabyte DataFlash .bin file might expand by as much as 50 times on parsing to JSON.

Testing

Run make test to test the functionality of the DataFlash and Mavlink parsers. This compiles the command-line parsing utilities and compares their output against a known-good state.

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

uavreaders-1.0.6.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

uavreaders-1.0.6-cp313-cp313-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.13Windows x86-64

uavreaders-1.0.6-cp313-cp313-win32.whl (143.3 kB view details)

Uploaded CPython 3.13Windows x86

uavreaders-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp313-cp313-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp313-cp313-macosx_11_0_arm64.whl (201.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

uavreaders-1.0.6-cp312-cp312-win_amd64.whl (165.9 kB view details)

Uploaded CPython 3.12Windows x86-64

uavreaders-1.0.6-cp312-cp312-win32.whl (143.5 kB view details)

Uploaded CPython 3.12Windows x86

uavreaders-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp312-cp312-macosx_11_0_arm64.whl (202.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

uavreaders-1.0.6-cp311-cp311-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11Windows x86-64

uavreaders-1.0.6-cp311-cp311-win32.whl (142.7 kB view details)

Uploaded CPython 3.11Windows x86

uavreaders-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp311-cp311-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp311-cp311-macosx_11_0_arm64.whl (201.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

uavreaders-1.0.6-cp310-cp310-win_amd64.whl (164.6 kB view details)

Uploaded CPython 3.10Windows x86-64

uavreaders-1.0.6-cp310-cp310-win32.whl (143.2 kB view details)

Uploaded CPython 3.10Windows x86

uavreaders-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp310-cp310-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (201.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

uavreaders-1.0.6-cp39-cp39-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.9Windows x86-64

uavreaders-1.0.6-cp39-cp39-win32.whl (143.3 kB view details)

Uploaded CPython 3.9Windows x86

uavreaders-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp39-cp39-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp39-cp39-macosx_11_0_arm64.whl (202.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

uavreaders-1.0.6-cp38-cp38-win_amd64.whl (165.3 kB view details)

Uploaded CPython 3.8Windows x86-64

uavreaders-1.0.6-cp38-cp38-win32.whl (143.4 kB view details)

Uploaded CPython 3.8Windows x86

uavreaders-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

uavreaders-1.0.6-cp38-cp38-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

uavreaders-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

uavreaders-1.0.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

uavreaders-1.0.6-cp38-cp38-macosx_11_0_arm64.whl (202.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file uavreaders-1.0.6.tar.gz.

File metadata

  • Download URL: uavreaders-1.0.6.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6.tar.gz
Algorithm Hash digest
SHA256 16906f85f34157aea66ea8a481124f4c7b99f343cb3bc36aa52cc46698ed57e0
MD5 8d28692735ea2b5a63d3fec366b8057d
BLAKE2b-256 e6afdb68b09857f87573010e258f48f80ed4edcb0bcb852d8a643a938898d7bd

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 165.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3d5f793d3b22a6612d28ec7c4b523ad894cb459206352d3b2bc6fa7e4099829a
MD5 156248fa45ba459e5754e0f1f76da716
BLAKE2b-256 abdc729d8d4f4bd8bbdd1def5d9113a05cab96710bd9afe00471599b2e360b4e

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 143.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a415b638a8ddf9ccc263f9fe16615d64fdc5ad7aaca80b9ffefc1faa614f2f0c
MD5 4c7a9bd618d88bf1d43aee753bcd29f6
BLAKE2b-256 196ffada105bcd09308052eef72057d8c32182ba011f61ca96abb604cb8e85ed

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 137211157744350a46d5bc36676f0e20ce673a0fa524be778bfd213b364761f6
MD5 d00f0459c18f3ad62747b7a90b4aee06
BLAKE2b-256 a47e883fb685e185ab95b28a7b5eea30538e8bc5cb4cf06c9b75417588aa2510

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d7609ef6ad03873e081a6aafac3ee49b7cbea9d013e55d71dac00d17e6f9a71
MD5 23f5b1e016ba70c21952d9323baf61cb
BLAKE2b-256 a471d5efcf94eb3a42dae25d592f2af1c07393e77a38c383aa35c24919df8e26

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69322070ea5b1e6dd323be84517c5922c0819d469376a74b54fe1105f91ed8a
MD5 508bccc2de51a540bf5161aa7c42e8dd
BLAKE2b-256 dfdb231564d19cdf44d3f45750c98a89aa6b8e0b1018c87bedb1e0041d7046d1

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e4ad7e4fb55a3a4e075bfe08782a6884f3a5a25007a89e7c0df01dd60f8ca2c
MD5 f9c6b21836e6695db8f04ea25dc94e13
BLAKE2b-256 43e26c2af6e63177ba1469ef9468ecb4d385c1abe0fe7f94c343e8c8a3249aba

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3d82623a91ae0dc2187e2f4b29338435ccb422263ba4bb991f6c86150974972
MD5 c9701b527191bd7112b5a7cf748e1646
BLAKE2b-256 8a4adb47da5e4de5f908da76b0457fe3fb16b135a7e60bf15dabe4c7d11d3cde

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 165.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bd870941a846283b2f09668da25cfa7cad4ecaf1f6d8a2d71ca5af1b4dccdc43
MD5 d97e0d2621b8adb4d0f9f57b8f72957e
BLAKE2b-256 cc80dda0d795c022b8a36ef60a8e5e600b0e3df414423f1aeee44bde856b59bb

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 143.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 207a3a23b051befee584fb4a1dc74ba9407c8afaf98ff63ff41070bb481ad7d0
MD5 87772e320a614244835c6cf2ece662dc
BLAKE2b-256 6de2ae537a792a96a9f1b52b168662a4d605b543409cd1976da7f2a8bf3c420f

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15c6a09308d55dd62ffd18faba2078884d3d986000eb26499effed40b4d306c2
MD5 9e8530a7013f0f644845e2f868e36195
BLAKE2b-256 ff23927164af9008eaebe804169a79a84545b3bdaf2d43a898e6c7c0fca6fb16

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5d6bef94f512eeb1df654845a465f818ae9e002b5173c81c432d787683587e0
MD5 ddc8d1960f239168d266a10dd4621318
BLAKE2b-256 33cbbaece33b62aa823b1fac7595b2302abee7ad23ed0d7ffe550ba8b1fd1960

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc4d48462deafb851996f9d13ad3c39b27197a8d8e4893938421c5a1fc299689
MD5 bdc95be1aceb0c97fd9ccc9ea60b08c1
BLAKE2b-256 09516659ee352005ee4ab641f0476a9cb3eaa37d51a3089b77dc4a05ce963ed1

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21df1c107b9672c16553e183c9dedc6d0fa3aaf45e37723b743122df8b94b3a7
MD5 fc578cf9377e664b479214e752150e4a
BLAKE2b-256 9d121d16b7c5b7774ac85b8d7e86e52f92b7fc420808701a1223d7e6231142b9

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b57f420278e09f79d2238b584c975bb6bad1d6d68eb267c39889c4d83e29936e
MD5 16d142f1c3b15d1dd672db402465b727
BLAKE2b-256 02e4a3f04eca345fa12e60e297489cd14feef224de66a1835a6e915b4014c1f1

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 164.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5d3d39ba9fec61b158999b08fcb3947340915c78ab2b04fe2be7eeec7286459f
MD5 a5922c5556ac894a3d706cf14cfde704
BLAKE2b-256 3295b1168100095c79ca150d41f341e162dbb0d8f55337be05d9e5520943fd67

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 142.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 476dd9544ce151ee94047c0bcdfd732d909c0c9b2377d6d52f5371076ca4663a
MD5 40321d3bed3ab0f104a8d39806ff4ccd
BLAKE2b-256 ad3f204f37ac9db772406916f6feafee6d90362b616e54b6ae97c0ad8d86e10d

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3fb7311a86b087ecdb3cedd56de6399caceca2810075da78939fcd91fb7569f
MD5 d35e428fe0ddd1a2e1c5a953a600935d
BLAKE2b-256 14840131c53c6d89bd4fff5233665dad48d237b3d01a388e654abc31f43d3e0d

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e69d9971dc69d74f531be58754c7a87bd1db7eea35edf547a9e7563b680a619
MD5 8a8d4275e13b81e077dca77d1c6f9847
BLAKE2b-256 e04837e104fc930f211774cdbd473c97969d27258732645d881d887d70ee4c22

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaf88d9c7eeaaef768aa6862b59d186b684c88a2c0a82d9f71e63290b58c7e21
MD5 a81bd9c6501d97b4d9eb8c90a2fd3868
BLAKE2b-256 52e2b45486775380ad08f33730ba5da618f83a24bd480a2159e4fff771fb33ea

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f7048f822545570ce4d87608b51a59c3a9ca7c0d50cb306d1ebbaa61801a52c
MD5 92478888cc5ef0eb0ed2ec5b037ff0ff
BLAKE2b-256 f9660d69d89af578bbffe2ae34056449727dc10cb4928fa592e3594196503899

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce6795510063e68ad4b8309c7fd0a773a8cfb349f1c6a5c9eff0cbca2be17dc
MD5 674a0630ac326122807336c628d6492f
BLAKE2b-256 f7147bf12d61d5069b3b5b2211e06fceb443e543b3f8c51da519536ea70d3e2c

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 164.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be989726bcff7403d6312da1f259950a24268e75d8e9bc9e5b09e5e859cfafe8
MD5 ad9e615a9ec450dc0a52c512c4d62e3d
BLAKE2b-256 fae7739cedbf37e295d2363261aeddc8891cb0d74291c043ac57d876c4663c28

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 143.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f9e48dbc6267a7dbea853d652f6667381706f0408d220fa4a291505945f8d37a
MD5 776330d2b08ddb1393a2e43406cf267f
BLAKE2b-256 ef0983b4b53363a9ad6cf5cfa56ca440c85b05a7193762eebb02b76ff057c461

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a810fab1ed41cc8982df483dc016190d7d96aa50f74ab33fbdd03984f6fa4f4
MD5 f09c3e8e9d4ba67222deef911f2907bd
BLAKE2b-256 b04d190f54b4523348be4e460a1b0af4a59e78e67fe44ba13aef339ef332ffae

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 416c8ebedb2df3c727af0f5a19dcdaf4d70b7039e0b40142f2177e82336b9d22
MD5 dd2ce13f3a3c1ed53c18f35abea9d6f1
BLAKE2b-256 6c2d7b2a9f1ba414033f03bcc82dee5a94d705a42f9b3a36aa30a48363bd0214

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ce9aadb5a097e268fe7e59f6c02632acb68df82c0645791d88176ca9233c96
MD5 312d0df2d71068ec2318bc8046200c81
BLAKE2b-256 323dce6779caaefb6483bbde59eaed7c29318a9da7fc4054db92070e8238bd30

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcb646ebd6964ebcd24831d328f279886ed9b3f9c3bbb89c932e00b717f929d1
MD5 74ba9ed3998f6b7744dc0a74a2450a66
BLAKE2b-256 62888495def90a287709f43b6d1d20aa926b3020aefa6a9c56dece6597022325

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5563088b370f2182a19771e07e10f0d8e3424f9c70e9db88ccdc4db2e1f72a3e
MD5 3139442f0f9ac84b5b1db72b4a11b9aa
BLAKE2b-256 457e3970ea1d5d0427f27469de8ef581e5743589e3c30fff9551a827cdc41455

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 778655cd307ac01c33c671f00bfaffe62773c272e4c97e9a7b975773ad8b0112
MD5 0a064e1fe9313824bed4679f80cc6ab1
BLAKE2b-256 8cd6f5018b8ff827041207dd573c290b8d6965e6ea5a382abd8232d6d9dc1c61

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 143.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 642c1e511758a0fc523948794c1b199d56b4a87dd3b0d98d2e087f7f42cdf3de
MD5 2f14964f6caaeba55d25eaec4a54fd2f
BLAKE2b-256 ce2dbc3087afbd90531952d19533415762ec83e758f01eb7ac7e537946f65f17

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2ca42307cfb5312be35a01efef7760196ee9f79fb219a49572552a277b11145
MD5 8872386a8605ac580f3faac6a23edcf6
BLAKE2b-256 98bd67b72726f49e8688d5dbf1db8625dfa1d3b80cb5b7a227f9df334d142dd6

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d88db5a5e60c136152f47d66ee1af71c4d2bfef0d75e3db41e8d18c83a83313a
MD5 2d1e9b11d8625e24c33948368c0db3d7
BLAKE2b-256 8602c26fbcddf79c7594e83ee57de497def5e30c2fd19b40f95246ee2ac41227

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c201a15c296a527eadede17bc6ea80369813b4273f16fd5f4cd660d7951e6093
MD5 b1937fba57486668eddd982a8714e2b7
BLAKE2b-256 769b86c7f40242c5fe10dd707697120998efe6e54ece714c507014e596bddb20

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69cbc7a50706f05f5c0e80f523705722bf31bf8b04bb6bf258292435bd7ad3e2
MD5 956f92aedfe2143d764ffa63feee71e3
BLAKE2b-256 a691d6d2378230520b055f781f02ea1a1b6146b2b7accd59ac1630e183aed157

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79d45183d98acfe7cc687999a9e11f0e7c38e4fe5f05b0b29694567f2bb0c7e5
MD5 74e92f6131414ac0bb59d81dc0d6b255
BLAKE2b-256 9a7cf9e43bdda2ce3d242e677ad82229fb24bef4c0a80d494125f3b58cde91bd

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 165.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bae47dd29494c4021815490d4ac29ac73a5e3b2f3fead62c5c37988e6f8ed66b
MD5 49be59285a6fc065ecb1dfddbcb784a0
BLAKE2b-256 b74646d788843d42c7f45b896a21685b9ced40e9743b159f155b1cec4880106b

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: uavreaders-1.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 143.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e946f87508312a06765f81b17aacbfcd1a9a1cb9f430e003976ea0eb24ba4f2
MD5 67d347ad0d0164fd6366f5c2b02b55f0
BLAKE2b-256 9bdc2f9cb0f201c271f4e9af79e530d5e68a347160f94588031bdae6f3a2d65f

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aece08f3b8ea0bf41335f67731b9f87f88e4ff01849fa0bf029bcbde138e5cc5
MD5 88b6bfe7e1cfcf9a012f337948c81773
BLAKE2b-256 9566dfeea568bf31fb12ea8adf70a3570533b05558425fc2ae5e1f3947036ab6

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fec965edfacbc71afb973b06694c6ad9709e960bc2c137e3ec393cda9ff9c1ae
MD5 b517a524bc1fea72903e23fbc64c40c7
BLAKE2b-256 7d2802fcb538095fb904323dd4fdc92a3b51369884f9f179d74bfa356e513fec

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35601a8ffda0f2ab817d6f17054558426ef182357100118faecb16b9d41b20a6
MD5 abe744d7393806053db3e1f8fd742653
BLAKE2b-256 05a0c7d110e5f201df375ae6a223dc7ec4f65452bcbc94b4fc03199fe913e4d2

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6196f29afe577ed9136743711b6c5c647ce2cd8a071e49b9330427d69314bc5c
MD5 d5f81962e23e7d7960e74a2e81b86966
BLAKE2b-256 0f1ca895172f5d4bf00fec4c70c78704b7be103846b0bcdff8e955e3cee8e8e9

See more details on using hashes here.

File details

Details for the file uavreaders-1.0.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uavreaders-1.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b5b91ceeda51f1370f375902d90db9eda8561e64b0251b0759bfb508d5a0093
MD5 108779799abf6497aa1bc98356c94140
BLAKE2b-256 ac06158f67c790a0204c9c91d76073272aaf2b59a635fa5564d51889ea441c56

See more details on using hashes here.

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