Skip to main content

Python bindings for OpenAir airspace file parser

Project description

openair-rs-py

Note: This is a fork of https://github.com/dbrgn/openair-rs with Python bindings. See README_ORIG.md for original readme.

This directory contains Python bindings for the OpenAir airspace file parser written in Rust.

Openair Format specification

https://web.archive.org/web/20220703063934/http://www.winpilot.com/usersguide/userairspace.asp (original page no longer available, archived version linked)

see also FORMAT.txt

For future improvements (version 2.1), see: https://github.com/naviter/seeyou_file_formats/blob/main/OpenAir_File_Format_Support.md

Features

  • Fast OpenAir file parsing using Rust
  • Python-friendly API returning standard Python dictionaries
  • Support for all OpenAir format features:
    • Airspace metadata (name, class, bounds)
    • Polygon points, circles, arcs
    • Extension records (AY/AF/AG)

Installation

Prerequisites

  1. Rust toolchain: Install from rustup.rs
  2. Python 3.8+
  3. Maturin: Install with pip install maturin

Building and Installation

Setup Virtual Environment (Recommended)

# Create and activate a virtual environment
python3 -m venv .venv
# (Optional) If Python 3.13 is installed, create virtual environment with:
python3.13 -m venv .venv
source .venv/bin/activate  # On Windows: venv\Scripts\activate

# Install dependencies (inside the virtual environment)
pip install --upgrade pip
# Install the package in editable mode with all development dependencies
pip install -e ".[dev]"

Build Commands

# Development build with debug symbols (installs directly into current environment)
maturin develop --features python

# Release build for distribution (creates wheel file)
maturin build --release --features python

Use maturin develop for development - it compiles the Rust code and installs the Python module directly into your current environment. Use maturin build --release when you need to create distribution wheels.

Usage

from openair import parse_string, parse_file

# Parse from string
openair_data = """
AC D
AN EXAMPLE CTR
AL GND
AH 5000 ft
DP 46:57:13 N 008:27:52 E
DP 46:57:46 N 008:30:41 E
"""

airspaces = parse_string(openair_data)

# Parse from file
airspaces = parse_file("path/to/airspace.txt")

# Each airspace is a dictionary with structure:
for airspace in airspaces:
    print(f"Name: {airspace['name']}")
    print(f"Class: {airspace['class']}")
    print(f"Lower bound: {airspace['lowerBound']}")
    print(f"Upper bound: {airspace['upperBound']}")
    print(f"Geometry: {airspace['geom']}")

Example Output

The parser returns airspaces as Python dictionaries with this structure:

{
  "name": "EXAMPLE CTR",
  "class": "D",
  "lowerBound": {"type": "Gnd"},
  "upperBound": {"type": "FeetAmsl", "val": 5000},
  "geom": {
    "type": "Polygon",
    "segments": [
      {"type": "Point", "lat": 46.95361, "lng": 8.46444},
      {"type": "Point", "lat": 46.96277, "lng": 8.51138}
    ]
  }
}

Code Quality & Formatting

To keep the codebase clean and consistent, use the following tools. You can run them manually, or automatically before each commit using pre-commit hooks:

Pre-commit Hook Setup

  1. Install pre-commit (once per machine): pip install pre-commit

  2. Install the hooks (once per clone): pre-commit install

  3. Now, every commit will automatically run:

    flake8 python/ --extend-ignore E501,E203
    mypy python/
    isort python/
    black python/
    pydocstyle --convention=google python/
    npx cspell python/
    

You can also run all hooks manually: pre-commit run --all-files or specific hooks pre-commit run cspell --all-files

If you need to skip hooks for a commit, use git commit --no-verify.

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

openair_rs_py-0.1.3.tar.gz (26.0 kB view details)

Uploaded Source

Built Distributions

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

openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp313-cp313-win_amd64.whl (747.8 kB view details)

Uploaded CPython 3.13Windows x86-64

openair_rs_py-0.1.3-cp313-cp313-win32.whl (683.8 kB view details)

Uploaded CPython 3.13Windows x86

openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

