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.2.tar.gz (22.3 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-cp313-cp313-win_amd64.whl (745.6 kB view details)

Uploaded CPython 3.13Windows x86-64

openair_rs_py-0.1.2-cp313-cp313-win32.whl (681.2 kB view details)

Uploaded CPython 3.13Windows x86

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (999.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

openair_rs_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (854.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openair_rs_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (904.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openair_rs_py-0.1.2-cp312-cp312-win_amd64.whl (745.8 kB view details)

Uploaded CPython 3.12Windows x86-64

openair_rs_py-0.1.2-cp312-cp312-win32.whl (681.1 kB view details)

Uploaded CPython 3.12Windows x86

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (926.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (968.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (999.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

openair_rs_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (854.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openair_rs_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (904.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openair_rs_py-0.1.2-cp311-cp311-win_amd64.whl (746.1 kB view details)

Uploaded CPython 3.11Windows x86-64

openair_rs_py-0.1.2-cp311-cp311-win32.whl (681.2 kB view details)

Uploaded CPython 3.11Windows x86

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (856.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openair_rs_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (906.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openair_rs_py-0.1.2-cp310-cp310-win_amd64.whl (746.2 kB view details)

Uploaded CPython 3.10Windows x86-64

openair_rs_py-0.1.2-cp310-cp310-win32.whl (681.4 kB view details)

Uploaded CPython 3.10Windows x86

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-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.2-cp39-cp39-win_amd64.whl (746.2 kB view details)

Uploaded CPython 3.9Windows x86-64

openair_rs_py-0.1.2-cp39-cp39-win32.whl (681.4 kB view details)

Uploaded CPython 3.9Windows x86

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (927.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for openair_rs_py-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4b301183f16857b60a54b4715771015e0f2f4ee4ef935ffabc2c7ea52f03ee61
MD5 b9942ad842275f5b7017fd4e513070c6
BLAKE2b-256 3f1bf127d3f8363fc42ced54108542bd2d0569f6519bb386d4404a42d7e34f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fd6f6c608379db0b5be98655f2750e2439871b254a0b4551197a51916af12da
MD5 23eedd98dbce766a6a379a7bc37510d8
BLAKE2b-256 75edf068ce82713eb52d57e6691a03f4a08018f05b5205a418e312e75b6ed48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09c22dfc5b63d89e35683232ead7e5ff41513bba5e30ee0ee011bc947bbf6b14
MD5 9ffa05409ee301b3593d1ff3e3f9118a
BLAKE2b-256 0940849262d6e31565109e3d1728a28aa0f4696cf10010f8fda7839b550ac703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd3960bbd506f538d15a3cfc82b0e35368330df95f68daaf8c1f6243cda2ba3b
MD5 817529196ffce8621475978426fa3ccd
BLAKE2b-256 21c2526bbd5014f8d40c619208030fb0d478cf735cee3514a654a686a47238a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15c40d51ed51e2ed2b82388adcbdc057d1b76ddef34ce1f5cb49229c17f24710
MD5 2628942d240ea75f5e42593b81e24461
BLAKE2b-256 51a31f92bbd2f85901b67a9ae834cf4540e9fe8fe103202e3bdc29b503ba02d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec37cae8b08a0a2f834b147f9a79277bb3a379a7e2907410c188ae83a12bbad
MD5 6522d5b4c008acb3d7ae17b247c14a1c
BLAKE2b-256 abcc5714fa203a977308678a5879c5cca0d463931b7b08b42b26e6fec797f1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62ba2a399efe75f1af97c8357cf00f7991665254e448cb40613a3fad39ab0463
MD5 0269e699e990ca9d5a2c4934424a1973
BLAKE2b-256 a121536a0618e6068f755eb9383daccd8c6f2fdd88b259856be254eeeb6379d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 091b052031cc7abbd966a1a9dad6665421fed1e6204173b46034c44b12018546
MD5 244b4cf6c141a4bf50cb59819fa192a7
BLAKE2b-256 81bcba9cf4b5b07f9e88041b72adfe4cf62f86a8dbd3cfed0e8c50cb7a1fd845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e9fd5829ab7c424498101609c7a0306a1f56ddaba45188977e860cd6c88a3f2
MD5 59f57205e2ed6b449cc0be932533aa52
BLAKE2b-256 42a145b12aebfd693396973574a4a3dde472d1b358e3c2e892689dfbae412fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2c74316c47f46cfdb906bce5486c1442a9b0a3726f96f2dd51eec130ea1d2f3
MD5 baacbd29f047c0b191df7a2a98601d62
BLAKE2b-256 4584a090dcc5eb309fbe8c492496e74e0dd761860809e17c82175496b0d72c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60367bad7230e86e9e8637beebbfe0bb21fe388a3c91d24903ccc7cd722014c6
MD5 4ef18a9f1cffbaf51cb4fea78324696f
BLAKE2b-256 35e27dfcc3948dd179aa1439900ec1ee1552b90f572c58b3660fd1e416236df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d3bc8967f25fbaffcf04df5b3c57bf448b69f06afb755545d5932d0b3a48e6f
MD5 5493e6f3e2cee7fd1f1a42e3edbfcd7b
BLAKE2b-256 019f9021046edc709a2602b34d21a40e5bf229f0bd593fa8f95a11cec4867e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e522bc54cdfcce06b215df73a034f8918a109e92cf4f9db0744ba1f70e5910c
MD5 51077d79260d51f66ea5137fe2541523
BLAKE2b-256 60fd836a015ed4158ebd1ee90024d63901a483e2ec039d060ee0274e1d2ee218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5daee276a746877a34d56497645336f430952e853cf9f4c415911592c5c9297
MD5 173109172da8d08b3bddd87386912cd5
BLAKE2b-256 4d40cc4d3da86ab5e759be9e152fa5a3a46c497ebfeaa196d7ee78b83b96f89d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcffd60d01669d3b0ad2a0446ecbc39c596dc1a4e2ff5665b35715e835ab6623
MD5 1783228909c6e2439fe18a17774ecb23
BLAKE2b-256 d4fb32d6cceae4cd15f90f7ccb26d1cb5e215c6153745e92931400996fd8bb82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41a91b65ee9a198a661166cd3a246e3505c17fbbe426343a53c097a2808f2418
MD5 c1e5972a2c22ce0cb5a5a95445c5b0f5
BLAKE2b-256 8a2356bbb9f53ae04e34c65308af950d1f76ed491ebd5beb231733a8803e177d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f434869d920e532204246394652da5963a8a4e0a18130a00a1ff7a9cd9cb33fb
MD5 9c87c4ded17db5bd4beee7432a16767c
BLAKE2b-256 8cbf33dfb46a4e0f6c8949f2a7e140d6ebd78c4f5a7daa64888b1acdfaf3912f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc7b78d2b75c6e054fef74ce9a0ae926167462d6023e076e972f240f832c6909
MD5 a4c1475e8c69c2b97514e66cf5b35fc8
BLAKE2b-256 2e75d46aa19fe577a7d286b15ffc654b2093363185adb3491cb9a844047c5628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7acd91483af5feb7fb96d58b75cde8277662e9a76b27e6160cc6820ba1def879
MD5 3be3f1337e829bd3e81936ec14be7d41
BLAKE2b-256 012d39b62e762605e03107bb6a835e9f8b6a3d2f4109f5c3c3ab44b2d7666ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a4c5ef20609e72e56b7e6917ebf3bdf23ede2b249ef08201f91c6cbc75a0ef7
MD5 09f121a73b77ab770622cd18484123b6
BLAKE2b-256 bac5339a14d8ff785f13c71828de1d24f0f45942fe470aa8d8beacfccf4c0e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e271bdcbdcf30aa4ee671993bd1bf3673b965d5047a317ce08da43efdb854c9
MD5 8073b0fa56ca4fd3d9741a4fa6eed998
BLAKE2b-256 a0cf36dd4cddba127c78e78829219ddeb73eee505361177e1a19e3577316bde2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a55344c25089bd648efc42c281187cc98796e9c000bc65ff62c3514681cdcbd
MD5 4bba576cf82a93bfd96f5aef9ac09f14
BLAKE2b-256 cc5bebecfd703c66fa033ed14130cbf66f1199d0986c06b8ff2f289aaaf6d5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81ba0c70b78eb633bf6eaae2a0d7dd7ae9b83281a37f84155538cc0319ac1207
MD5 fe1e9b75cf942b354d6c02dfed42f585
BLAKE2b-256 052225ac88c33324b3aaaeeabfec94e173e9e4fd5bf28bb8d05d438cc32bc1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74d98dcb3dfbfff3c38ed600ae25beb13a3df90b9ff99f5c8ec59830427f585c
MD5 b335e6b49ff3758dd8d28776db8e4658
BLAKE2b-256 e5e5eaf19bf2d5b21ddb2d3abb5687a1283aaf805e8994bdd65f904c08c0bc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 125158562a779ea3a7a05104b23de13a6aee482694b19f83ae2b7a5a77ef2422
MD5 aff44acccb7ab46b276d24d2c919e21a
BLAKE2b-256 d0c5d6660e358cf0169185c49ed7588b5cedd59551a77295f4548dcc356d215a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57c3215789a679d2abf04504fd85cb0471caf0dca738e8e55a3131bbab68b856
MD5 b526e4727a754320a96296a6432d0591
BLAKE2b-256 80a60f556c6d536e25f5f1e6ec7bb4af83edc440c013b561f33708906e75e6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64753a7d5e373f180ef6a4c607d7e70bfc1c5ca62be932adde6deff65fbfd112
MD5 f3a9cb7d6c649ed55b469ac1f25e5c42
BLAKE2b-256 ec2ea9219625850967c27c277eb1ca87b7e4a2d709734a94889ea6dc262f33b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51675935b931ab8143c95be1db28f6e3177f69d829fcbfed77fe7b105b73b2de
MD5 b920460dbc1d220a8dd53d957bc590c3
BLAKE2b-256 409c8286986775e49b1254d96dd2a74e9655038eb02fadb41fba0a694f0310bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ab2362bfa21a31e712cb35e201417e6d73cbb7335d6f2662fdd769662186efd
MD5 96f5869a6af2f1cde00b08e4c1843386
BLAKE2b-256 f9308e0ee2988a692115279ea4ee8e51e85a0a5f3d786bcc65219813ce6d20e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eab897bc97ed0d7804cc368da2216b4545fa4155649a6342796a3b836ad68a3
MD5 60768e3521fc88202083a4686a0036a6
BLAKE2b-256 eacc39829d0f4de3b240d67fdce15c2a63b437586f345c63d109361f0addc941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21829b37f8edfbf16dda60c2c1df054b7637ddc247a5f6771181e891daa71018
MD5 fbbc1ebed3ce33c465b47ec062037e46
BLAKE2b-256 f4b9bd2a9a5e0c6604b61d79e5f48339dee448b9e6a85d287551095e5ff09ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4f3371a49bcbf85bd3651bef324d5bb0004bd74e32dc61329833dc41fb6823e
MD5 03faeb6bc9f1ee26820cd65b1c4ebee0
BLAKE2b-256 ee2385423d19daf0892de160927821848e1bd048cd7e6771308977da35a989fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 31791b5919bc2ff08710fcd40ce2d69e20acb954a79d43ef2313d35a672bc544
MD5 310f2fea5d394d82583cda2c6cea9ef9
BLAKE2b-256 799bd7cbdc0480d789a07c67d093c738668492839b516d8c9dbda019a8318ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 096b9a6966719ae902042f7161c9b8eef436c3a9c4a6c6b4c26bbf07176759fb
MD5 062d875fddd78af5c8fd0c7815177e53
BLAKE2b-256 0fc89e16fb35240c9defdf2d1188222dc1f29bcdc78a9426176647ca44ae288b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8567a30e2bd89b4630744371bb05410b1bc948f50061716fe128cbcd13b77116
MD5 5330e6a96111cfc5449a86619b9a4790
BLAKE2b-256 1ac702e386f98bd67bc36468a2eec4c85557f789fef07d06205fc487f64dcc21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95ac1fa1c81875ba8158d33ceed7b6f79e424d9744cc5851019c118869b52d13
MD5 32fde8c3597f91c05a9b3efbc900df77
BLAKE2b-256 b1db239ef5a38b20a4c4064fead971ea46e3bedb3c35d19ddc053e0b1371b052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e36546836f010929357436f6769a47813f8e0cc15e879aa89700b3fe3cc999e
MD5 dfbb4fb40402b210affe3926ebdf9c09
BLAKE2b-256 6624037c482748c8b7b5917191484a844b03d922321b11905980ed48573d4eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d35a8f2a7dc38597f58f04b5800a860d38654ce132672037daff994a2d4d759e
MD5 03f86ac1181cc12242ffeafb290c9210
BLAKE2b-256 a73d0cdcb6104b364b257f603a1e2883d37f3382f512c94006c9f174f5d7eadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76fa5295b23756a36caf20b27dbb536d23875489c9dd5686d653fd26df6d4b22
MD5 460e52065fdd0a7155da7c10856a7953
BLAKE2b-256 9f8e793d050f8312fa2bc63bc255032e348fb50639af8234a0bf16c5a309815b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d62ab8a663fa0af533667a4589eed8b43f58d8cd99f3013ed5accb7c4ddb9a1
MD5 ff78922e86cc22aeabf04631321d26d7
BLAKE2b-256 cc51607fdd795386715faf06c47ff8808281075cd22f90f721433c6ba6a0c52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf3a5388a22be22e3b7fdfc5567bbffa8c88768978fada8bf3e0cdc58369f5b9
MD5 6f9c668956e435ffd536f3f4d7e725c0
BLAKE2b-256 0f5477a10bc8ec938f2a9428556ff6ba5e17eadbbd9ce5d978a64de73d5b578e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 845dd0f4229681a2f623e7491f7c4c655067e335ca5e255889bc77e5a21595d3
MD5 c08ffa5ddda3f233ddb825dc3de9b285
BLAKE2b-256 52113da30495069d71510ccc9814dc7f4c4ea25f2ed61577989627f4e6560f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9172afb41b699cae43cea111f2264e85ab6413034a669355438a54f996c9abed
MD5 38411035e07e7acec865500a12fe67b2
BLAKE2b-256 c16a5bca998de9c9df3f3e06b06c069c1d94d166bb30eb14900e3eb89a0e9656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a679823805ba7e6672b306d46587f47b96cb6c985d833a7211314cdb93cb4ab2
MD5 4169bcaa15ffe1dbe78f5c050131f9d4
BLAKE2b-256 4b01acf164c8ca13b58fcf43d176f9d473b68af4b184817abdf979baff0cae6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c612acb97a1995177192d37d17555323220e5ef9b60af3ba032cf99100712350
MD5 8150333082ff77ede352ba2b0297241d
BLAKE2b-256 9dcb6fac556683afeb8107d9c7defccb6d5403accea6d84018c7469adc104dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09ca1d48925f6c79772160647a32327dcb895903dde6a203e551850e7d083dbf
MD5 c2d98cd7d6f636cb434a873dfb9a1bd6
BLAKE2b-256 ee981eb99714159d95f4a8a0aadb4bcb579265b1b538702f0f080dc70cb094a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 03bd2dda81c76a8f12ff2258d37641df9f12ed96eb608edfc90fd8868b7c22c5
MD5 0c4bfa47c09887ecd86f716497d57dee
BLAKE2b-256 20ed51bb4821ef333bb039a6a19c0c3820ad8f0a86edcecb7f05a16be3ff574f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27531251aa170702c97d16cd4ff0bf4846c4fa2196c74af5e2ce462c5d88c688
MD5 ae88d3e89d2cb241ccc2ba78e0e4888a
BLAKE2b-256 51d5f2cebfa5e953b433114336968d50a67bc03da2ece5faddf8d67e5761d763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 328cd21e7c6a29842e0209b788bb6f3eb491e5f373e5a2714b30e9437db91bd1
MD5 f89e78550a2d5d0661f3cfbf2e923ea3
BLAKE2b-256 8e8f0e153339bbb314cdc76a10471479d1742b07124779a7eb58fafb0da75117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1012c044a8eaa8cba4ab93a216b8ce57658dca43029c30b64e120b3cd1150450
MD5 8e6831dc105187b9b6ac58a418bb734d
BLAKE2b-256 2522bf94f70d22c113578b8c6747287a07277c9aa91fbae380aedb55d27d1506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18c05e7735bc880e8314ab9a1f80973ccbb4e9d437169488b42ff37963ef50a3
MD5 693d69d79e465b6ee85230a740a993f9
BLAKE2b-256 447e646d92690bc9aa934e38a484081be784a866f6ffe4239f8117efd160c031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d96d90df9e4bc57edd4d3fa13f7d00a7eac6eda97530967a9155f141e057702
MD5 e53df6a813ed171ac021ef9dc0bebdbc
BLAKE2b-256 6312244b0770e7fe7b0b3f4f2bcc33db3c699d1bf60a07cad458bcd89843a67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e00393eb1256751a20e322b65815fd5934f75f7d3f05d837af72b76cc4e837d5
MD5 59da0d3c70804e4dee471d3de319c78b
BLAKE2b-256 17052ba02c252d74393586b98367991232f5577eaab1df3467e126a2c9beca5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c428c9ae103eca7ed77d5bb633adedf4ddc3df38be8a622f7b6ac2f0bd4dbe03
MD5 2286af55d9254b39e4ae5c8cd65351d5
BLAKE2b-256 eab4449d72ba7297859b4ec3a75df22375af0c48ddc6fdcb3a886605f2890e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02b9c9ecfa4892908241f65177f91e88388ea3063d51986192a7fe717a59d69a
MD5 38bf3a379d97e76a674547773af9d001
BLAKE2b-256 d698ae1fa275abbd93988ce3a4aa67fa30760fa9879f356ba74d17f921941d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b52c0770faa04ecd15ffe4b5ce328e5fe851e2d4a3db2672201166dac52e50b8
MD5 6cbf4d40d365c5444679382359fd3876
BLAKE2b-256 6b8fb9309918416da455d57a033d5ac9900e21a18753f14e007adb91eeef8c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ff924b26b04a4f2e53585ec8888ab19b3fda784c82301d8c17764c817c3b294
MD5 1ea6e256cebeb89230d838376f4082b1
BLAKE2b-256 60d29eb236f380bcd66c1849a391046da1105cd536ed75be74c265a21e2d898b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4085ccc344e7680fb7a6c3e56fd7bebd855991e7ba6ddffbf925e25d24ad3024
MD5 1dc4326a456656b7470ba3465ebd04f9
BLAKE2b-256 b4c44549fa533d741526793c466f1ea9a23223d5a0a1ad0ec002513398716d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 602d68594ac7d3edcfc8ee1ca799ee8d630aea1132bd0066d32f0d5fb106bd99
MD5 764536a0724fe4872a8a82d5a854db65
BLAKE2b-256 7b8993884c130b79a981f59e67e54e51d922ab21a6ed8c0e45ff814fd0ea9aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a0cbd4af7c8b480dfb3ea718fe5d7dfc9712e76f0937e7c2a54591cf32721f2
MD5 d09904ed44b18bb660468fc2d70fba90
BLAKE2b-256 63a036e6d89116db87a66c62507480c47a49aee66cd05c7a07ac5321f90c0ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a5b257ea55cba51a57bf09ce6845e8f69818b5d863e80c81d8494efb8e232fba
MD5 ce759aa110b6367e56d02bd8617b0909
BLAKE2b-256 cce8c2f1c111fb08b4ac86f9355e53304c0c5482c28b9bdf35559eb5d99ca5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 991a91e2265a4109076cd8521052fcb2f9aded665e26eb3794dd8a42ccdd7165
MD5 52df8a9f12004e85aa9c694cc174e861
BLAKE2b-256 17e82a40afdfb2a249e000cbae91c3225eb746a57f5d7ff90d5789a45caba2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d575ef27b134815657857dffa4d93b5b06591ca49812d3407f5b898505fc2e65
MD5 31ca0d097fdde767e860f9aa5cac08a9
BLAKE2b-256 b1a4f19f73fef3198504b3971f8d4690e99356d1b6c37a26443b540ed22b0cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bbca6ede7e15c581717711d8fb6b266ce60445bd9b32d3758ed6c4abf2e9771
MD5 ffef36a79707790166e017f7b60e81ee
BLAKE2b-256 3414147e346792261c593f9deea00b6661edf7d484970be443da87682e8351ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfae98f13697eb6d07e8b3572dc823a729da8ded475189b4a0b000a8ad549c1b
MD5 e4be84f18fc9154cdb27424938595a99
BLAKE2b-256 9c2df1e4fab3a7119fa5491caf932a77348573ee0ddd3065b515b9c8c7f40353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec83f48339a6f52fc714364f9d9045a5cc2182c1d6c1e3f417dbf7da1a62240e
MD5 2fe55fbe6165ef0fc4326180e0b32168
BLAKE2b-256 63f2259b19d992cde9c34c9bbe566f91e9dda05436df49cae33dd6a568fe27c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 788eb203e5b2dfbc757abbd4fbdd796b0ee104ce7bf686f0215736608870c8cd
MD5 ed1686064911ba0ccc3fc931c2459e88
BLAKE2b-256 73e838dccc710d61ee95b21faa11e89520802509e799f2c8b915c7f3534eb9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fdd8e2401253d33c9ba03b9eeeab59ea42f7a2582265ae8df8ccdf784f0c3a2
MD5 c63436fede0b5818041e808931c6ac16
BLAKE2b-256 7460580bf62296335d08e8651faafd821b9d94eed0c52b09304731a8a358661a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3c02de5e0b3c4fd8acf3a32a7325a8beb96d2c77a3f8e948f59a737d54d6fd4
MD5 997b67a1204ca7606f74c3ec4912c20f
BLAKE2b-256 40dd3fbcca3d4a8fc0ca445e1744ab816864123681f6905aa3e92a688d3ec5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02a41300daeba6e119983d92c95e61aa6d8fe6023dd2696e801c65f762c0e71b
MD5 14d419eafd30ab04d1cfb3c1d5cc1586
BLAKE2b-256 2f59a05f3fa1fa066412100f85d2334ba02462b5647e32e56dcfef50ecbd69b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a62e17cf46739e8454b6661a728cbb66fb63f882e7178deb963b00b810f5cba
MD5 3396375dd9ef33fbd30529d5e6ee0440
BLAKE2b-256 f51148f9523306d1689f0515de4f579ef28bafa9a2da1214315a64e9d7c272c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c92fb71298c3dd041d1360f62085793250be10908b3f6a04fe8bee5a80abd75c
MD5 ea2823b31e628f88ad7e321b73bd378d
BLAKE2b-256 85796e41b323a20b2c8b90e0355b0efd49bbe621b250de66dd447cac5def3d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6425da551cf97b52c63e683e61834ed7385951473375f01e4c8240d42958a4bf
MD5 46f5dfe51e7f004d3068ccfd28b36d59
BLAKE2b-256 eccc9e3c2b0d8ddadf0ffab26fe80633160ca7ede6e21def8aad7bb21e860d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83970199efe4e4f3418dd4dbb24c27c7ba47ca09a28d88c02dae892d5bbd561a
MD5 80ca128450d58e46ee59659e3a10323b
BLAKE2b-256 eff70f4b83e9d778e70956afaef7a14cbb52828a04198aa13073fd366459c2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3395b197e1e7c0ec1460c63e32b6109917ac202ac84089a606f43663c2097a0f
MD5 fa42d19a3257f40591ed5d3a466baf48
BLAKE2b-256 a998c6d952449b0dc8a594590ae9c113f71a3cd4e858c06eb5edeb58c4a57e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11b8c9122d5a817c508492cb2b09aebdd8dedb1acc3006dc4181f340691eb622
MD5 ff0ad6b8cb0560a2e00939b6ac4805cd
BLAKE2b-256 57408d07fc06a60c7378a7cd874b401364de6be81538c083d65947555ec2f024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f84b851385ce5e4b4d7d26b53868f5a035ab2f96f6086143c3e5bbe3b73cf1d
MD5 c16dbf08c7a3abe8ee725b788daeeb92
BLAKE2b-256 bdaece31c8a3ef5a48e07c0dbd940286234eb3f339df289a4575f0125c639a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a08eec8d3831d8aacdc6203557180bc0263ada082dcd68e41137ff40062da34
MD5 20760431951324888ef64dab44bafad8
BLAKE2b-256 a41cba2a1fb25cb11228cefe7cbe6f0bd2f72044db13edbc540cda318c7bc365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e43ece254b4e1ee77c2e9f977fa375282fb21776a7c6c003f14a7ad95249fe3b
MD5 56f74942761ae36aabdb42ac006a0399
BLAKE2b-256 c57fcc13bea60981afb1712b07104f77205ea297779ad9685292863115fc0eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e17170bda4d6d6d2a882dbe412ef1f3d86c3e7546fe91558611a0175f3c613c6
MD5 bc5388d76f5092b463c154c8133576c0
BLAKE2b-256 1009cc3e7bb9906357f13a763ab32a99a425d02137dedfe0b28e812f4bbb1bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab55dbcf4d3355ee6d92cb6db780199590d6862eab60e935cf8b697125c9b985
MD5 da0552cd9e5bfd63bef76dc7e82ad6f3
BLAKE2b-256 e545ba6eedb2028ceae53ebcf4c9efd550bd3ecd8878a4bb64b72dfff09aa17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7473fb9938b5e0e92aed1f54019417e0f83c34a41b0d6ad5cd0e1db4620ce376
MD5 b9dcda55f8c46a474a08acd77eb69b8c
BLAKE2b-256 9d8ad14212aedaafa7589e2ec83a460d803bad74131b826a9196faf01fa61e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53be26a85d7d727fd9043c61d7221124c8c650d127b05e1929c6b62e8a968ccc
MD5 ac425b60c548ff8020ebbdb34c7984d8
BLAKE2b-256 ff470744b45fadcd101a47bddedefee1816c761b281febf8eb208c85b7624e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7496b01f84bd0b6a1538d61041069f8395bb09907422ac70c84e55bba60f3fb
MD5 9e4dc605011f7e421e1cae2643587f78
BLAKE2b-256 b5b2eb9027b13c56bf9c3617b88218155183448876e1d5d7d99abd79d50fb0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6f5dc562826385e8610a3cb2c8364bdf2ac62094dbe5e30a4a47a36b2991434
MD5 f68d29bd544b54179f1c40b45e2ec8ed
BLAKE2b-256 f4228af0e583e6b598068c6ae8f2b5afdee875f2ac0cc204ca5fde5f46a4e9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c01ef45791639228209f9d53bafdf58b9b20f88bc2a961730e147e9292b8b804
MD5 c044f1c1f5ce50131612f9bfb6f83f23
BLAKE2b-256 2167c727d000e10ef334d35efd34403b173a6d5942099f00c5c94f8ba0a82a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51daadc9ab51af63656b96e0f8e76cafe33c535de7c9f05e7d3546850f53cfd6
MD5 68a722aeceb1623d9569996c9d202f3f
BLAKE2b-256 d8511e2831a2a60cb3850970b7054dcdf27c9394cc0d6238355ca6b6dd221d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4ebe403970280c52b757133cd3747a5fe20e2f126102b689899beae3c4a7458
MD5 5757020fa716950bbc1c01e4cc976345
BLAKE2b-256 aa5c5416bceb5fe02fda4480dc1fad1f5eac8a3e909e7759b89cca5a1dbef835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3aae6697cb3e23ad8e7027ad659a40980e3d635c9d375ee49f6854b05ac62421
MD5 f28a1668392c7a2d210d79cc89bb1170
BLAKE2b-256 7be448e7317df7e85d44f08465ce80e614a5083cb4e710a2ff082de3f0e12384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 295400813cd85893a8cecdc86abaa69eea55b66e974872fe57a43ca6b5c05894
MD5 b038e19369e9ed75792fc6d8d162aa4f
BLAKE2b-256 0f6c5c334363f173fd8799f52d036e0413cb0181fb2526551a4206a6bd463ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6a3af86e4280baaa17974abd49a31db88e7be65951d6a23ab4a1813a1e07fe7
MD5 d272ef3f89bc5b9d8ce8ecb00a95801b
BLAKE2b-256 8cbe09ccdf5844896835f76abcd1c4a1152129880dee63f8f191040843bb65eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10fe94860ab21f848cd5b2b26cd688ccfbe796362425059e5e2eba46c634e348
MD5 b45413b06dfb72c4762b64ebcf926040
BLAKE2b-256 d03c1f5d54ad4d68c189d8512bff7c6061abafe70c8fbf84f6ca9eaa458f9297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93a870c7e7b2ba10ca5ed089e5ca49ad018552c2bdc6674898fdcc9a66d6b056
MD5 3ae08a4d47593cab8c108e16f58b61a7
BLAKE2b-256 198479e453b1525da280c47bbc360b687f9770bf103d6d7b4434858196cf70f8

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