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.4.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.4-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.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.4-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.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.4-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.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-cp313-cp313-win_amd64.whl (748.0 kB view details)

Uploaded CPython 3.13Windows x86-64

openair_rs_py-0.1.4-cp313-cp313-win32.whl (683.9 kB view details)

Uploaded CPython 3.13Windows x86

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (855.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openair_rs_py-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (906.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openair_rs_py-0.1.4-cp312-cp312-win_amd64.whl (748.4 kB view details)

Uploaded CPython 3.12Windows x86-64

openair_rs_py-0.1.4-cp312-cp312-win32.whl (683.9 kB view details)

Uploaded CPython 3.12Windows x86

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (855.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openair_rs_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (906.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openair_rs_py-0.1.4-cp311-cp311-win_amd64.whl (748.6 kB view details)

Uploaded CPython 3.11Windows x86-64

openair_rs_py-0.1.4-cp311-cp311-win32.whl (683.8 kB view details)

Uploaded CPython 3.11Windows x86

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (857.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openair_rs_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (908.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openair_rs_py-0.1.4-cp310-cp310-win_amd64.whl (748.6 kB view details)

Uploaded CPython 3.10Windows x86-64

openair_rs_py-0.1.4-cp310-cp310-win32.whl (684.0 kB view details)

Uploaded CPython 3.10Windows x86

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4-cp39-cp39-win_amd64.whl (748.7 kB view details)

Uploaded CPython 3.9Windows x86-64

openair_rs_py-0.1.4-cp39-cp39-win32.whl (684.0 kB view details)

Uploaded CPython 3.9Windows x86

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.4-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.4.tar.gz.

File metadata

  • Download URL: openair_rs_py-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 0b7b1f69dc73762a1d3bea508f9cd4c61361b21c36a6dde998e8f226aea8cf14
MD5 60ac5d88c7f2c7f9c1f852882fa391cd
BLAKE2b-256 1894b68770baeccf4f8e6b36871ca0dfe9c5f63627ed68b4ec6e34c2914c805c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c06b96824a8f0c56ea87d83f7ab679ae4a29d319d9e1105cb033378def74b7e1
MD5 9531d5d94d5ab49e28dd4a9dd4ef3de8
BLAKE2b-256 1987794b74ac280293a6afdffddedabf90de27c91f58f9ebe09ffc1b95d6c25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67280033effb1d9729041ecc11f805947b9af9b078416f2a88318108f9c22d62
MD5 2ce96bf368a3ae9f4b0e7a7341039a48
BLAKE2b-256 f7ff2b1ae6b72541850281ecd49f0a0b36ceefd46826f13f4eb70b680788c1b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 499731b325b0079224ddfdf7b8747f15232529041c45a4fb5e827029dc60d93f
MD5 58909cefaccd4187980a04446ec30ebb
BLAKE2b-256 98646a06e13dd52b6d6f33259444ddede366d7b66bcd5f53be8e4460dd0db219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57cf40b6a230926cf2d4634c3aa021fffe660eb7c2a91ff6a9ab4f51608cc85f
MD5 f8a83c5cc86fb570131b02f5e226a80f
BLAKE2b-256 41423bc6ef133f80d83ac3e9723ea05a1b2e23d243c5d2e7d23fe08c1d00131b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e45397cb75b095fc696b68f69ed657cb33bb3b3a5534bfb158c121ebccde239
MD5 c7867464505eabd02b485cd5afc8ee50
BLAKE2b-256 170c9e2a3a7dec6595ddc8c57d7f62927bfce4bf8bfc57b1d03eb993ffcdf7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fc17c0904a783d9bc8cd499f3bbce07f257fd9a0a7442f640f1f26da2ffc08a
MD5 8445a8fe89031318f6e41437a01bdfd1
BLAKE2b-256 635aece34a6ab3ce34b41ad95d39144250b0f12994505fea38803294c3e2dc8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f0acb6d61f4137d28ca2a484fd1f8d8d9fee7b8661af5cd8596c4f7be2d3ed9
MD5 85869adc3a3ac7724ca462ae4b9b70ba
BLAKE2b-256 11bb1ec597e0e16f203ea0064f299f488a40c285ff71301bcd1d2d4fd358341c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cde21f06768c48b1e0d753e9a5b30d7c9d4ff2816f550c91559e8845bc8a2c6
MD5 c90aa7232cab7d3f222b40012ccf237a
BLAKE2b-256 e8840dda0a0a362a9228665e53232382a13b81ba414b42765246e3fb931761bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1898a09682ffee27cd5bb4944512aa15553b9cd324939ded0884718237236d4f
MD5 e7e804b4e819c860a81b906ec9166673
BLAKE2b-256 2a51e8c8f134728621865cb41f0bf4f6c20c0cc7bec1fcb48f3e200021551485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2d69e7232b80a4fa1046b0ed10684b371edade517a0ee7e768b97a5b2d83b13
MD5 ea50f58ed3f569dbdc3d8fe40efab416
BLAKE2b-256 0ea69e984e9e38defd71b89a443380993101df5678e5ea6f3e8e8ff458034b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d61341ba7d51a8df0822007795bbdb72a81c0d1446dccbacac8e56dd81b0c3ce
MD5 8543c037efc1d06574745c884344a221
BLAKE2b-256 5cfb3cc7e6bdf8b1eedb2ab470d3de023cca4fab1626c98671f048f153d0b687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50415acc2e0eef11dbdaf62b7c5e736c4521d169898cc415ef7c702f532c3895
MD5 bcd589d82c23d243e97526d0e24f565e
BLAKE2b-256 d19c1537b52bb0c846b2d42e78811a30c6afc9659156b521f32e2be8d79a9bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da172e19a120364ce3d0ce600a4c5aa4575a785a19c4f7a49ccf3449d10c099e
MD5 9f3eac30e99d2a812e9802ef53146680
BLAKE2b-256 ef1423f4f0a1bb89d3d436de7ddebd24fbb9cde60bad667ff001687742dc79f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2dbd78d3d94be110e80dedb097e440fe5e9d2d30c07513b06f6d3760f1e547e4
MD5 f9b61662ce4edb225386f6054c1a6620
BLAKE2b-256 62949feb450b9dfb1d5bc47b789b645e07358291ca07799ecc411419eedfd25e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c09298b9ba9e0524672fc75964feafae6f96f19d6c83da37f33c3e2c72d5c9fd
MD5 ecce5a0efa0581c3d6bc863e8d0f96f5
BLAKE2b-256 bb50e5e82c3683ac5cac2fd4eeae68b3dce5c9be9681b0dc1d6f16c9965cc8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7841cd7542301ea9f716bbee3f9276791b1d6011a375f0fd17512b8234a4eba1
MD5 7563efd24ba43fcaec5f33d49176c438
BLAKE2b-256 b0724bc9bae5250e1763d0bc40678b6ac946841e778a18fe46c4642074b3ba19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c467fbe803ebf61e25d8eb3e6250bfd92dcf84a62881086d706a8a013730e732
MD5 c2109d3326e169969316fcf3b1fc7012
BLAKE2b-256 2e6f0d38870fc0c838631a9db9d56cb26b750da4be597f4a50540377f2ec14a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8460299f402b06a615e76e5549be573ded34489dc6a251db3e4f73cb6b9eb74e
MD5 24d3f8e19915cbe781fd1d86b0efe5e7
BLAKE2b-256 b83275c97ec839db00299b17353e003a46d8816e6243688815923ad706bc3adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db19d8a3eb2baa5dc712eb01336a486d4cb54ee28b4e1f4140387962ad2d4de0
MD5 e1155d1fcc4ddb7e5befa1909ae82009
BLAKE2b-256 3c5394819762090f8c91699d32cd8b20ab8abcbb2e0c3264d6062a2efbc91808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfdb9c398dc2a92d8bc310530b3fc7ce66819a908733183626a6b52a51d2a596
MD5 2e0ebe34aa50f373255d1e441eaad727
BLAKE2b-256 c54c467fb61b7890e5a015207e8fa3651fae89c8b9e1237c97698ee1300237ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 927257cb1b721858e903f35a8305ccf19dd260e2e203cc2072970516fa6a3f91
MD5 6149f01b95b56ee32fda35e197200c62
BLAKE2b-256 1622338db93e40073068ed803f9a7815c295c9bec1fb7cdb79359f602b911942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff98ead53db1af461829617f5c4871b4ed9727905236a885af9f0e295bea2188
MD5 baaf1a8d9fe80a8ee54232388c47eef1
BLAKE2b-256 62f29b2a2ef61cbe54f5cef71ce4647e3df0b24688004063c46c06bd263ca6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4652e82b3a9911bf7251acb620a259875578d21707640bc02d9f24d32a650882
MD5 8a5ae465e83f6486fa23c73d2df42cb4
BLAKE2b-256 a6803a5863179b6fe06df1f32650dcafad3c7cd79f0423774b1047b5b1d74bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce1f0c79f315269ae328ad064ac9c80d44b169d6de0eb178025265e534cb01a4
MD5 5c60e2308bb32dbdcc15373d61661817
BLAKE2b-256 d5477baf3a3b8b790ed52cd2c7d588aa9b6a06f431107136193349c563aea858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bb721d66828f47c4cd473e1b688eade85a6cc8fa7f6babd0b444a6c98ab9f33
MD5 71904202313293f65ad741be23c81435
BLAKE2b-256 bff674043879dcd11d0c5585ab1eb61f9d8ec4adcf96fcf939d37f6d8b483182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10396621b3eb906fa4b574428f37f07df017eabbea59d818519b20106b030326
MD5 40a746c992c150392d38cef4f8679d10
BLAKE2b-256 d675b422c158814ffac7a0ce1722bc71cc144f2d11784c40ddc2a306f0b3982f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6061c186d36b9b24e38ce510cbd7c85476c87d0c815040bb154097cb57c0e1a
MD5 9aa2194453b3a1adef33888dbf3e2412
BLAKE2b-256 54fddf063c70e5fa64f53226ccee8b84b06787ca66c714b36d9b15fe146069e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc9491bdffc751b71e9e137bcd78182bb0417c96a7858b7833cb4a713618cf67
MD5 b5ff378af369f8777b0d783724baac54
BLAKE2b-256 3d595b01e4041b0da0c5308f88953ea825a264683770a14eb2c2ab84f22ac0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91e80a64f8f4458311c83cab73e2289574e59420290c01bbdb33661914af1a2
MD5 383fe7cfe80de5794e17d2f18aec0132
BLAKE2b-256 e6973b4d961ca923068a70fa544ad6c6188b2f7cf40a3f69f428cee3bb0cf65c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f84f7157a5f36c55f85463c9edfc18ccf1bf24efcd63dd081a4e097db2f28457
MD5 d0a2cb6e4306b32a4434d3a33107c06e
BLAKE2b-256 3ce025f7c02dbb2f7911f765607d322a666f6228d07365c39e2140c1b4dc223c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 efc889cc52097fb9634c038b9f14bae4e5b8a539715e796f1139a9b0b0493516
MD5 d0aba7c69c18bd079a898a531f4ae61d
BLAKE2b-256 88faea3f6a65c8c66b3cbd8e6b813aa2db36d258432b290d4fc2f6456f2f0a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ca6f80ceaebdc79af3f172367e8e3549167bcc641e0a3a2ccd16d5569ab8f2f
MD5 0024742ceea7705358e3e7a4e8c5cc75
BLAKE2b-256 c2731c00880fe667033ddb8af92813a3966e896a4009c78475c7fbd7833ab53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2883d9e1f32e940071ec563f26ec72149af6715f54b3209e00668f4860af92a
MD5 a7cb7c8e9e0393457f1dbac29ae5b5e9
BLAKE2b-256 16ba098946143968e43e9d0e082c5567213118c3c933e0286ceb8656f58d4d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab77fcdcbb7217173c212e817d816b7fb6a20633595b670ecf2a409c85c8c238
MD5 6b78953b9afb06338bacfa09762ce089
BLAKE2b-256 ed078675c328b4f5e7a1995f2640f176fc47735af997b54c80fa5641251724a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9d0da9b9bbfeb977bd2b8cdc09881a49a1af9419c5536b22b8d1e7ffd02f76e
MD5 ed27c27c1575f6698a43a667da7ffcae
BLAKE2b-256 e059d9dae3216e7ae155bcd6885c20add8e1d0c67ac8ba1fa7afba2d46ae19e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd1d73c5cb10a7596608aa8ca9160c1ec0e82d0a6f28ca17bb5d32e9ab976fa5
MD5 cf96d07d7e8d2e4a583c0f0f30d832da
BLAKE2b-256 380e822f9447b0df17e06a30d131cef0b28781cd1f81a08d380a45683312c4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b723fe3648cab5d3ae87221169162d56d3ff6b09b047fe0a0d74d81bf2d47a8
MD5 af97d946ad84eba4487e6d8875582857
BLAKE2b-256 ad69d22087bbb2694359c84818346522eda26c4665a64e4df3000ce466679bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb07ec8b8b8bc994f6a6904b358c2ddf096c2c524f35c827c2cfe67a15b1be1a
MD5 6b5e8ccf3c8b99946cf0aa2d0d834522
BLAKE2b-256 5fde31b879a3ba023c87c90ea853205aec6706b6946644e6ec90d35a5b586731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f83871f8609bf7f6814bfa2bd6cf3ed76b39c15fc61c87133621b0edb128474
MD5 1d33116b518074be58a4fd7ff02c1cea
BLAKE2b-256 744d379e35100b6431c258f8aed73438af3a7896e288e62fe084d5738bbb99be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d61c90c016f34a7736a577f903f536b6eaca1e511436c00e30a8c5c83059b30b
MD5 915265509061c7102e041b8787891549
BLAKE2b-256 c28f2b5697c7f61ce81041de1f6232c60f31c62edcc412f227cc85a6f95ebac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1bc67c471bc46f901460c375ddeebf0f6f96a03e026f57f88f5f66e197f7114
MD5 6f0e449b7dcc55c02b8aa32e9b6ef4ac
BLAKE2b-256 53eb6fee830dc127595fd6df9b3a21b8db1ff11b9636cb82fe0d3dba78351c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac26ff46a9b42e0e39db758ceeb3c8ffa4169d113204587f21a0b9c1c016b5e3
MD5 14c654653a2907981c5fd1df554f762b
BLAKE2b-256 11987f654b56e82880429a578adf689e539515d6306909af1cd77ff461ccb23f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0041d9302a1bb03726d220fee94034686082766be0da9134cbc8533e6c5ea57b
MD5 d90652aaa52c8ec5df03a7e0b513290c
BLAKE2b-256 69b99701e7da9372b1c8e1584115ddea10cdc660dbd50ee7d920d9785ba0936c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2b6da716f34f070a0e724821d2c7080437f7f70bc4012ca20983067d9a10d27
MD5 90ef24380e89607d51ad4a68e82f8327
BLAKE2b-256 a7f8449f9eb436cde4265cbf1efe615175d70ed902b3f64096340872122edf86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad132ccab3b5c250c8eb9b1bae95052c6cb4ded5fb4f675616b619f28686f373
MD5 9001e2e2639d76b2f8d2b61f510d303c
BLAKE2b-256 116845d84974750aa945e8a648856cec4f4a49f13ab5bdb848123967636dce32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 43ae0a16e1608da2d589eb30212237f5b3f9e933ed3bfdce2b4c4a6351ed310a
MD5 b3f7c5cb905cc703e1b5348397755435
BLAKE2b-256 1855bb72edab7eaa5d334e73995a965bc27a5ccc77f805fdd401f162784b7de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a6438b06b2acb41bf4f7d280d847ae16e57f9850553b8a871274386164faa93
MD5 09ec31e9a06e525b5f2c309c1bdd8d83
BLAKE2b-256 a9b777be357fa5d58bf949fdbb747676638793cff069b6d8f90bcade82d44c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8e649cbedecda0a4f822b4919e0028245159a70e05bd975d4273cd1e73c458a
MD5 5ee7e1a42f26f21b19e231f5aa8c8387
BLAKE2b-256 4c2cd66fd93580427b9657819013b1dbcd14fae4ebfa9956d84efc09f5884b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12f3d56e6adba550dc803bb51cb5f96c16ffdd3bd4754ba148ad0811f2469df2
MD5 cc7ccad62c420c435593798c8db5a6d7
BLAKE2b-256 0e086e6ac31b1c3164cfad710e6bd6f0146d6a0a0d1a9793ef2ab7023fbef661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f068f2b39e5ca348d4a99f266b7b826dbd52cb17bbe0c9ada5c430bdcc63374
MD5 938388980d05cafe15201850bd352ebc
BLAKE2b-256 fae24739d876089a5c1310599c07a01472be64b7decdc056d2417dcde682a3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c681eee218b941982285bf45371df1d07c16b20107b2d4c1d972652d8ba44bd
MD5 ce613dfbfff3ee6c619a689a96f1a9d2
BLAKE2b-256 fcb63008cc3092296d47354c4386db5c9beb8abf25cbc0981fb2c358cd58820b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05265ddb2ef05e38a2ad1303c00c06bf3820bc31e52f6eb0d9e6cce531251f23
MD5 09e538f2e52ec8c6587336b8d427c336
BLAKE2b-256 8b05faa1b4d4ecfe44c50e3c3fbb953210792c88fbd9223687c70434c3281482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c26784ab531c027ae5945989deb1bfd7c58cd390b210308c21d2df34b368aff
MD5 c0bda192db5b96feec7b6aba6e6882eb
BLAKE2b-256 ff8f9f95ddb6e2d41f07cb73368f17c09d7a9e881ebb22385a9820ac4da290e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 785ad2d3cd1923e883593b4201c085673c6cbdf4c9e1febc38e55eba55f7f512
MD5 21117e7724751e9a7917a987845d191f
BLAKE2b-256 d479c3c7c115a609c98a0099b4cdff90bbcb72caccfcff8fd80ca140be603669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8d3e34c2a8dc7639c6814123e05647f3edce0d8f35f28fe3a0152bdd72074e1
MD5 9cb0a760e0f0142447918977d3c6ef61
BLAKE2b-256 34e79aa43e65acc3b593eed25ede50df84b85b87eb70590100cc9f77269b63e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ede78bf304baa1d117bafcfd2c1020161bd085417224d55ba7b5f343e2aff46a
MD5 3bf2239779687c304862db5da872bc1e
BLAKE2b-256 267f31610098d08173e9b2c907f9b26dc2a66e8a73e41b8cc10d7a3ec7df8c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecac2513dafa7a3df86e261b422293c5e379856712d78ddfcb176e7f285aac7a
MD5 aedf1550258d267b920019ee3c3f3dc8
BLAKE2b-256 982501026b2f339d42e1b8d9ec8e647c050524a231a8c442b9a1728bca648e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7732e01c38fc42d48d71dc6b2217a8668147662c884e3a1053a96de659d43088
MD5 e1e938bce3be28dcd375abf3374e8708
BLAKE2b-256 fe3c70f7b67a842dfc347cab174839597daf52b9c06d93fb91f2938d853802f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03efa9d173c5eed4c44f02e7017e9b6d97e914dd8d6672b692928c303651c054
MD5 66a271e6acfbe19334f81380886d3787
BLAKE2b-256 c1dcb42d913f9eba3fb07a3105753b6889977674fe7d816edaba4034a9b71ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bbd84886d6af48885478bdb76fdb2c560d80ccad790b94d55cab0e5c093258db
MD5 c24d5ea93378b73bf85d49f949edac70
BLAKE2b-256 f38a260cc647ff82083fc5944803c9b2b8273f6143af95dc70fc2f91c51b8cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 135f45a2cc98f2ec925ef0aca7437529e7c2742d175a9d112635c3319ab35306
MD5 9d249e344cc7fb7a4d20680ae6aa23ca
BLAKE2b-256 7205f1968ee28b25f2548f59db35c23269798152e3d5a3b70c7a5349e6248fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 028b5974306d661a0f11f47c4e4e9b5c1ff2236878217dd6d21ab941b4afa6ef
MD5 0c0ccd0fb35418d1c1ea0e2b4ea13ecb
BLAKE2b-256 a80f68a13ba8132280c6e21504a377d4d04a28fe91656610c063b74bd2f1f91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c991b4a967b3717be36a2c8de1b265d1b893a8059edb8350ef3a795749c4d06
MD5 d6cb383252dec961c851327e12a773a3
BLAKE2b-256 d423206d40b0dfaceaa99aeb8e03bd98d33c452c508cfaf91df1e8bf749128ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3afe8e505c0a58ae299b6250c81bc2f3503de0c0625787fa6dde6a549eafdea
MD5 5170ebcbe3f5db8e6ce281c22d9aa43e
BLAKE2b-256 556663c670b8eebe65731b189bec027bc2e92c54bc700527b82d898749af9667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff519d3e658fd1488c8c9eba93a62cc142f9c149976b8ab1ac6d5f9a0eac7937
MD5 a157d839d8485cb455ba83f795dc8903
BLAKE2b-256 73405b37de392f28a3ac38aa58d9a3abdf39e8ceffeb81de8f04766f569ef83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4adf876cf7927ff959e9ea98693a1b592d759a4382e453520b9272a03307a0e7
MD5 5d780be9ab897a1061dd35ffd66b1571
BLAKE2b-256 76054b325ec44a2772eba7deb84250050b55e8d8cc2b4ce0b9ecfad69276f1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 750f9d2962c037062a61a5fddd47d7e26ef81e34c0bee067615b21bfc1863131
MD5 2d3cb9e178cb3ad211cc30407bf66589
BLAKE2b-256 fd287aeab7870cf3604a9401b590b0cff09a2c10ed23a3033580ba6f84b4000f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b813089bbcf2822869138010bb53310a0274b23beedfba48a910fd15eedfadec
MD5 d9551349b7e097348677adf69480c1b5
BLAKE2b-256 530ecdda5f9f3ff08a62ca6fdd3d08be517246b8ac2f53a5541728705e958b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f213acb20d3a011e9eebbde9879f8b877b157416261cf65ae2b6c01d8f79cc1
MD5 79f4dca711065d037a54b8b6b4d240d5
BLAKE2b-256 e0b9b2d5c28ceb3cd5d0db257b25a45687cac2dd2cc26facf68e0097f16a60b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a4e87a4b3e6f2bf103a61e99e0bec45e77043a3203cd3f5f680dd417b5b320a
MD5 e355db1f8962c357ed23a8d42a36447a
BLAKE2b-256 4efc15be05f2813371c08b958510b908871198c4c72c1c572332e549b4dac475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1536ba7f7f7d768d7daf79ce3e49e8987680aa2d2f579027b685db2a7515e7af
MD5 2665886faa10e28ffcba24e877c81eff
BLAKE2b-256 52acf1031976f6ab3a468f88dd3eb078fc6e6c6bfdf7650ec8e5ad410a9b8c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d8e7a0f403914ec96d976635524a155535bbd263b5349c6365b48e0c8a46152a
MD5 00c3451813a4c83fedbebe9756795cbe
BLAKE2b-256 c5874fcf01644110520c0ca82d547450f673dc411f9081995d449f942ca8330a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b42da73366bb2c6c468dc7a094f9acab522165c0606e3bf5ed8494ae86eceed
MD5 05dc52f77393345b2be6ad8b57d0e83f
BLAKE2b-256 2da552205c8c6ca553a43d46ea1087c4839f78762a05a2e15b42b3dbd0bb985e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4580d5320b142cdd332df2e9ca929e720ef5d35bf7c6fc84488630dcbfa4385
MD5 549c8bd1b2f695b043ffbadf3ee3d1e0
BLAKE2b-256 d0afafbb482388cd93bd5d51148bb8d7e7355e685cf28bf0b39b9ae8c54b0cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41a7d55ddcf658fc22ec026bb18f27e88aa5bb0b50733d46f92863b528b5180e
MD5 b40bf099d90442faf6f4e5bdb93f8d80
BLAKE2b-256 8fe7029529db19b3db2052418db4dfccc37d10371300f799033f102a808cc0c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7e8a2a2f73da52a03138ad6be5f2db1a983677c819f427b47ee3e5b0aee976a
MD5 3379c2221d4b1193a3b05489c126e347
BLAKE2b-256 1dd5e5b98408e2495c3e51891c5db0016423a641e720ca2462f4ee23028d3da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c551c4076fe730d54e99d21581a005c3b7b91c632ebc3654274a5f62fa50450
MD5 2eb4f4ede4ae6920aa193cd7ace023b5
BLAKE2b-256 de06c17d6c3d3a2e9ed4722407b35205830838c20651504344e8be6b9ab087d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ad358d2ec88da3113bbe89728da725c12e72d0e85b20cabbe0bfb532c4a8274
MD5 d78484607236d39a16ee2f03b72a826b
BLAKE2b-256 073aaf07a8f904fd9a73254b309e5fdfb62a6879ca776dcdc39d30d9cf8b5d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bcb9c822b48d408278f2fd167313ebb65e96d37d85690088386362187f849b6
MD5 5feabdd53040b6b9264b14b4f1c533d3
BLAKE2b-256 de9bc71d4e10911c807fa441bf9189d68596fa2bf7c844211b2ae826fb5c656f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b95380c5a7a3ec8b19bd410b41faa749a933555afa4afa72fa236d5052bf50a5
MD5 46a0599367ae3b4e6692713bc8eedb33
BLAKE2b-256 fb50ac66444402f3120817dad0a2a4a913a4b21dc09aba489febb3e0df94cf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68dfab7bee5c93b193ffd7eec4f6aa75629acf427e491d098bbd54ee7d6e0193
MD5 ff6f7fedb5b2e335d1f88d4c94ea8bce
BLAKE2b-256 2ecb9f456fcaf67b2000cf0880c61584cff9634cb4a836e8202141772d2528fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba3b54b370f05399c43c7cdd9c18784f4a7157d482cd5c415d55fe24e0d2b7f8
MD5 41af64fea044be6ec687fd83c7906942
BLAKE2b-256 d6991d7f2020bca7e0d5278cf669561fb22dc8302587301d7824a96b3c4133f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08785d4d14a1ad9fee79b1d379e7166fc4849a08824629ccfe195546849b3f0b
MD5 54054a581905613b282c0c869c4b88ee
BLAKE2b-256 20241003193e7e39fdb3a59e42c040a24fe81e71df4781da0740376ceb4b00a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9ee21cb552b2b0a43c95d71c4e30dfc584dd11650a3f7fc20e796400c408bea
MD5 59ca323e2e04402e7208c68a4a89cb4d
BLAKE2b-256 f7ca7ad75bcccbe0f8897fbea65978571bfdc1542dad91f528fdc378a770af3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a1e7c32fc0e9afddbe58606e7580f267d5cd101a322d3347d55b850a53b08d0
MD5 ef2465933af2711b4d6da157761ecf2e
BLAKE2b-256 907d4410c557e4246ab0a8febb619336e44c99c24edd0664de52449d3a4dd1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a99b7962dcff4ec7e0e0f9e380cce5930aba29ee1acccfcede3f04133caa45a
MD5 d3dfb035897a154baa1ecbeb3650b605
BLAKE2b-256 504f1b69d3350c8b19cf4c33eca0f9cf0cfc7bd145cb67e5143ecbade67577f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 063562d5fa260e094bc53488fcfbc9cf3983dd6491dbadae1c7df229d195633c
MD5 cbe02a06ceb0436dea2a4accf05e08e0
BLAKE2b-256 42d9c26fb95e7a37bef389290c9af745217c7af86a52d58fa436d8c8d0f9053d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce10268bc1d790a6f042872907b025a95bdd314a893fdd62c741b108e2ce9b05
MD5 f39c80932612036afbbd66d7bd69ebc9
BLAKE2b-256 b75271669a453040c468d01c768fe7c87519411cfb6bef6fec3d28eb4f51030b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cee246071146957580b313bc4a15f0addf70b4b40395e806b3f39d726998ac34
MD5 0e26d565e143c4c95e64fc7962d2299d
BLAKE2b-256 b34d6b43ad8c3df11a4cada4d78abb79b49af83b7a6249eb353a8e0c45c702bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5a7d7cb612e8a1b768a76266a32872f869dcac8d0f45b29214174ca11f99c59
MD5 f67b08bcecf8f5d95091e24df3daeb43
BLAKE2b-256 1e049f51b5bc4ac5cd5d05433e46306b1572760d6f8806afbf5fa7e82d605287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdc3a49a240050f3b4e481d159933e8f7d2fa63f73462f6bbc4fc89891117478
MD5 ff8db2a2b8a0f0207bfb1348fa3ccb33
BLAKE2b-256 8fa9fe7bfa4848b78a67c4f8aca039aae0729635780f8ac44aedd98c4951dd58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d97fed79c6188e2ff0c1cedf67ea20664f3130dec2144178d2e6513707f731d7
MD5 8db325006c4d0713c894949cb90da5be
BLAKE2b-256 e3f8cb1261803dd71e307e0e9d1ef346f9fa295c5e6030f2633d97c0941f10ae

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