openair_rs_py-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (855.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openair_rs_py-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (906.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openair_rs_py-0.1.3-cp312-cp312-win_amd64.whl (748.2 kB view details)

Uploaded CPython 3.12Windows x86-64

openair_rs_py-0.1.3-cp312-cp312-win32.whl (683.7 kB view details)

Uploaded CPython 3.12Windows x86

openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

openair_rs_py-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (855.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openair_rs_py-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (906.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openair_rs_py-0.1.3-cp311-cp311-win_amd64.whl (748.5 kB view details)

Uploaded CPython 3.11Windows x86-64

openair_rs_py-0.1.3-cp311-cp311-win32.whl (683.7 kB view details)

Uploaded CPython 3.11Windows x86

openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

openair_rs_py-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (857.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openair_rs_py-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (907.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openair_rs_py-0.1.3-cp310-cp310-win_amd64.whl (748.5 kB view details)

Uploaded CPython 3.10Windows x86-64

openair_rs_py-0.1.3-cp310-cp310-win32.whl (683.8 kB view details)

Uploaded CPython 3.10Windows x86

openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

openair_rs_py-0.1.3-cp39-cp39-win_amd64.whl (748.5 kB view details)

Uploaded CPython 3.9Windows x86-64

openair_rs_py-0.1.3-cp39-cp39-win32.whl (683.8 kB view details)

Uploaded CPython 3.9Windows x86

openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file openair_rs_py-0.1.3.tar.gz.

File metadata

  • Download URL: openair_rs_py-0.1.3.tar.gz
  • Upload date:
  • Size: 26.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.1

File hashes

Hashes for openair_rs_py-0.1.3.tar.gz
Algorithm Hash digest
SHA256 d04a46f21ee6d9b63d72694e244c012be0c7edb1ab02e820bde5581da45995aa
MD5 ee7d3795427e0faaff6de5826d993974
BLAKE2b-256 02ebcb9558ed8e6c868cc0d862c6e7baa2abbf46ed1c0aba093f170328ee77d1

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59faadf373820934a79ccc85d9d36e4a375dfdf82c7953b7f30d003ef388aa0a
MD5 abe583dc933dfba6c665cb75497ad263
BLAKE2b-256 4ffe8dcce31c5a14c6720776dd399149c2748b2c32fb09e3cd03ff1eb77a3fad

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39102596e81697dee642c3a3379e21843768190cfa5c65e763c17fa1be6e49a8
MD5 2713929ec6d6150c939a0367eeebdbd8
BLAKE2b-256 ba53117760d88a3a5a1e9cf1ab07bd4fc88e7a63285cb52a23b408677daecfdb

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dad82bf620ec46841e821b99f4e990b8d5f8a8bd7dce0b9eb457582ecb50b894
MD5 a1d7be9f7cbf2657c0c667230fa76cfc
BLAKE2b-256 73d00df18d54722b8371c3289edb83b7b3f9f8a8a8f364f59b73ef72e3ba0b44

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f131cf3cc6f3e3f71d9b81f5f502c98c0517012b1b079106a8adfb94661d3f8
MD5 b8a2ffc25654cae14b01f5a8bacc8e4b
BLAKE2b-256 ad6754e18371cb073165b6857c6e02c7053ab7a625c7168fb0f4208022cba69e

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd77e3d60d2db40111bc733dae3c197747653e93e3935d14f2bedba3280fc045
MD5 39ad545eda1a2d8e67d21720b6111131
BLAKE2b-256 be93a54b4a4b0824585076a9f63c6c93ab8cacd3752485ea798311cc30d8da7f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 311a5cb3cd15035dc000baa771d5fe6c0a9d06a250dd7656596b9f42796fb033
MD5 0774b9c77439d1503dc5d561e2c17b97
BLAKE2b-256 9fd04053fc94b1447a33e34fe9884cfcedc501a80c158636f2592497993601b9

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbccc759b24c6a10bf4edef94d181d17a8932e70b64574b7961599cdace8fd05
MD5 e3ed0f5fbd44da4b47e549ffe8252364
BLAKE2b-256 ae46c47a9ee419fe39d392fa70c9ae8c39039ed53406215c17d4b43a8ed5df90

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2044e918ec392229ddce78e6dac36d1b5bb7908c80fbd248c8113b4a02672b40
MD5 e3ac63ddfa562d8518114d806b585740
BLAKE2b-256 e9ab72e41419a39079e5481a6cc97a258432cce7aeb53d0dec1cabbfedc0d754

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d9cd995b766eb3149b52c72f53a5437cb0f1b3ca14c4cc7f32f788f1dcdcc64
MD5 09245714e9b5ede73d43aeb6d698446c
BLAKE2b-256 826e81ef1ca96a840abb8db60b8199dfc384ac26675e66020b9ce07ae31bab03

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97a83f41f08a322b55496eadf697e464bbb5dee06dffacc23a99c31dafe20991
MD5 d190f1f24ccc09b47ef13b852a9f8d63
BLAKE2b-256 174629eeb938ffe9c777f58bbfc8049a8b2dc5667f5da7efe0323e0385155113

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 914d2e58e0125fde484a4d53350bf1e4b77828b3268449844656acc5d6f0145b
MD5 9a572e62714da4d09946afe8964c65d0
BLAKE2b-256 78a3345efe17cf1af10e64ce23ff376de52666a41e6792908c4c6704a01b208d

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2776495f10c2dbcce0dd6a8957693190190c9b0b9fdbe610f8e0f82e69267b7
MD5 4ffca0aa95c5b285ce54b7fa18fe2fd6
BLAKE2b-256 7f11e753edf3041bdfcefab21485cd00126469d2f09c3116c168915bfee841fa

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78ebd65ca7e376f55593a5ee97115562ce0b785da74289ffc20ca821c461d398
MD5 610b30bb813383fa0fb56e40340c59b7
BLAKE2b-256 38fe0b1ae8127c874f922be15e1d3002ad46bf755e78e0b0ef07c6a70b4cff1d

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc969d7a5c427a2040b209d3a22fc62cc26c84485f1785dcf1a86b5516f598f2
MD5 12b553d71c9f40a1a8d52db4b12411b3
BLAKE2b-256 068909522e3a87377ae5a694fb32a46b7b607039e287e271642a25ddc24c3add

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40d44ff2f0927c27260018e1d801fdbedae1d4805d598008ca35aef0ec3efcfc
MD5 210d52db4e9540e779fa516f0babde1d
BLAKE2b-256 25ac8533077172ca1b073def516d6e08a2a2d24a653036c3dd8dfd3e1bc788dc

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2084886ba4ab38721bc286c23d44b3020d22774bc45d1b5d8855f4d944d5f59
MD5 228998365aa3d00f0891591c347abc0a
BLAKE2b-256 b767c503802badd1f7507d4bac51273ebb0e152f53813a0b8cfd512d716aad46

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc607714f7b0cf4295792efc1ec2d3701661895fe3b3c1c4528b9de29b1a2212
MD5 b5a2c58a937a31722a03437d97dd3f9d
BLAKE2b-256 fa80df26a49aaa49809475dacf01d69bd9f2a7e7a779e8cc0f4c424a2a607920

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9f3330e3c5cdbf41344ccfb605d950435f829feb770a70a3913f08af568f143c
MD5 a65fe4040f329f3f7066acb6f8a85096
BLAKE2b-256 ede7fd43638bfb4aae7c996fe2ddbb8a406d76e802d5a0a785311214ad2d2db5

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66d328282973f4f26ce3c24805a22ba30665495f64204c49e0056e32990ebd52
MD5 8e0f0fa6791cc08d0299b84658f9da57
BLAKE2b-256 de87e4813c00d2dee0e91a8b08dd73d372734de6f37e14b10928c6cda765d2dd

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e77252d54db23f4e53a8dbf9eae4dccb506a07184d36124f6b8a0dc69cbb680e
MD5 78e817c1dcd2f46af9c5508b1f66d530
BLAKE2b-256 edb6cdcc2dc8be842b78eec0212cda57354c32ff2c3459427fe99a31adba6b5a

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 102ce469afe6451e937cfcba34904e49618b5b9d18b1890cd8d65857344a5645
MD5 1647f9502d12b1268ebce9b13dbd780d
BLAKE2b-256 9c29d02c62c9bdea5ecf4f1fe5c75de6d85f7531e26595b61f6913eddf2a5de6

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cea97962d70761766dce1b4acf2f90e01549979057cb92e37e3cc8f6f6abc49c
MD5 f08620d9c8a3db546f22900f4ee17faa
BLAKE2b-256 c4d295e40d14061c059906403acd5af98b86a1b3312307b93b01195363e01649

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5a087098fed17c95c758ac07b622ea9db5864cc0e6a36e259699415ea6bf7db
MD5 c40537421a51b4bdfa32fe3227d822af
BLAKE2b-256 6550b833c0114026307ab864cafea74b9bd328798dfad93755e561df3af08a80

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e63e1e6028c251874604f30ce9127b07c4463ee75ec986f5263f408589c4fd9
MD5 eaf46cbe9c5ea6a66f0c2cc5de401a31
BLAKE2b-256 14bc27aad5fe5d93f92fabba5f7c5f358e6d6101e8255be1fc0c60d96ea7de1e

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cacc8b4fc68fc7a93c663c293a06126ba4ac6d79e94fdac6cac2e371837c4bd2
MD5 12719df619eeca716be010677fed36da
BLAKE2b-256 d0053ccb275fbbad58bc1508662451f34f359466ccf06f1d97a46d491761ac0a

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1579f48d3af59ae7b62e9ef7f9aeda2426a6271648bd915b7cffceb7b533c7ad
MD5 05050d424c155eb5bd9beb897142315e
BLAKE2b-256 15ff1cd416d869552b7a372613e35496d91b6f92a0e7aca0917e30e879e97aad

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2622035d1ad39397bbe9f5e514b2b95d565b6d78d4b5ba1dff73077f04e9535
MD5 1915d23a6b8479a8933121d4f7c051cd
BLAKE2b-256 ce35841f4642053e0b5b8b21926f73efbacaedc63c0300ed1619e3325ca9a09c

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8f905f767d605e7ad0abcea5ee21c4bff22dc18184b7824ae335ec16b61a97a
MD5 2e0108a0f9f817c3f94f22697178beb9
BLAKE2b-256 cc7be0827e5e9a69a3f51b3064af69953ce14ff9f2df73d01fcec23191b5b130

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54fd170830a510409ff5902d4b03739111da8f16821636e77a2129d16f7e620d
MD5 23df732ab69a7aac2066dafb301713a0
BLAKE2b-256 d0ee63b8e89aa541415c30660339fc543f63d0e0d06a066e049d9988f4183a2f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a076a3acd9dbbe229071a6539bf9a16d4d3fbdcfbc24ba99e6dc8dd0c1407c9d
MD5 7ffe8a588df295b5ba983202c228b501
BLAKE2b-256 c05c54163d57e8c3bc906891b8b5d7d82619fab19e7f775ca6e374ebcf70e99c

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c4f67ddedeb521949437b3318e569603cd3bc1592cc1231745c2ebf03e9b25a
MD5 9dc52503b4665989801ff15405823874
BLAKE2b-256 dcfb329ad3416763058b46fc6bc14150d4dee3de4db980fb4eeade183587ad70

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dc65c6e6dcbab2cef0c3ccc185ad74b0e5e112b7998c0fdb21303e62df6a8fc9
MD5 8efc612e87ae041bde3005999d70d7c9
BLAKE2b-256 955b746340c2c7332523b6c8206d97804b2db1dbb7dbb38c6fded209851242c2

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97e189f1f0f2346b1549e1d9bbca8afcd39d9e689ba51262b7bfd15c0d739998
MD5 a87effc52815f9acb434dde8557c3726
BLAKE2b-256 3b948dcc525b8cca2ff2dafce4e74657165b73624581ef828b9d1765ef7be2f0

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ca1a1de31460d0e2c91d1182a49038402f4961167ba6df5f78ecfbd196f19e9
MD5 5c426528da59ac6d5ce56cefcc946b39
BLAKE2b-256 9eebb8a983fe19e8a56f977d6e78de5445a1904b3f670e8aa5245b1eb15bceaf

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8357ff8dfe1ba47951da981e18362d7ee4d66baf4516bb839b1526119510f30
MD5 a1a784b16e3aa39dd76a3b6c0578cd25
BLAKE2b-256 633846df65fde1baebded945f1004a203fc66f4a51f16b87b5e32d2ea1ec6ec1

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59384328292569d5c2446ebf5be83e1aa69141e24f085842a7b77563254617fe
MD5 deb4fc92649a75f901ef3b7b9f4fd2c4
BLAKE2b-256 facc20c4c717a43c88ce20d1044dc90885868c4f0e4bef6673668f4a1bb5e7ee

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efb3cda3d32970208625a1d63de2035de031ca1f14638c81898af86a4810949a
MD5 b8ec607340ab01c92c2ac6e446b4c6fc
BLAKE2b-256 a31735eb7bf339256533d664ece9a8c15b82dacb284d57a2c8d64a7e0a29c246

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d6bb8b386863dc16230735c26ab2c0cf03e883b91fa101ebf938b8cd2af8b8a
MD5 ad632424b78a215680dba5112b8b6d84
BLAKE2b-256 083fdfaa567897ef4e95d5052ca248077df12c135027c4cdd5a35034521f4101

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 beeaa4d7cf20dcbfc2e7a500af4e33aebdb9b40b916e467c98274beef91247f1
MD5 bf711a91fc9752c57e5dc34f4c34d512
BLAKE2b-256 f8306aab441a2456a556a7d8c5ebbae12eae1b848b07974a6fdc5bf38278da9c

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2f4d22d3d8230ba7bf671c3d7651cfd941baed49a90e43dbda54fa57790c53b
MD5 ce31525cd481647eb2a43b76e1ea0e2b
BLAKE2b-256 a30e62ac52f35e0933513188d3d479b2dc3c8081cee5effa031a8a518cf1c38a

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 460bfeac27feed9362919cfb397335b9801eead01e1fef69e4f9dcd31cc05b1f
MD5 35dba178f1cd8de4601c2cc07097fb42
BLAKE2b-256 7424589e791753016e2d201f115d20b2c7c1d6b03ab24ba54d9134b30b295c85

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 10b2cabe2c36023d4c817d544aa6048ab25e7d1c05643fb0f8d835bd1b6ab2f4
MD5 c532c03f97567fba56e0efc7460be974
BLAKE2b-256 b4deef13dd1e80c4e2a6701a7b8e5d8e949bb8aca621d87d3ea8add754e254c1

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 426d30b54320c3fc8336ac7418b12d198a27cecab902867c4673a76bf8df4bf6
MD5 bb4ebcee650a4a32941ca5b5d2694c1f
BLAKE2b-256 92a654f974ed245f210f13fe3b2bfa0d0d262d9426bce62e97c529aed818b5d4

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27509ac5bfbd604ac7971a40e4f98e4b5d9716f8ce5d6e6b29aa71501142bea5
MD5 dacc054cb085fe1f163fec5dcf012106
BLAKE2b-256 e39552cc597c89aa79325a0c0bfd3c465f45276f5cb5d15eb7455bc941534cc2

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4110a4c0212c4331a0d6571323377a4507300eaefedacdecfc6e5658e763f56
MD5 88ebf9ac6b9f33435bf1eb0a76aa4340
BLAKE2b-256 e2859d12c3a58d201649b739bd995a64629a16d120db614c0791d896a590710b

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bbd3dadf58359a92a3ee7db21a399f71b5c651739f82538ffae47fd6a40cdb18
MD5 fe7001fa23964e52d45968a55414f336
BLAKE2b-256 694e64c50bc37318bd5b3d5da2c60562dfbce651597b2ac867969ee186d3445b

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 423e51668ada80f0b948fc3a08f2d74823e0291973c99c46d16a501d162b73ce
MD5 d62163c4a6a4c897e2b807561af67756
BLAKE2b-256 f4f2992cf6264de9e8a05b12e0c11ccd9bc717988cc7293181b7453a3adbbe6d

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e294f9990bbac6c0e8f68768506c7e7204f7ce944ccd7846f1801681682d4201
MD5 44593ece2f64bd9950fc20d3d6dff5f3
BLAKE2b-256 c120dfbbe6a7a6362afaa65b6594ee2168e49ec67f7c88d86a51a5337ebc949d

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f623eb0f1af3da2109525495a7266c74b47c198eb539d39bc51754cfbe6d9f1
MD5 4416f7daebc8c841a6b39c21d858a2dd
BLAKE2b-256 49f25bdd20ff795f55f906d71c9b06a6ed7bd39f31d6cf071ce3786f0fd1193e

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c93ef3faffaf8c5e95ac7d5deb7081627e88b791a281ad71b164195919aaf7d
MD5 e0ad17b567821a4305f674d92e1f5ecb
BLAKE2b-256 76829e07f067f3a6b308be1d7c1bfed49bcabde7b6c19d03930aa099c9751020

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92b7df7f19207067abd4a1b2f69baabd7ad169d96bee159f09fd757967207904
MD5 05a36d1244c7380eb90c6f34b57ee24b
BLAKE2b-256 18ea463f37060699dde44dc1e05c439c657cc7d9df9179087af8d0a7774693bd

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c17956e3f26545f2ceed1444ce5f419c4fda45a19a7e8a342d2a6a2e660adfe
MD5 a671d65eb5fc93fcaa35ed2143b76bb0
BLAKE2b-256 cc55ed95c148e85701ca674d1fdc1a6e5c0331dbda33b7d996382a506cd24e7f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14aa8a8aecf42f113535dcd8e4d66bb042991c1cf48ee71a2f4c82396326f0d5
MD5 efe7c7f3c8a68bd7562d9276e5f8c8fa
BLAKE2b-256 c076f8d0e984ca0bb3cbfb31c157fbeba413e814996248d1173e0ead15bdffff

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60f248e72c1e606d84e2d02e6df2b2f1d8eb87c7908563fcb964abe87b66bf13
MD5 f34a6abf32e0b56e2e62fed35d0099be
BLAKE2b-256 b05ceed6e825623a923359f53d59130d18badaf5984fc704a6b14534f2478447

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d41f325afb76c1f2daf5522ea5f5b68a6741692c79ed2df3593500787a582b3
MD5 7cc9d7918bb3ff586791da181428fae8
BLAKE2b-256 243dd13fd8252fb5831b8dc084e1dc2d9f07a4a4f84acc17e63a42850d7cf743

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d856ba6116b0ce8b7f7543447d2a76de64eecbc418346b7719de2b473431095e
MD5 5741225bfa374db4236818689df88389
BLAKE2b-256 ea7803f500e026367a9b5eb3d9b4d5d863c4f42c966d2855207a6c8b811045ce

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0bdba37b7ed745afd4a4ff15f37b550834de9b6e2513e02a345e26a8436a78c
MD5 e494bb646ce1f60fa135d30e6eb5878a
BLAKE2b-256 bde8238bf2f4e77afc8fea5e8600362816d1ff2559eaba6d0fe0c0ab14e65ae0

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d47c08a0ffdc957142c5570416fa8274c1165e3293b4467f5f7ef7c28e44866a
MD5 f094e21046081fe532122070b3f58dd0
BLAKE2b-256 4eec82402a930ca667006a8ad095ef3826b203577b706a6219243a7a04d3e03a

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd16f5d29c6dab9e486b44971b737d6b2cb2ce539b47994beaa62541a6b4ffef
MD5 49d4f3b21f4f131a2c823b737b5dc57e
BLAKE2b-256 b09760636cc4cd58e03ce75ed7cb33f6c19831858ebaf7baeb029786c831e339

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a6523054df17d390f56f36d8d2cb0c29b9109be93fd2af77fda794d201ff1f47
MD5 69bc10be6917507cba0edd439854f55d
BLAKE2b-256 8af280b6ada839cc03a0379eb9a82cbf81a712e4d60282b16a5ea7a259e4fc1f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f754bd45c05d568df0a91765d0459a9f6b2f5733516a0d7ab4667e21fc8c388
MD5 e479ad6d77008031b1e3f5b5172f0086
BLAKE2b-256 56e2852ab3479ccb57d9a94252007d1e35d09f8d44094968a2e406e802ccab03

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78da08e774a6b8ce123f16bcc463da42139105cc9da2ce8e65c7eb758171b0da
MD5 2682929ddfea917c501f1c04f80c3b5c
BLAKE2b-256 4a384042d769487c4a39eb6df1632d4c385703161811545139660dec5914b0c4

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e1c5fdf93e2f27c9ec97fcca10de3cb7a6227bbb32fe3f5a7f8ff9469091dc39
MD5 2040bd8311044138bde7bff8be47468c
BLAKE2b-256 09521c9490ec4ee90f012b6d4bb95f763c6be7fde3dddf7a73a067c5e410c987

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86419770d3d27ae39fe566654e1832540dca7f100820b30ef67b982fc7ad861f
MD5 c9e314c7763f6e08c8add862d6543c30
BLAKE2b-256 a1b75150c6c5ae8817d18e4688fc73b965e0d8a76016c179ee6694d8711ee16f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d67ee230834d0c8c91c13ba93a01b78e7fbbfacc28126f72033aac3ae438e24
MD5 7c17d350b4b51df1e87d76509b5710b1
BLAKE2b-256 31f2d72ec21bc66d58ee275eb4582c2707c1eb29aba7b1994de4a5e98c1927ee

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 186924b50704df47210eb89787f7cf1693b39031aa5d05eb283e21014447472c
MD5 06fcb66997f568ccd1bc267f6a7698a0
BLAKE2b-256 eec77ac9174c1cc30d3fe461808ab9653b78e811da891a63f8506b5ecbc7c76e

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 528508fedafaad00360e63c791bc6760935ef71d00cfcc364950e676da973486
MD5 b28b999a60a735c40dc299a3a20f65d9
BLAKE2b-256 a41101aa87c7e12a4bdb9f3a3121c427fa00ed1fd7b8820f8728a32a5b9dd64e

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a51ed4725e02e524f9494cef9c20e31fc2668d9e191c715bb3f757bef4a50d7c
MD5 23d34cf4741ab5fe3293e1bb4b1ceb93
BLAKE2b-256 5901d443a8527fa697c049af7045423f839a342921b7b50df7aeb9ed011ba176

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a577522538a9d30b4e27204992d6d7d9d9705bb384247d2fdadd327904a6c8b
MD5 a47a33a9c09739029b0f62fd00144c03
BLAKE2b-256 a3d0441415c769bb57f2ab89fba4c924ed9e8854d7f6dc6432f3a4274300cdec

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f9f3776a6533f092ca156bf3a2fde92037921f4e1332e3fdbbef1289e440d34
MD5 10e8c775150ffa6e1e95243bf11a7344
BLAKE2b-256 0fd9e8357eb35de15a4f6476d251a970a2b695aaa9028cc149303a1665687d18

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 353ff0c77ef0bb03e7381a701549a24c92e52fdf242e5451bfb33a8293adc890
MD5 0c25cd966f9bf0bd9e0d56173546058d
BLAKE2b-256 836dc527740b12dd0f3eeb6c2d2113e67ad1c2da02c797d7d8a7cd7b19c199bf

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aa60c61b8ffe33bda04542e1f0a60582987056b9d491ea851fed099decb7b8a8
MD5 488a7d74dd187bda9bcea083e5b3f79e
BLAKE2b-256 ece67aba4133a521b0e9fad8a1c435d74ed4d1a3b20010cbf14638bb2fd2080b

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82f40c4bffd2362ab60381f9107123be13fe7c44b92aa711a6522a3d565da763
MD5 ac48da20d3b14be885feed811cd76ec8
BLAKE2b-256 87756824f552fe52d1d6422dfac560b815a7d50056b1f4b23f1877dc41a02ffc

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdc916f47c917eab8f1a5da0f728bb09c31822303e53cc3f3b5a902752aa16a3
MD5 b563df38b4b23c838c1cb476b6b2cc78
BLAKE2b-256 5c85a61163a4ffa88222f2bfe56f4c885a6dbd364b066b3cd55d559ec2acf6a8

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64c3a9abee7e0b2db59985dde759816ac460dcd17a63ae470429ba1c3f94de90
MD5 ba4d40ff6a2d1443cf7ec4ea68db7a6c
BLAKE2b-256 fb345c46638b290bc7c5655598b729049a21bfc381ed6906b8b6830dfd1e1c36

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 371b0183b9a08a68625fd584bd8c0cf235c08389cead031a84bf8d0dc97fb9f1
MD5 531b2689238def3d8616be4f4c98cbd3
BLAKE2b-256 7fd5bd0bb617a3941acd9e32f48290dbe47d353ff982eee73b576681355ba7be

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53c1cd06b2a48af6decc59051cbd5d7d96f1b0f9f323d183ff89d5ce58321864
MD5 2e1fd5ab8437e7bd43092ecc6ae76725
BLAKE2b-256 98b40ca43af1647ab664e6e4e13e08e542ead8733551abddc005bbcdcc159c53

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d5199e311cf62dddae3d4d77afda4b2a0741618109b6c6b2293c6189359c845
MD5 71d4038e2e9ca3b3eb813fc52671db6d
BLAKE2b-256 7600b1697fd9d329d26c430fa7c12fc113a75f9a78a9ebce84ddd7aca5635b55

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f0b16c328d451b5be6ee890ac6e54aca15f3b165b1a4ce2d3ec7b97bb45a31f
MD5 9a706e7c447ce4420b3fb904ed6267d1
BLAKE2b-256 269b323bbf345d4a980fc76a0c3cc0eb34c80d0d240d8d33876bb48a570bf97f

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd3a1541fa1c52ce8f333a652c82e69ef813e6b33a0925bc51eca354106c870f
MD5 21d3bec1d2c4f8e37bfd88d60b591e91
BLAKE2b-256 594f22411f80efa095d30b4db500b8adc567c94109a5ca8e86f4bcae10456cf8

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27445bd34cea13df67903db3f2fbbf5fc56759454b3b795752060eae314ad8db
MD5 cdd820a37827db114180cf2519d2f33c
BLAKE2b-256 85a5059dbc7115e0908ea39b670ab13d72d011d37fb7519ef7f0b1c749d05fe4

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44768f20a0e24620c364fc34975fc35d854623eae2ef382da4608ea0c1a4bb54
MD5 eb59c9ac0dcaaea39768b1216466fa67
BLAKE2b-256 97ece839017c676772e691721f2561555cdf0b41a05b2ea1fc13a37af34e9477

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c1a3846ce620a8756888f2eb979e505bda8c3bee61759d0a78e728b527d83e7
MD5 a055cb572841ff3d444342d8287dbe9f
BLAKE2b-256 d50c610889cef55cfc350040b1ff5d33bacb87cd78bcdf223dd04f9705507a06

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a186a40367ef5b7d042242fab7715ff45962b69ae14eaf842971aafde9539910
MD5 aa79b1cf25ac14090ec546f74728b28f
BLAKE2b-256 f5817fe85ad4c75239b10ea7c1983dcdb982152428419b8514378dbab05a5eb8

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46a50608c39cc291c54614e30d25cf975d6e138b682ae750773379687fb6c753
MD5 d8755cf5f77e7ac435099a176670cacf
BLAKE2b-256 5d0be08d697d36178c93c0bb7c754379d3361c26466601d9a35c9d5d02e2ead8

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3420e1c8231fabe98986dc869dbafdc459e1ff007a240e31e26dec626c587ce9
MD5 a35af6ea9ef30fa763216ee64ae4b682
BLAKE2b-256 8775bca55dea981e1fe7cc2d1727c191da2e97a24f577efa49fdf5148cdbb077

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cbbf9c3f797eb493e92fdd2c37715989dbb37c498aa9f916bab79db3378fd05
MD5 279fa0702d618313fb0d39e7955cd917
BLAKE2b-256 c1bcd26aa79eafaf71051aa6de95203bec5db4237812a260090b861234ae996d

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58d8ec73c6dac0cc6ec0bcaaf9c90d1465d3b8b319f7496bbc2defa73ac3e88d
MD5 0cf1c659f3aee230316e609340679ba0
BLAKE2b-256 c3f4a5edcb1d315446b83b4cbc1e9bd4bef18f552f0e0d1ca917d8204ddba033

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14170a00f3fb3e9b5b493cd254168842723e4c9b9bec7b2616702b54dc442d0c
MD5 c8b358e84a254a6b65b1bce0cfd9ac85
BLAKE2b-256 118773edec4e1e75e928d3c9a677506f2af8382ee085b5f9984cf0ab98d3ab66

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb82406152736f6f1f69a4dc5b4d451f5b56162da78e7b69070aaa50bf0377a7
MD5 b121d586d61169b31996ccf4d37a7bfe
BLAKE2b-256 618aa8516be92e398043affab8a1bfa289258c76b81ed50c86dee0f628c4dff9

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 037767933edb117987f52e9af8de4fd86ed9f09526e79285b723066cfbd426de
MD5 7f6dff6329a05e4d0246df0ac6eea584
BLAKE2b-256 c38dd4388f365c2b275f1a001bc517bbac073e24ec1809aa833c0e8c8b2324aa

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4467a8116e93dbdfaf366144c5106f5e918a03e29d357e5f5f007e67c26d99c
MD5 61b975dc3d9615595fff0ff397d2c9ff
BLAKE2b-256 09e0c7b6f95cdb1e15d28e31640eb02940271d4e3333610ed416c02a95765e1d

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