Skip to main content

MAVIS Differential Astrometric Calibrator

Project description

mavdac

MAVIS Differential Astrometric Calibration. This image processing pipeline is designed to ingest images acquired during astrometric calibration of (e.g.) MAVIS, and output the estimated distortion field derived from these images. The bulk of the pipeline is written in Rust, but the most useful functions and the CLI tool are wrapped in Python.

Install

pip install mavdac

If successful, you should now be able to run mavdac as per Usage

Quickstart

The simplest usage of this software is by calling

mavdac "./some/pattern*.fits"

which tries to parse all images on disk matching the glob pattern argument, and prints the distortion basis-function coefficients to stdout. These are not very useful on their own, so a user can also provide a set of coordinates to evaluate the distortion functions:

mavdac "./some/pattern*.fits" ./coordinates.txt

In this case, mavdac prints the sampled distortion function values to stdout, which the user can (e.g.) cat to some output file:

mavdac "./some/pattern*.fits" ./coordinates.txt > output.txt

Usage

There are a few ways to use mavdac, e.g.,:

  • Through the Python CLI,
  • As a Python module (part of another python-based application),
  • As a Rust crate (part of another rust-based application),

Here, I assume you are a standard user, hoping to perform astrometric calibration of an optical system using the MAVIS Differential Astrometric Calibration technique. In that case, the workflow is as follows:

  1. Collect images of calibration source into ./some/dir/img_0*.fits,
  2. Define coordinates in pixel space to evaluate the measured distortions, e.g., ./some/dir/coords:
0,0,
0,8,
0,16,
0,32,
...
4096,4088,
4096,4096,
  1. Write a grid.yaml file, specifying the geometry of the pinhole mask/calibration source.
  2. Run mavdac pipeline, specifying image filename pattern and coordinates filename path, piping stdout to some ./results file.

Below we provide the requirements for each of the above tasks.

1) Collecting images

  • Each image must be saved in FITS format, as any of: {u8, f32, f64, i32, u32} type. Note that internally, all images are converted to f64 upon loading.
  • Each file must contain only a single 2D array in the primary HDU, and must contain the FITS header keywords:
    • XSHIFT: shift in pixels along x-axis of the calibration mask for that exposure (from some nominal "home" position),
    • YSHIFT: shift in pixels along y-axis of the calibration mask for that exposure (from some nominal "home" position),

2) Defining coordinates

  • The internal mavdac pipeline will fit a set of distortion basis functions (e.g., 2D bivariate polynomials) to the measured distortions. If you run the CLI without a second argument, e.g.:
mavdac "./some/dir/imgs_*.fits"

then the software will print some status updates to stderr, and eventually the coefficients of the fitted basis functions to stdout. This is mostly unusable, unless you write your own software to parse these coefficients. The intended usage is to provide a set of coordinates in pixel space, in which case you will get the distortions at those coordinates printed to stdout. E.g., with a coordinates file, ./some/coords:

0,0,
0,2000,
2000,0,
2000,2000,

you can run:

mavdac "./some/dir/imgs_*.fits" ./some/coords

which will output:

0,0,0.0966850540113886,0.3300609989212976,
0,2000,0.07252484678180265,0.007773570343281411,
2000,0,0.004342546567941594,0.26372826456406706,
2000,2000,-0.0018909241959087534,-0.0036487693998900166,

to stdout. The expected usage is something like:

mavdac "./imgs_*.fits" ./coords > ./out

which cats only the stdout to a file, ./out. I've spent a bit of time thinking about the simplest user interface with this software, and that is the best I can come up with, but if you have a better idea (perhaps inspired by experience using similar pipelines), please contact me or raise an issue in this repo.

3) Writing a grid.yaml file

The coordinates of the pinhole grid are specified by a grid.yaml file, which currently only supports the "Hex" geometry. Here is an example:

!Hex
pitch: 133.33333333333334
rotation: 0.0
offset:
 x: 0.0
 y: 0.0

All of these parameters are required, they are described below:

  • pitch: distance between adjacent pinholes (in pixel units),
  • rotation: orientation of hexagonal pinhole geometry (in radians),
  • offset: shift of overall grid in pixel units, in x and y dimensions. Note that for x=0 and y=0, there is a point in the grid at the exact middle of the image.

4) Running mavdac

Finally, once you have:

  • the images in ./some/dir,
  • a grid.yaml file,
  • and optionally, a ./coords text file,

you can run mavdac from the command line by:

mavdac "./some/dir/*.fits" ./coords > ./out

For a reminder, you can check mavdac --help: mavis_acm/lab/inputs

$ python -m mavdac --help
usage: process mavis differential astrometric calibrations [-h] pattern [coordinates]

positional arguments:
  pattern      glob pattern for matching fits files to use for calibration
  coordinates  file containing coordinates to map through distortions

options:
  -h, --help   show this help message and exit

Validating mavdac

All versions of mavdac < 1.0.0 are subject to breaking changes between any two releases. The tests and validations are being developed side-by-side with the software, so will become populated as the pipeline matures. It is envisioned that there will be 3 levels of validation for the software that should be re-satisfied for any release:

  • unit tests,
  • system tests, and
  • hardware tests.

Unit tests

Unit tests for the rust package will be found within each rust module, e.g., within ./rust/src/lib.rs, under mod tests {...}.

System tests

System tests for the rust + python package (e.g., the CLI), can be found in ./src/tests. These will include tests that generate images with known distortions that are piped through mavdac, and the measured distortion field can be checked for quality.

Hardware tests

The final validation of this software package is through it's use on data acquired in a real optical system with introduced distortions. To demonstrate the challenges associated with this kind of validation - try to construct an experiment which can verify that the software works as intended. The following are the most direct:

  • measurement of known distortion: By injecting a known distortion source into the optical path of a simple imaging system, one can estimate the level of distortion introduced by this optic, and compare it to the truth. The challenge here is finding some optical component that introduces a known distortion with some high level of absolute precision.
  • measurement of known calibration source: By using a highly calibrated pinhole mask at the entrance of the optical system, one can perform a classical distortion calibration, measuring the observed spots and taking their offset as the "true distortion", then compare this with the recovered distortion using the differential calibration method. The challenge here is finding a calibration source which is accurate and stable down to 10s of nanometres. It is worth noting that the calibration object does not need to be the full pinhole grid, but could be a smaller set of sources with precise relative positioning that are moved around the field through different exposures.
  • The third and most flexible method we considered allows the use of an unknown distortion with an unknown calibration source - that is, a calibration source with some unknown pinhole position errors, then to characterise the distortions with this mask. This will allow us to estimate the true positions of the pinholes (assuming that the mavdac pipeline works well). Then, we can insert the pinhole mask in a different orientation (e.g., rotated by 180 degrees), and measure the observed pinhole positions. These new pinhole positions should be the original estimated pinhole positions with distortion removed, rotated by 180 degress, plus the recovered distortion evaluated at the new pinhole positions. This should first be done without a strong distortion in the system, and then repeated with stronger distortions to assess the practical limitations of this method.

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

mavdac-0.1.2.tar.gz (20.7 kB view details)

Uploaded Source

Built Distributions

mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (729.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (762.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (829.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (745.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (606.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (579.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (729.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (762.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (829.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (746.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (605.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (579.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (729.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (760.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (829.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (746.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (579.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-cp312-none-win_amd64.whl (388.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

mavdac-0.1.2-cp312-none-win32.whl (375.6 kB view details)

Uploaded CPython 3.12 Windows x86

mavdac-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (728.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

mavdac-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (759.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

mavdac-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (827.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (744.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

mavdac-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

mavdac-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (618.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (605.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

mavdac-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (498.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mavdac-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (506.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

mavdac-0.1.2-cp311-none-win_amd64.whl (390.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

mavdac-0.1.2-cp311-none-win32.whl (376.8 kB view details)

Uploaded CPython 3.11 Windows x86

mavdac-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (728.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

mavdac-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (759.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

mavdac-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (827.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (744.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

mavdac-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mavdac-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (606.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

mavdac-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (500.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mavdac-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (506.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

mavdac-0.1.2-cp310-none-win_amd64.whl (391.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

mavdac-0.1.2-cp310-none-win32.whl (376.7 kB view details)

Uploaded CPython 3.10 Windows x86

mavdac-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (727.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

mavdac-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (759.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

mavdac-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (828.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (744.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

mavdac-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (645.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mavdac-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (606.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

mavdac-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (501.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mavdac-0.1.2-cp39-none-win_amd64.whl (391.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

mavdac-0.1.2-cp39-none-win32.whl (377.3 kB view details)

Uploaded CPython 3.9 Windows x86

mavdac-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (728.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

mavdac-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (759.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

mavdac-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (828.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (744.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

mavdac-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (562.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mavdac-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (606.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

mavdac-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (579.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mavdac-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (501.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mavdac-0.1.2-cp38-none-win_amd64.whl (391.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

mavdac-0.1.2-cp38-none-win32.whl (377.2 kB view details)

Uploaded CPython 3.8 Windows x86

mavdac-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (728.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

mavdac-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (759.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

mavdac-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (831.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

mavdac-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (745.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

mavdac-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mavdac-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

mavdac-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

mavdac-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (606.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

mavdac-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (579.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

mavdac-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file mavdac-0.1.2.tar.gz.

File metadata

  • Download URL: mavdac-0.1.2.tar.gz
  • Upload date:
  • Size: 20.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2.tar.gz
Algorithm Hash digest
SHA256 ba479e95e2a16bec7369f773eb8eac2284421249115f6144a1c0439b9d18702f
MD5 ac2907074c196d7e032c887a553824ed
BLAKE2b-256 073b433a9de5cf9b3afff017da50c9293d4bf6c461fb0dca2d61e3568c309f9d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4aa8bf70330819e28826d3aef577253ce9628fb3a060497fe9eac0075dab346
MD5 b83dd39336c72a91548aa5ef22728cdb
BLAKE2b-256 3b1c20cf2e3ee5735b772193061041379f43d6e426b081fdc7d850423b0a323d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6ddaad79abdbe289fd72c8907c090ceaeec48fb10de2147a49efe93fef841c1
MD5 a4753f368fade365258ddb72c07d770e
BLAKE2b-256 316fe4ffff1ddbc652d551cb4e26740ead3c33c364f2a928be427968da4b9091

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b2c8e609917cf28f774565b51c269e95ad0776028dc9cd2e8ef006143e15569
MD5 a19f68fa35453029bd1bf5e5dfac96f3
BLAKE2b-256 d1821931c0ce132f08b7a2561c94bd950791a5d6069da0f3f13695db549b4c98

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ee002bf72f0cb8606b6a5bc48ac4e11879c2cccb01b963dbad685f0e071ea8e
MD5 8a8d0c3efc90d1ceeb25c84bfc0c3ee2
BLAKE2b-256 a4a77cfe48f61441146d8f1606be297b72607ef1009b61f34b9b19c68f2e51f3

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01e1f246bb407d067084abb6d325e8d61791b489cb17fc546e53a5bf5132f64c
MD5 cdb6b5269d20fbc358a610f2829571f1
BLAKE2b-256 7206b8cf4de4acf6c1a95cd83576723e1038cb8d9e2b924d696de8f24d7e63b6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c08994e8058ef6006e304eddd3e07b4b08913c85f824621de642c50594edf4d5
MD5 cd64bcc687053b4c9e81fdd570c55cbf
BLAKE2b-256 5c73ff64ff3f788c6323181653259c2af86312449599496db44919dc49bf8fb0

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b09d97ecb4c98a28f1305c4a2a33907615b15cce0db2ee2470d5b070d499082
MD5 8872266290715e934b2082973bf770db
BLAKE2b-256 4e165ab4463a81adfd8362327dd51d61df7060ac24ed8ba40b1c418d732a0c9f

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9355d3689c20667f2b0d6613d607aa6abafc26e078262b3b0383f2119cae151
MD5 9a221cbcb4ab175717b143cf8afbd99b
BLAKE2b-256 dbb29e5eab05a3f2a251bf4f644f11e38789ef47d81f28b299dce7929283fd7c

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64ad55e3d92f9871119cf9cea696ffd4828f1e789ffcf431018b5dd0b47926f1
MD5 aab6a3cba884fce940e686f71425990c
BLAKE2b-256 757c76eae220550c9c3f9a28f93888356ed323f4f772086aaf6d8ec0f45d79e8

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb8eff733a5c82e09899cfefc9156af6e5f413270c11d949b03123192b2f5849
MD5 4aa990f5e26fd13c891a1dc3610a9776
BLAKE2b-256 4edd22571288d651d8c0116c11e521e50d8ca4adb01fa4fa5919f2c397bf737a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82b4c31fea158ad0b9631b5dac6c0cd5a2003ea0d80f1b7a93b2203414d7ce32
MD5 c0c04a8e35576dae0b31df59aa77a264
BLAKE2b-256 0cb173ebc0c31ee039c5bcbcd6657fa27fd94f55dadc6374646bfb6fedac94e4

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6e497b489b6c6fe028909f4ec2e545fae1ac1191bdca9ac832231c68450caad
MD5 77f69f7afdfb2aaf7083b48b8e66898a
BLAKE2b-256 83e42692c200611a0b36911f7b95de7d4dc47327cd0b85e3e3a7445dc4fecaa8

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b24662264447bb617c0d246eaef7acdc1f34135da6bc9d33f55f473d0e8808a
MD5 0d167601276e96f8f15a0f5a22d7d779
BLAKE2b-256 ed14c57ffd8cc8810e52260c251ba66909eab96196ba6ba6966271deb6bb0727

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16f41b14bc5d03fe0d02a3b7ef840f585ca520f64b03aa2ae0145a5f5bef2c18
MD5 7f3e79aa6b2d5207e47e38d1c7a6b4fb
BLAKE2b-256 4bc2414b386544a39917e2e61143139ffac4a601e8f5d036e38ad4ba2b648181

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d74b62d4249d8675ce2bbb7768d252a431f0cc11c994de20311b3bfe3b97fe
MD5 bceb0740eb38101c82cbf2e95b9ce4a3
BLAKE2b-256 57435e74c79266c5f834dabe22b1181361d7d43b7ace59bd6caf4f24ee402b1e

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb59ca5670eb97d4a2f02d9d9e520ed51145cc02f9003cd23b664170c26d94f6
MD5 ef0fabd8c9f44f0467335ca12044a340
BLAKE2b-256 1498bf0515d8da94a8c059b4355978060c343d8a279257722a1953c180fc3869

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48e0f2140531232eaa82626cba227bc90526d01faf53e0a64cfd6c36e0e7a4e8
MD5 5833318fb2b30822efe5f9562d0f5c96
BLAKE2b-256 2b64028851040f162582b9b4eb2d6eb736dc5dbf1e5def0ee7bd4963d6bf12c8

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa4c3d51a08e41d560fc4379b28ca0f3c83fc57d39b8dc56e6218f1a01cce09f
MD5 858278cf3346356657ffc30e89490c5d
BLAKE2b-256 a98283f912c7c9e55cccea1609693e3f7290bf8ad580bc24877dbda3d3c3a3ae

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97a45b4184165c1d722b13b23549c786fd6cee4d9ee0a8aab9ba249aefd81d60
MD5 be88398506000d4eefb17934b3023122
BLAKE2b-256 979ce7acac37c6055112ee8ef6199041dc72e2b42cdbbd919638fb72e9fdf8a8

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aad22f5aa78692ca0ca8b4f6c6d5f729bfb92959a532c22245ae9689305b500
MD5 6c1868cb9f5887981078fdc45e07d12b
BLAKE2b-256 34564256bb7b0a8a519462835059c3948885e18f7d8746c30256eeac1e8af9a4

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57f37fa05dcc34fee7acfaa18f297e992a21a31bae2843b0589c8ca5ef0b18c9
MD5 57a47d75f3658e4dad3911685967cae2
BLAKE2b-256 f9551daed51b539577968544c78f372d037d8f7a3c60cc8ef122942cc6f60fbf

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60ca8473a0e7ba86e5aa07ab2c01dfafc867699595c626ca4aa017c15a32b70f
MD5 fbd34a79efe8ab5ab327651406a05a7a
BLAKE2b-256 e72a9d0a061008193641caee9a6e5aa4361179e76a767ccdc25a885250a56f1b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95802a0059a4a4a985cf63b3808ac3813719dfa920f4a3056ef94f92d8f3eab4
MD5 a6e9e8f7c80264c4c52cfd4fb7c5106e
BLAKE2b-256 57df1e72b9a485ed9910aeea78585d6bc9ca8070354ed921e5d64a51c518f4b4

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bd1e99732144932fdd065790c7f74e2f3de9b15350da00675a0d29e5a548b30
MD5 5bf17486b1f36c95d20185705d527625
BLAKE2b-256 723db74cbecaeb1e184f63c14f05d274e2aaf2e50481286d6ef465d4f6e3f96d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52708d6c0a1f649b2ba179677587955999ea8e836c03345b56d5ab8ad86ce1b1
MD5 0935f5009d6ef1300af6e4e38521f4c1
BLAKE2b-256 d21cf97d8f29be6903b12cb93690c9723ce57932b6185b8ba3eddf41204b723d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1aeabcc6603b5573e54f4b6929780aaaeba746fa8227b1d5563c6c3f18096e61
MD5 c55657a68542a812871181514ee426a1
BLAKE2b-256 43b8bc4c79a26e7fc06ada2e6995aad8197a88095a08a933d4380f5f91743fc6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 115070814178f8be348cb1e8909ccf7385b1f0d2b7d73b00c08d007f6ba89d7c
MD5 ee9c742a0ae52636417913b0d3c3c563
BLAKE2b-256 028f05d1a50f11a9d2953180d3587a3c1eb11ec9a610136a2c737db9e8af6155

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c855a5c6624144b2e2206ca5ffbf1b7d1e0e52e64b1b970a409b4a69481b2320
MD5 e66f10daf2f3c093b91fd1048586e4fb
BLAKE2b-256 5a6c758ab64bafd38121ef4c53515d30f43f5414d51314afd58ed050d4945b55

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 63912ac697c47843b0b139ecf331bf3d1ba61725b3edaa3f13601ebd24ec3607
MD5 70dc2f54b692824d0e321b0a74dec695
BLAKE2b-256 63b529e0d6fc4c5c5a387c23b258a7630f00fef61d3b944673046d6ac38cb169

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-none-win32.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 375.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4972b02b81eea1f67b194169b43279c4c09dd870ebd8fa49a59d89d28def1c86
MD5 579c3a1b7392cb3fd497f9cc4277c228
BLAKE2b-256 c46dd0c9145cd77a1c2f2291b1f19160a650947a86875a8464be07a2af9efd3e

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8567baf5d157186cc05b8ad31733cba387b2d8d636a61ce4c165b568f23b4cb7
MD5 0e362faba254163c34a4775e19f767b0
BLAKE2b-256 d7241c3cd15807bb8df7865f19216b1bca24c4f26ae6baac03ba6fe6f29f05cd

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8c8bde916200438b8ad497088daa1b50d06678938b7154e4a97a4c8a95c5cf0
MD5 030ee9e5c8b75c0de2d3004bdfdf37b7
BLAKE2b-256 7521edab2cb71bbaeec36333b9ce2bd85d74db798a5812c7db1e5d244671654e

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3542f53a13d272ecb96723e0d383a962a6d209954e1a8aface80df9e71c39d53
MD5 a2c66cae025617a1d3013bd1f6239a91
BLAKE2b-256 3d976c37f11270bea998c52444f5bb2767867f4023b89c8ebf5559538a8bd04d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efce742b14591e5a1e0ee71e15df469e106bd7e6842adc84923d6d1c900219b3
MD5 e0d776f439a35277b5203d3cd0d344de
BLAKE2b-256 4f4525c109e45ffd2e376fecc8d4ebdc1ecab0dc5bdb0a8f1287b1aad6a9df6c

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ca8c8ff323526c907e7feb166ef9c9cbe03efb49f0acc0df14076d12d53b07
MD5 fcd853564de5dddd4a9404ee0328d382
BLAKE2b-256 077f1e3b133d1bfa3849ffd848c7b836026c649243ca442b1b48023b253c96c3

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa1258fadae9a797509664f99276f80bfab9c672c5096f60f0955d1cf0212f17
MD5 7fb37068f3ed9baafff7912169e744a2
BLAKE2b-256 f530fb81ddbe7236fcae79c2aa3187a1ffdfad74c55cc0e6513f1e4d28db800d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5d16206f648beefcbb8b6327dd434311a4c76fbc3ae002f8528a97a52d9a7f5
MD5 2509df649ef84dc469d7e4178e0cf1bd
BLAKE2b-256 3afba37f14a46500547505c24f7f6d3c93b4f2c54c32e8b5f7360180625f306d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4cd48f1eccc7ddf1f8e4a3b5c89cebff53eaf23f3f99547629b20e50638ce43
MD5 6bf5407b2c5b7987b5ae38df3e3d012d
BLAKE2b-256 29526906952a5c240f24188c1eb19e6f343071042601169273d437f7a72323b6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1386cc0af98fa999a19fb05a1e5f4f602bb50d223f5c26a198a0e36d41b42df8
MD5 79805b79005d9c8331ed5a2384f41677
BLAKE2b-256 4732e13812f4111fb3621aabc674e59e727ed61f09d85568b735c48e15c9abb6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5131dcb8e316746959012b09fa247d4e706e7caa38226e47daa2dfdd75a38b1
MD5 8594c835b8045afb3d45e1f7652d67c5
BLAKE2b-256 7efe90f84b9e060d0392ea1b328a81569e3b6b91eff2352c587ae59f2e3258cc

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17e7e3aced8f767aaa3d04a9079f9e167af3c53a55e31da77daad83e1feecead
MD5 b5e8ba09c3e3a57157233bac6859e323
BLAKE2b-256 47b6ba0849f5a36c9a4f853a5d29a6414b2a08df591aa958ff7911ffaf6300d3

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a14615563188ddb0f4535bc0a10d6521e5a32111868a8178255417a601563c90
MD5 975d1f903a0126b5659fb48608e55c1a
BLAKE2b-256 1a51ce1ab44efa10e69c035c3990d2a39f2065b271b3f5957d53e421d17a2206

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9276b764c41bd5566e1af9c8bd2b8d0bfe34ebaa4984aa3ff70e10a8374b0852
MD5 4b4f0c033da9c32fc79b9a234b791351
BLAKE2b-256 4565c0b9896517ce9c8ce4b74bcdbc2b86f4fbb9941fd0c95331b11f10d030cc

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-none-win32.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3b86383066059e7cfb51cfcdcbff95ffde854516d8283a6b6d3dffe0dbd8d406
MD5 2120389adf66355b333b107bfbdff16a
BLAKE2b-256 3c63282520e1ea076b7b1ca12aae974f3005336ec0984a4e534cffd54b3216e1

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28038f48acdfcbdac7656a6684ce33b6949e84e81682791adc236d086ef0622a
MD5 71553f832a14cc32c8de5231898e8fca
BLAKE2b-256 c517b0bfd4905c1b7c9b97b8bb8f1373e617ca4bfdbec9c859258b572550f0e3

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3edcc3b781b60ca8c61847e74f29aa3f677d4776ea180bd915931e793b9a17d
MD5 fc4f08268d5c1b56eb84d8448530acc9
BLAKE2b-256 51a57f6a827db2d0b3ea1ab04ef9260056b1573442b6af9dd39448ae6378eec4

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 379df7d04189433ac858550b93fc09f36998ede5c47c0fd21eb4c0664784850b
MD5 6a69e41d2d23dc2607937e03c9a295c1
BLAKE2b-256 0a97eb7ddf9b0c2275181cfff6a817387031e5392ed823b68410db3835df6811

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58db6f428c3beb663c84b553b647a2834e6227a03b43ad978ec5dfea37ace335
MD5 0533db066a770acf2e7153a84f0b7cbc
BLAKE2b-256 ea5ddae6c5987feb2aa19a42f54309d54667a3e450506fbcf4f56df73e352724

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eccc265525bbcdf7fe2465110d8647994a7ab9226f522bdcdf93d4240a66728
MD5 87b7bb5bcf1118bb51187aa595853d83
BLAKE2b-256 2119327bf3b34b8ed8f5af752fd4d067c6a605336edbf06b5d7a425b69ef5a60

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abae66a2424710f981af3f60b78ca62265e00b38f199cfa41e287e2e38396eed
MD5 1ac6295ecb6358e911ca2c26ba2409f8
BLAKE2b-256 fd67b421051af5db3606e0a4c8e341ea5589c1e28daa7f4e28ca2db33178771b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19d5c10a8ecc2acc0d86aecde16b2fb5c80fe58214989d109720c929b0a7a1bb
MD5 3bbb7325af91d8421bd47497c8c78c82
BLAKE2b-256 b42a3006cc76ba93ec8f85142ae00086789a3917410fe67f37fc85abaf6635aa

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56cdae0bcc8f5b81fad663826be865a1459cec94d560203c4d14a5d8d43022bf
MD5 5a89b6164c94bf6f133b26edbfef8636
BLAKE2b-256 28760489785742b7394bce269c9c7a3829a32a26d3996c7d194efaf12fd8e772

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fd6fdd2976a3fbac09ebeceda6701037af1b4458d169f8f9286711561e11c1b
MD5 7c01ff3ddaf215c1a404c8e765e16a70
BLAKE2b-256 7076c2f03b873a283dbeddecf12c998a5f1ac99ccd9a03b9aa355fed617fcad5

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 216766eb82761507e78472be3e0aee7507f7af8fd925c81beedd5dbd06ece7d1
MD5 84fb9d123a5d3eeaa089b8d700840fa6
BLAKE2b-256 493979537be395dc269a5b6c84a3292400ececdb5229f749fe51fe00a98d77c6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca551da199e7c794893bbf9666186f00b87aac930224b7a74cae38fa2e125045
MD5 8f88bcada6424328f148a3958936ea75
BLAKE2b-256 9f2326b396f3831434988448473cd456dabd04693643bc4ae4e1ca43b61e2698

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a91a451ac4f938442925b172ebe44c92e82ff35a2f187fcbbc36784f94c6119f
MD5 9a417a7294be78a733200940af84a159
BLAKE2b-256 1cd39c872b918578b572ec39eb1403e32e75fac6a26e3af54869d95367d682a1

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 cdff0910a8a5df2493a9447fb96679b40452d276525c76fcd440c23dc853eb4b
MD5 9483282d463e66597f728146c24af5d5
BLAKE2b-256 6c183b193e9cefd58810becdcb03b68320284e39512a11618efccc4ab038b378

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-none-win32.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp310-none-win32.whl
  • Upload date:
  • Size: 376.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1b5764f5268e90931c06dae7a4a0f0624cc6234a0a7e29cb662dfa0c8c6a4f75
MD5 57807ab56b28340d1f58632cfdf2acd2
BLAKE2b-256 82d1800d45910e43399fb67ce118ac4e74f7e75feff1b9528adf31c9d95ff56d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81566ee4ad898da39535149992f9c1117e0e04e29fa10030c445d347959ce2dc
MD5 4bf0f3541fa91bfa5413cf7872c1cdb9
BLAKE2b-256 63122eee5b909f8c0b05ca4cee54b68ba8df0132b55c2c4c1f2891876bb14d5d

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a81df43ae7f4e8b1bbe7a34b12bdf28905be79201b671f46a3d3f76caf70a929
MD5 2e7002f20960af49e9b11998cd859828
BLAKE2b-256 3af11b85dce27884ff8a6da98a2d0bb11aaa03fa89b8707a01443864a087345f

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d7dd622e3cc7f098a5c79f10111fec7e6ffba075c3f0c5d8076a556493a5924
MD5 485a7309eddb2220c90216136ca37d48
BLAKE2b-256 6dbda63ff97a73e27672717cd535c02d2f561b1883aa7c6994e69cc15438870a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65357df57d31d7efbe4bfdbcb6ca7108b060b741d84ac68d1856db7826f5030d
MD5 a3473986facb549a8196396df43a32b1
BLAKE2b-256 a0a57190de779e596c00e7b1d33d792c9f46b405de5ab7a28c962f871cccb3f8

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd0f5a807930012f3fa9e879c82d2fa5b31d44f360fd2f4d711ef5cd4060b5f0
MD5 57dfd931ccea4ec6157cd1963b6ab0b7
BLAKE2b-256 bfb30471417fc4bad48dad0bc6ef0d847ae2c35b6f917212c9b859d3c4b9defe

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 923ce6554517894affda53981ebd7933b319d9b738eda37c5ad7e8e6d42569db
MD5 33a44fae07fcf0827246fe900a0e4b98
BLAKE2b-256 fef0b33d62b67c6aada90bdff1bc062aa862d7c7bd5e29acd152dd845fc28f50

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ede2ebc8a28fabfdd3339e0710fd23514de27ee43d84cd06ad04cbe20552f03c
MD5 b40ff73300df2ef9dcd319663039b74c
BLAKE2b-256 ec2b40fbec399983ff25715d176d206389567e94e88a8fd5744ee7da257d0ed1

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8664ddd76933a3e6b88c6d993c7177f30d4e78949ff3b430ec2b9e06e75a582
MD5 23b4de6c83c97978a4c7b66cc9bb5944
BLAKE2b-256 77e3f6a809f7db4660607120e157bf6b5417050a59ac9b446614fec32c66e3e3

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d649027ba2d36c2cf2c3c1a7af30611d34f087201bd369d5e1aed155ef1a8adf
MD5 06e8358a4d8a360e6b22071d1fc90cf4
BLAKE2b-256 4fdcb948d6c97a0ff296413e1a4341d0cca37fefd37e7b8b8dda67598a8db973

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd880c3d4c8cbb3e6b8bfc0fc9b2f197d4408eb8f5366896e9b6f80edfc65153
MD5 cdc9dd266b7d7009183d46b0c07c83df
BLAKE2b-256 4203cef8268eb7d993de47f5dfc75f7d70e51b756346cc2ada1d366d9f86931a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 227f0969d18c875cb654ca29d9da7814596c98d5b04b3c72dd2d8c5069bc794a
MD5 f521fb2409b82e6ad4415d8e9377b8d9
BLAKE2b-256 94994f440d02081de22e4773d9793ba8a7c69920401576ed3cb502b24e378608

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 391.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a91ed37a1327b02a8189094a3920e9d44c2e79fc4d0a303b996715fda58ef20
MD5 d9a254b1d19933838f8279cc6b326f03
BLAKE2b-256 3994804b3e942f65abded6e39117136c73efa2565fc024cc8c0d2049c5f5c61a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-none-win32.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 377.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a6ca4e106614138b972c35361781db09f91d70faa81aa077ca366d38282c0ea9
MD5 4577d356504f4052eea7959bef7e6cc9
BLAKE2b-256 a245c5015365c6613bb3d91a2b12a24060e057cfcff284bab57a7064a8980cd2

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 693c7d26e0f902f4565c9c60f9b09d6e43d8a04c1f54dbb7bcf84a1322a2a14a
MD5 6547f29645dc95b1032b21e2e0d3e3e1
BLAKE2b-256 6fafc895890ad486da9e61e8a6a0c6558b7aa8b6f89e5e61d16178cd61bc9fec

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04691d8e9cae22c6cf6550dd1241b798516aa53b9760bde98e3684c92f8bce5e
MD5 50e6f1616ac72c7ed412a50a745d489a
BLAKE2b-256 6ec61904c6e78a8f2d31be354f7bddb7b0f350b117dfca4f7f03cfc768aafbab

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96db231738ff4cf06185d8e2c5526736b238d2d721063dcc605f66e3dc155f2a
MD5 6eff24abe48210f6f308551c15ec92b7
BLAKE2b-256 c72019e730b2910c7e1c12d8fde63722577245a88648e836e8d1440d8fedae6b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56af3d88bbf21d06bcf20d20cab0675a8a1377a5ae19b8825044d78914f64ebf
MD5 126e3eba3dfd6be886670c407ff847b8
BLAKE2b-256 c283f7e7e7b43a26cb9e32e7a1767160a8014c1d357c0881db7b0e78079d11fa

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01c9461a65299f884c0fc3ef13c018314277359a80c85855452a2bb1e3fac801
MD5 5dfc0dc8a8dbd35ca41f689a03af53bf
BLAKE2b-256 7549624bc90363eab5b8b5cdc6143842b7f1a3dca0ba49cd2ac5b08410208238

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f264a2c6bd3e9d827524e09aba456aba1683d01be90628d8b3f9e8a5a23d895
MD5 00873a86843a9609c69823ceed187bf5
BLAKE2b-256 91190ab0f10601b59fb286f8fc5d9b9ab300656df8228a7193cc79c5ac1dffe9

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ae05e1b8155fc2ab231540b3a687111c9a5dcb55e727015ff6ffb9ef8c150f2
MD5 239c70eb76c34004eb3e13c18dfb33d7
BLAKE2b-256 d5abb52da12156d083ea6786889cc7c1b9974426122c4cf6a54ffb25d8364b5b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2ec3f0bb5de5de608567c8948ad968503c1d340506d0a285c31605823beb8df
MD5 e303eaf1b77c96b8e4da4a9974043960
BLAKE2b-256 e409902b41d2ae65f5b22b2b389c2f7431c3a454ea7ee581799939be190cce4e

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f5dafc63454cf7108d3fc01c1060dfc84342bf27fc8617e52fc44cb6e0bdf71
MD5 7de831fcc624959802b9723e0f128ffe
BLAKE2b-256 6651ad3e79002cafa5f402d5d584cc6a62b7b31a8ad3da961505abe982dbbd9a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 759eff07656f785d1a9cd8c0f708bfae462d2f662c23d9224fe86e8bc6aff991
MD5 d104ea2b8a8ef45463e30c3c75be9344
BLAKE2b-256 488e760df0263f6441a968e1e4cc87c3d0e02bc91306c7965db6cd7d59f5ff46

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 983b3a1c0aad499206c49fcfe6701c4f890dc7d8401d066e44dd97f283516c31
MD5 dd0f053b74b56e465353458039b52255
BLAKE2b-256 4ce57ab7b11ace27c721e8fcb95ea59ef3d426865f2b2be1241481388a75279a

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 391.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 dee5befe8b4973de1184b8c44da3014efa15fdb4e1629c8369fefc53e2566461
MD5 7e103566c366041c917bea8a2e744142
BLAKE2b-256 5115a864c6840f59676fd8e219569dae01102c08e0f042d114f016f50a42abff

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-none-win32.whl.

File metadata

  • Download URL: mavdac-0.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 377.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for mavdac-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 cce7a1c540d462d381c6e4d62fbfaafa88a6e629a6d46f8a9535120821d6f790
MD5 cffc12f6f7361a7b21219c90fcf366ef
BLAKE2b-256 032d9550505dba8775394827e60c3963c35b583ab0c57c24f07c4ade0715e2fe

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc9637bb533071e6c7d8d6468b35f231f2e6f448b09c89d9b92c349727afb54b
MD5 6efd855af2aa55d20a1e1afa41d202d1
BLAKE2b-256 1ff6ed9f69c3e307577f0534028a74a8cbff54920e076c65d4f35351de6fff0e

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d477d8f5d0c73b99b46d7d4420e31a7c467343451121411051ec55ff105ae76c
MD5 5590960d9c591da4d9bd19fe2cc2e900
BLAKE2b-256 38ceb7a56390c48deef81f6f83212e3ad46123b8be1b066413948286b4874266

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17b79744ebe9539bcdc95a31a97555d8ebeb9a59038b9929d91bad37294f4dc2
MD5 85fc1b0f903ab86fe1905b4afa55d5f6
BLAKE2b-256 4ab26f00e5505dabddf39f96466452b5067319fee2d0f878b98b2bd7a8cdedb6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7087335aec413d9e050ed05b622f5ad3670b137b63ffa9225379bc9fec2432aa
MD5 63b32da8e22e7dd3b7c52902191db9b1
BLAKE2b-256 f04a1615e09a5b141da99435299de15dd0eebef82ae5075d49f81090fa7852ff

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad5c01b03843df30912cd396de6dbb1fcb851876573237d9ec9e9a5f913a6e6c
MD5 85c1a45a5658201986bac231ba6609df
BLAKE2b-256 9218b5b21b8ddc3d210ffbd0c5b120076e0d563494b28206bff0fbc5da250953

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5451bedb026c7d4522253b47b0a4bd3ed2861946740641b8d9b028acf473f0d3
MD5 3cbf33cee8a6ee00de9917d3d8da31f1
BLAKE2b-256 ec68b676c57795d9ca63ca31998424f2677f1e3ada047bee7f9f5fc32872b80b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3a10fb3c575546e605417f3b5edc975c6bd3efe6884a06560035d624be3aa07
MD5 bf8e198498e0cf24b3f394283726d540
BLAKE2b-256 21aa5509e8b2e1dc7698e3d48066345b3a8f5248d80f234489093800f3eb40e6

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54a4f8c688fd545dd88f4398b8a45108ddc2f009a3d27630016044374eff232a
MD5 1a934f66040b67b967ee1519b9f3e14f
BLAKE2b-256 52f88d21d57fd9d7066ee9d055150c717654907ac646b52b907ffe24c6f0f46c

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbc2f2b6a31bef7609ea5434b40e2777eb1d2070586d27c3d75681078da368a3
MD5 8d6b84196f35be0c445bab760d149830
BLAKE2b-256 1363592df9e63c2570122b9704a7258eb0fb06dfbaf2a898eb3a76131ea4361b

See more details on using hashes here.

File details

Details for the file mavdac-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mavdac-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8fa4d87e8ca337ccbb966a062bb30fd2e16009c62a42a8cbb3a90249a2085a9
MD5 0755e90d553a6b7f77deb00079134347
BLAKE2b-256 5a16437c392abf7e9f3281f938acaa0d5f8ca60571119d3f5c60123d1242e524

See more details on using hashes here.

Supported by

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