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
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install maturin in the virtual environment
pip install maturin

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}
    ]
  }
}

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

openair_rs_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-cp313-cp313-win_amd64.whl (750.0 kB view details)

Uploaded CPython 3.13Windows x86-64

openair_rs_py-0.1.0-cp313-cp313-win32.whl (681.4 kB view details)

Uploaded CPython 3.13Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (856.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openair_rs_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (908.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

openair_rs_py-0.1.0-cp312-cp312-win_amd64.whl (750.0 kB view details)

Uploaded CPython 3.12Windows x86-64

openair_rs_py-0.1.0-cp312-cp312-win32.whl (681.4 kB view details)

Uploaded CPython 3.12Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (928.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (975.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (856.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openair_rs_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (908.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

openair_rs_py-0.1.0-cp311-cp311-win_amd64.whl (750.6 kB view details)

Uploaded CPython 3.11Windows x86-64

openair_rs_py-0.1.0-cp311-cp311-win32.whl (681.5 kB view details)

Uploaded CPython 3.11Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (929.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (975.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (859.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openair_rs_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (910.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

openair_rs_py-0.1.0-cp310-cp310-win_amd64.whl (750.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (930.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0-cp39-cp39-win_amd64.whl (750.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (930.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0-cp38-cp38-win32.whl (681.1 kB view details)

Uploaded CPython 3.8Windows x86

openair_rs_py-0.1.0-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.0-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.0-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.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openair_rs_py-0.1.0-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.0-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.0-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.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (930.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

openair_rs_py-0.1.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for openair_rs_py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1fde5cbe1a2b500f40f1ae2aa82718462564ac618085f9450ba5ffc4489a6dfc
MD5 6d59c27c00580509a3f16cac6d1af9c2
BLAKE2b-256 3e79691edaa852089588eb21767c76d17931f9a51834a7775a941ffa95a55a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c9a95a6994f558377c62bf057ceb8653bd7d40c3693f550dfb546f5f3ee4f3
MD5 b9ac313ae280a4daa88cd4e08947559a
BLAKE2b-256 b38a01105f592e5d1cb9f2092062439c7b70be62b13e539f1617d11095bb0f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49d181aadae2a506352dab04c49bf844cf86857baa8071445846161db28c0c90
MD5 7acf342c54fc749426a112f42b651211
BLAKE2b-256 7e22adcfdd11899cc33c148dffed2152fd105284d96a639d2188a40991a73b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0530ddd2ee2042409feabde974c3d3b7e79e96d66507c236efb09a3d5a4cf784
MD5 ad4dd694100d035e9ac22a041221b585
BLAKE2b-256 38dc001a85ac698d173f35e1d7c6ee44939851ba48e799282a73e8d3576004ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c480162022dfdfe1c7e51baccef0e5f1ddc5f45ff8e25388b8862a75ac4749c8
MD5 c48fc75040b29f2237e20c43b49b8d51
BLAKE2b-256 f9a96a598c04315b448eb2cbf841ce0d7df451128440c1349d0c647359cb0e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69e5e56c88696697b6f3dd8c42b2fa9d8d46936daf656c46a974c292e15a802f
MD5 06410b9e8a84f9848518e1cf7d6d40e6
BLAKE2b-256 9f93755847fce032458030d5578645ae0c2d487638f9c453fb13a29dd80f99c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51e36b171666fef0ecf1a8387f112ab1897cfec2e229641a54e8d774505ab6ba
MD5 9156e015fc143b3e09e4ec2cf23d594b
BLAKE2b-256 6c6b1aba341008683f549c4662c6a60bae5644da986d9e946574569279f8e9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bba2be90bfe9e5b613fad4e433cb8b817c1e6cc1dc8af793ed5c56821ee0fcc7
MD5 39bfff7d6a54b4089104b5b2788e7f71
BLAKE2b-256 1508447bd2580a5e5ed6fdb491dba69136e95e42360e711172dcedd6c31bd71b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8383cef9ec1471a6c175d9132833e07374ea996559df1a55c6a6467d6d3773c8
MD5 dabb137de70b8878ed81e53f1428cb5d
BLAKE2b-256 46d2d7821243d56d0e4f23436f4879a9e18a37ec790eccd33ff7516503e21788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acc07fb69577755b89c279d0b9307f6ce8345ed45afc973fd0d8caed2bbb2d3b
MD5 dd2a5547b53bbb98c7493dd16fbecfc9
BLAKE2b-256 e6fbef2bc826efaac9327d0c23db3beacdc7435e5c14399118d00c985d0ed087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5261ae10eb0bf0ba0b3e12b7a4e9099a209f565bc9923b8a354834317ddbe8bd
MD5 8c81761e893ffbf9c8efadd81eb1b23c
BLAKE2b-256 27d5438f5e76eecf3f3bb5755a0dd62274bfcd2d0a6fcf4fa76d7b4509afbb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 058f0a818abdde7e34996b96f0762ca6834d07ea92156ba9ee130ef4be6d3dbc
MD5 3304e802a2d8c363aa2494c94e796b74
BLAKE2b-256 bc7c7f72cd77d39c563d2eca040cb957e8cc8a9ef40dd010fc7d3aec936ce769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0df430413694cd441d19266127e5f76460ac7909562137e1bbf884880a4e976b
MD5 77a113be51add4b5d9053553cb56d12e
BLAKE2b-256 87cf118d36fa6e5de56f9c2e1e7f97ce2b502d25c3433b63be0dd15af1ff4a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23767736624cf48a915f92ee1c87749a1fdaef6789a4f60cd00868933fa61350
MD5 70b7dcf04053c447e6080e785b058235
BLAKE2b-256 422f33b8c816688e1ef9172c87aa7d7721849527c6c303dcaf9ea3bc479efeaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63566fb3eeeef14b439ed1d588da255381ef3bbc5f4840a4277d1201e84033e4
MD5 6bd2688cee7543c462bee09eeccfb077
BLAKE2b-256 591a6fb1263a671cc3e61c41ccf2f5ad78f4f5c6c67d58d5cb159eedcf9f715b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bea98a4d9292f4a50aa7fd2bdb33b4129d7d44fd784b5bc51ea673573c1a003
MD5 87a93c7278a634061e42cc7ca75ce9e2
BLAKE2b-256 6b09c1e1c5782797f0748a2bdc2d8f23aa835ac33c6ac4eb084d260f542e498e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12661d16e1bfe4d3a3f185ca65a2a349b59a91d641ea757c584caecfaa4d197c
MD5 66ac8eaa262119be3835f07ac26ad8fe
BLAKE2b-256 ef91cff5c4d9208a2cae85803060fe5627d3101a16ff2ff7a69c47729fb4fcf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b87810a85c6d611de9ecf56d088a483b7dad978d30d746559152fdb51a6a7e64
MD5 adbcbab7e5797c8d23f2a4ffc7160612
BLAKE2b-256 7698be0fb4a40b75836e760282406e85ff64866104e125c37cdf001dcf4ed652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8d2a326bd20f804c537a99d225c073d32082756ad074577c67478c9a1a270ef4
MD5 ab1d72cceef72ed21d3a09edbbff8de3
BLAKE2b-256 87e431356e4b864df8ab786cdf4ca8b2c7b825e66a38be85e9fc4928dbe9dec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eab3a6a81425ee14c46d078ba3fa09c8ffe6974697696212862210eef5477e7f
MD5 ee7ba7e58771227b524a54afe4ea5843
BLAKE2b-256 9a5b2505e6806bc78caa26e5972fb4c894f01e085b4e702d17dee208332faee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcecbcc6199b36bf913ac234a4393fe0b712c96d841d083c8ad0a9b2c5d5c4d0
MD5 7bd8d3ac5f51f16b426fa367304fe4a6
BLAKE2b-256 31254efc7ab4cf0a6c522cdc063cc0cbc1142e59fb3bd9034858959dc6708583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e199f2736d6a940e1cee381b6b871fdc006aa07ae7f7079f322973965c5b72e
MD5 492ce570a1da7f3be154efb3ca7dc654
BLAKE2b-256 d74740de17a6c631f9d197771640b36946f0569dfd41528c6d887c5ef808161f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 604701b0eb707b573ee0860afd44e3b74a79236015821506f26a7b6f0c5bd51e
MD5 a8c8567fbcf60c57fdd2dd4a4c882197
BLAKE2b-256 112e44c6b44028654c71139adcf321a872c55d318e5adf030d8e07a5140c1362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78483a6bc49b8074eac64ff7571e2c8c4fbd3f8237876bef97cf606595f706a9
MD5 48dba020cbdcf701a57cb8f98b7b893b
BLAKE2b-256 c06e99c6afb0d016c8e62218459b0a28221b0508b7981e0727ae3db1c4d2398b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04aadb7a4390048b6f5fa97968a84d124b763bb3769d8aaa5a8416fa07df7fe3
MD5 c03eaf2b43360d8103c2f5798fc135f2
BLAKE2b-256 9bdd94fc2faae8b0e12e69cd4e9b23b0635e57340a41d45eeda9c1bad22f44ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c13159cd19511f3d943691245b1931a07468d9ef52aabfea71feaa7b2d30d4f
MD5 a1ada73edb22eae5f9e0c43602184918
BLAKE2b-256 737c4316ec03b3f6c7ce6310ae78c65de6508b0dd053bd0c3ce3dd43145e1b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9056cfd0622e92636da402095d154a1eb4d61953a0e16cf3050f5a2f3bc84a81
MD5 ccb734446aec945b0ec6f40522033e1b
BLAKE2b-256 e3a7ca24e95bfdfb9c28f21d6a168590027bf6aae1541cb992e9e383e4a94ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b058ea0c3ba719081d872d9331a48bd4cac00df5911687c907a7b06f0f8c4e3
MD5 a9a76285dce92bd708b6dcbbcaacaa06
BLAKE2b-256 d0199b9d69760f80418b835290fa22ad568a734ccb35b9d8b3c5f606de885648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ff22e13d0189de099c53af6e5ab33ced5a5cc7abe56071a5e7e1ac51c48ee2e
MD5 0078ee5999db13bc5ce287d4e947ac0e
BLAKE2b-256 a881a7c08fdb2ebb818411d934c708644cc707d385a7b9243217cc5bed9fb449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92fe6ff91bcf8d8c5ca1d38e3da4424c57f2d417b0ae58227ceaae0a05abe412
MD5 479d6c89a0c35e4042664b2e5931966d
BLAKE2b-256 4e7ceed4fbe499717b274e220146b2544904aeecc31d101bfcb3bb9c199c6046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40eff37fe57f43b11b674ccd057a95104ab0dc9252e3933744ad0e24601b8ef0
MD5 1a1a789ce7ec535a5eae6cf17b436751
BLAKE2b-256 61cb58154107589878888c9d9a3d76c80d0cefc9b9b0cbcbb1ffcad87d844e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee42b8213feec5be486fbb4754205f5415c97cccfdd061bb2cca59f2811beea6
MD5 80e6d661b713debdd76bf5a3bb2069c9
BLAKE2b-256 2616a630f7c9d04a2e742256bc76468066dd0e4bfb7b0cbb81603a0c05967aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 961d1e951b1a391a2344a0578a36eab7a5a4268e8356a86757babaf1db71a4ad
MD5 4f9882cb7409bc8253b2b56333319095
BLAKE2b-256 42d1354366516d2878fdd8f6f02dbf8681b0770513857f57270e15023b482df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71c7e718fdfdf80316cf7dc954f21e588730bb96b4b0e82bbeccddac1675fa54
MD5 e12ae5f675d53937ff213415e25871b3
BLAKE2b-256 52ac9324614f660287c978f9312ae34f22c4c484f385ea698d00ac5b3eaeecd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec60f035cfbdc6c7928a43ca4a7782cc379e23235084e4563be14251a2517bb1
MD5 b824f0603ab85c48482c8268e2a179ad
BLAKE2b-256 fd50a340bfb13e94399e6b885a945752c8678151c43cba21dce14e3533ec8e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5db2824c9b8bf5847f5d12d5a0541f7348d09c8eecd08f5e32deeea5d013a623
MD5 637b2417f721d24cbcbddf22252114bb
BLAKE2b-256 d8319bd89e7cdb46ff20c2b4737e3f1a5e68a3ada2f1ab214e90169aa6aaa062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e713c7898d34c0a8126683d6fdefab5487ae22f3cb728529f7b79f9ebb146d9
MD5 404a069e709089cda9625e16e274ad43
BLAKE2b-256 1086a70df92880165b2764ab8c139050df1040adb1e433988e9d42b0987b060f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2274b0614fee48bda769131f3894fd9ca1bfd0a22f9ef3f4d481e64700517bd6
MD5 a3ae233eb23319ab93782176be77735e
BLAKE2b-256 e4c3794c3a3e809a51c6a8755561487afda31107bd0d1ecee4ab40103c3d10b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a0439e95e32b596de99663dd856c5bb610ee8bce3bf02931735392a52e1d17b
MD5 62023ead69f9b06aeb14881d15f0d3c3
BLAKE2b-256 583cbd3c97cb4cc7f4ad5f82bb64320b3b71d8e7f4ba8c7ee8554fcfe9a29cbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81517dd8ba78602e8f1eb60a6e4b0606074b18809cb6515a3d863c5dd1d341a3
MD5 03ab23d923dc3af1529b1c1884dcad94
BLAKE2b-256 08d21a07c38420299f194af3ac92eff0da5ed55ae7fe201e71929704edec9aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6fc89a0312e75ce0990b0ecc6c442abe1e33cac56f23230c22ce51a0fc944fdc
MD5 07f82d943879b11b6508776c1ec1af3f
BLAKE2b-256 0ea03d6462535b1609b7c4256a6781f146a7982354b2887cb31e1a1455f371d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 112d7665870ce3ce1202768994202d7c5abb559d3295d97f25c68bea35829472
MD5 a5ee27fa8fc7b5f22e61784f0932dc47
BLAKE2b-256 180b3d953dcb2507667d97edfa12e9a654b6f326b6bd65d233b389595b3ba829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5db1b95fcabfca004121dd440950824ce1d8bbd2abaeb62bb19fa7bb6a64451a
MD5 ba13dff52bd1ee89dadf0c1eb9126a7a
BLAKE2b-256 0b1120ba2bb3e17f1e13d4d87db16a807b10f8f804a64af4cb5d727b8d24c4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47d839e72d2021e2c46647c8070700b1f2ca33515516fd2d0b72311b05bfda30
MD5 ad4804179dd6e94b3aff3e9c5a24eba7
BLAKE2b-256 50ba66fcb35d2535d3d496fdbe5fce65d2bc848cda027bcfce16fd1e6178bd6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 704ff256eae8820289be037b545bc34e82b7be3a95da7ae3ef62485e2ba6866e
MD5 df507b9dc61257b27d806e8f8fb1cd1d
BLAKE2b-256 b821598d35a421385493544b4ab9fd9d78fd42f4f03b26d5ee7e3ec593847b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31cfa7efda7ba890716cb8d1a0206d05715ff3552af4cd1cc03e15521d256f86
MD5 8e156a25e850cd4e286fab7c2b84b6b8
BLAKE2b-256 8cd12f8dd43c86b8152d2e4e64db801c28a151064b80d4cb576a1a37d1f8132d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5ae7debd514dcc91c83d199b3c99d17eca616d10b37b3e950c90869ce5640df8
MD5 3ce9fbdbcd16250d9a7fafacaac6735f
BLAKE2b-256 e9b55a5f251b60232ab5d767af06ec90c03e2dbd85dba0c3aafc2e2e1acfcea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33eb4534f0c1655d12eb37668fac74c0d25552abbc959c76f584aa17b0063167
MD5 4aacb2ac46b919d1356466819db5e8f3
BLAKE2b-256 8ec105f92b55b2ad55c12bf9d10b78e49044c69ef7cfcc3864a15a9c1e675fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1574b916e8c823365e20dcb023b490732ce1a10c5ed8186985369c3b6370b9d
MD5 5d7599b64647efa18b172959ba3a3694
BLAKE2b-256 e9616ce1fa54b4505329debaf03bac8af42d647f871a665b669531071a8485d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 136528f30ddbe7a0ef1efd0be02125fd487db6c1b80f85238d3d9e6c1010d491
MD5 60e0b15de5f7e655e304eb6b35783793
BLAKE2b-256 641ef2127d87c7924f16493b02f6bd70d385000063f2d7ac115aa72595e536fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 694f4708ce661e2e688df46ff5105691dc74045946dd0a0a42787c3cc90f5c06
MD5 e76455baded9f018e406f4946796faf3
BLAKE2b-256 9ada58893bceb37909367872e3c0030d738a9289a1c9093f9337baf8444a97d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92eab221cdfc85e2cd4b50f84086f43e7da264b4f5a57a2ea4f0209971fd90cc
MD5 e5bf9cafe85c23f19043c968243ad965
BLAKE2b-256 46ea51e9dffc7b52d434d4ec12d2d55ddcbc62ee99c4075f79a3fb1e5afda2bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f79a8610f58edc6fe226686d09ae687b5a76b1479299b86c0060886259aa141b
MD5 5d85c458cb896de947e3892afba73352
BLAKE2b-256 b7342bae77e75c1dc1efc424013f8393b8fca1769eca7ebfc1de2465d6d7cbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc9cb96d278f1c0759e7eabf6e62c892b8e1feb0ac79a0d6e02f53f00b6713d3
MD5 efb24e24a2887f7a0ea192e06493852f
BLAKE2b-256 a8db1da1d6774da6912324b0a6f9112c240b68473667cc4bf3048e50c084ce2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8dcb71e61682cb1295081b220fc5290492a979b259201c84ab2a36436b5419c0
MD5 9eea3b270bf54829d9590874e8c4eed2
BLAKE2b-256 467a94cfe68d911ace069ff09c526982f88bbd5f17c0743ca67efbd9566fb0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 198022e204c575ef449b3843caa272df2e481cd2123b98abf0ebebbd4b043798
MD5 643be7ff0c4518b96ee568ef24e5b8a1
BLAKE2b-256 c300f36a8da4762c9cec9aadeef7fab6d849580768e5d7ff5d62e52c665d75c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32ae3305a7fa66e9e86808aad8277de732ec97228ba0a607ad7fc5106301c927
MD5 ea3c48b187b10bc29516b951e9be8f9b
BLAKE2b-256 e5e49ceca8f426fe653be0420af796ab3cd7d6b712cc368fd3cf796dd71a35c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b890305bb3b527102f70476d7491174fe36af4903e55bf71473a59588bcad3d
MD5 0864bd8b502ebd0d557539fd0fef92a6
BLAKE2b-256 6c492c8f30167928459623acafa0a94007d98e7a6ea5ad279a88f1b7159cb38d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6844d3b8fb112b706a86e9736b28025c21fabdc73a87f969ada6ea82001f9202
MD5 510d77209151bf640615c62914e2fcd4
BLAKE2b-256 0408625a0ac1ac94059496958230ddaa4e3797a16a856fa731ef5d1ca1ec5034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ae46e02396cb0f0f238d05b117a6095e31874eef418e828032c6093f96dca2e
MD5 f6c7204173d49ce62925d1295d6361e3
BLAKE2b-256 a477d5b134c93ba0f9f916c42fb39cfb3bef138ae1fc1d1b1e6cea8f1ec85066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4c7abf93c905cff03aca402c7a95c6ec3e07dc7ceb0d2d600613dbac742c53f1
MD5 b7d596fd38cd05203b4c96f5f8b567cb
BLAKE2b-256 53680cc63da299fe1a5c6e7ea8e71197c22f7fa793e20293a23ff6f7fe344e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48f7eb4ff0b725f529625b4359c75b130e13af50e7e52f538bcadc6a3d3be523
MD5 1d0cb8ceb482607002e20850a47b13d1
BLAKE2b-256 f60f4986c437cd02d006ede2963c3f9f446e563777c8b0b0a7337ca57e8ef5a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 624ffbcc878c58edd0d4b51a117932415a063d291359d4017967b01e2e0b75d4
MD5 874b36da4fb3c87318817aacc9f3403b
BLAKE2b-256 5de6d8059aab92097b010d99a8ce1d8e9b6ac5b19202e254685aae84ccaaa726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bcab9076166b236c89fe2ebee2d02687415efde7a80239f9584e69c798971669
MD5 154b0149349af91b3dacd1670d64ace8
BLAKE2b-256 56194379f987742d72fad471073c69aa69e9d78149193dd91c17f96dee663e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5681808c508ddca14fc102a492e880b31c158819667163be1505b92fc9de934d
MD5 f31b3e03fd98ac7c970b2b1891e58d28
BLAKE2b-256 61abaf64cdf50dfe9d31a0bbee77c19482390a58f5779d10252527bd21cd4b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c0fc9db8695d551111360ec52cf3cda5c4b276a0656c0f1a9a12241d2af2344
MD5 c5f522ea383f1aaef68f1a45bc69ae5b
BLAKE2b-256 7203c2052ff3ae04c523d98df4a26f96adb05378d649274bc057a1a2e3a46207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 febf05bf0342f3deef3335a48f1b25697120fff3a85d8eaf3ad304d4627e5c87
MD5 ac5215c7bc13cee54ae568f1296aed70
BLAKE2b-256 725d70450d2a4737b3be80685540e0ecdc15ed93ba4ad24367c0fcfedda59026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e85461e6511bd1876b3828b5458b6cc54e6cb8c5f1b3f028085a6cb1fd546474
MD5 9453b64062db2a553852c21db74f9be4
BLAKE2b-256 9dfe8bc1e91a4b84ca7bb13c9d22ca708a730ebf57d6906f9969383ccfd01378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67e9b0ec2da0f7d7f6d71ba789c1c96576fe0ee547d8df6c71fb0871f84dcc43
MD5 baf15e99f7051f761d43052ba740fafe
BLAKE2b-256 f9179374cc76c5c0102175261f8994061505d231bd5b4afa0e850f2172f3b26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be7c022a45ab22e3468777c20021c6114e4931d729b61e6cc7d94f4aed159aec
MD5 92e62814c03f3ad75d2599f20e7ebccc
BLAKE2b-256 225187e2b7b98bf9ffd42740e74d8e4273e87d539f1cbc01bf4a379447ead9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a49c741f666646528539aff98411760783a5663c6d6da313c1d51a633bbabbc6
MD5 3b3fb53e503d4afd2035f25e2e5c2cbd
BLAKE2b-256 38ba3cd51c13384e43151f3ba28462b7ff8a11aeb25868aa9499d7657020cff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2fb9aa567ab4aff1d03bad02d374e3c87af2f091a456ddcc544cc2abc92394f2
MD5 4666a904b124017de744ce9070383140
BLAKE2b-256 570283275b820053acadda445eb339a157b1629fbe8802aa3bc3774e4d556098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bff85bffdd417a92e2b9126f39fc8f24d5313e8798ae82b339df06d72aacb0b1
MD5 dff1046c76c740425d5c607dd0265195
BLAKE2b-256 f5411cc0930667ec1d40546e0bdb09ff7e17a7a9cd05efc2d6ff9a0dc1f81250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 732a9d2f87ca54ff11e373e4204ed04129cbd9c0f5367490323d589a6adcb68b
MD5 ca822822ae254798962dc7ca2e5b258c
BLAKE2b-256 882f94e661f172d7f52533e6f104356120f090994893c09f4fa2987c3085abc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ce495e46ad18231c9230f276a2ec5b0ecf18e91464afc7ad75e051f80731d19
MD5 fc4e0de5d541649ca1a70847cf482319
BLAKE2b-256 6bf3a28dc92142827d08758a686f51becff4fccbae1f0cf5f0fec937953d5b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ab2d1d6cc4cf679c784da6444f115c161c5c871be0ee90b6d725f9648c622a3
MD5 92023ad984760af62a5fc4e89d0bb6f2
BLAKE2b-256 e55b076a1e6fa71ab696dc83a8f4bf7c0fb9e557ab7011681f13e35a6a44ad06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 206420af87b6e9f3617bf17789e4c9cffe0f08ca65a99b3bdb153ab8f3095d24
MD5 45d147c544cab78eeb516f00692e9fd1
BLAKE2b-256 d65b086a1d5da64442b231221833366728d8f9db9d699ee9f3bc1df6ad3b53ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67571cdeef65fc8501e777c5548d3f23d1da3aaa7e8ae84ee843cedb3a622045
MD5 73a3b4f1d64001abd10291dd2518457b
BLAKE2b-256 c98899e13bdf178d0a7be3b6e697283c2b32cbfaaf8961d7c411a5d08f78178f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5157d6685b7f477bc980c22d000ad33feb107345f64264170f43a4392f91f665
MD5 f7fcef4d08468d9193be5549ad432936
BLAKE2b-256 785d43f36f60a204605ef81612a2c29e84a17cc9ebb9745a049434e77103ee7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 695ef97c11e9fd993f00adf695257c882a89ed70c0d5532419b4052584b35e0e
MD5 6456bca6bb9613c2a12e94d362e86a99
BLAKE2b-256 4dbc4ee11f1545c99a4b1947fef024ddc3ceaddeec9cc6b78cdae115e47c7996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 455a28cd33603d741acea060e925451b414cb8fdc48944d422216b8df36f0507
MD5 7df9fc1485a04ef15ff1002bfa3c9e79
BLAKE2b-256 b3a8b44d899ad4a74e65e431b3a82c7808374db42436857a1987c5c82a587b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5bdbc0707c10cca820b0153026016e787359749a70e21ce932b315da171317c
MD5 431224fb8ae34e51b66bacd81e394be5
BLAKE2b-256 d1ab10643e8ccf55eceab305c51728d170ffcdf30cb48f0f30490774dea19d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5378aff8d79743f27abf75d9242b2f59c9fbf18d43e94fa7415fc409e6d6a9c0
MD5 fb1a7c69fd0fe326c7b3a03795f348e1
BLAKE2b-256 0a82b5885d2099a2f449843cc49f4c577512e332238c3dc7e21ab2bc0bc0e606

See more details on using hashes here.

File details

Details for the file openair_rs_py-0.1.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b191635749df4c824ace950427f545033abbdd8456e817d5c15009548584a6e1
MD5 6075108b43ab2eaeded97c66e291f7e6
BLAKE2b-256 ff6ace546b441caf1ea3462d11e0b9d0df9002eee3f14e6646aa3708039e0d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8649cc8e047a4dc678d5969035ed4b3f680adf6c0545a2ffc6576db8306abd9
MD5 9af7533867a9ac756f79caa5051b9bc0
BLAKE2b-256 745526f6626f8a9134d22c615fe692ec3046df81b2b32edf6bdde10b436ad2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3e46f8f41c13e9e08fac8df55410b2526d4e55bd8a556f6b0b861ecb55652b8
MD5 1500627c0be42b0da541eab4957e5b6a
BLAKE2b-256 e603d2d781d65e8f2b965d67caf4b3d3ad53768a7532b05d6caa764bae890e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54cedbcc6945ecf34a73a097040fdb79495e096df4c4aa6891198fa84802999d
MD5 ee132a3bf3f5168396e4c90781fcff5c
BLAKE2b-256 6d8aaab214e77496b96a51fee16ba698eb44f4a9f2f2f484664079d0e8b4e808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c9ff1316fd76989a916a5e6e5b210b8dd54e2c809195c3cd291434331b18d5f
MD5 c734fac0dde2b645c974c0c628c63df8
BLAKE2b-256 9649353d39ac7b0df15fec1c8de3594702c1baa23fef40b06104ae0f4b1bd67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d10d73fc3d0f4f708bbe3f8d319132728f62a4d5c0c0636edee0e712fcce692
MD5 ffd7ed40fe28179406785e831245b43d
BLAKE2b-256 52436d2bca15bccd6dd086529513431ea1b46f8abeaf304959e98d204e703449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a83cd38649028eac6ffb8ca3f4e71b44223ba4df0c225249bf238cd42e4f690a
MD5 6137d0a90abaa319e96f7401a66a7b1d
BLAKE2b-256 0613646f06d9c5949e9827773e9a669808239714e2373265f9de2ab1fb580e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f8339db7f8ccf009d3049015b4176bf3476778c7778d8201bbcd4be7d9cd507
MD5 920e6033eb43c6290efe0ffe8cd82f87
BLAKE2b-256 bd0375358a616203426ef033299a49006fb4be9dcc03c4f1d729a92c03cd2227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 270ad04c7c742807448060c85f632ff523b043ca37b72ec1e5d0b6bc152de366
MD5 67d413d18afe569041ee69efda836511
BLAKE2b-256 a6f86eeaf1264d73e34ecaa9af428e82f684d60a6479eef80dd3158d154ede18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a500d59ba0ec34dfb86a607f72f484258ceb12a09fa9325d42aef663e22a77b8
MD5 f754c62bcb60638363a7aa0f85d77441
BLAKE2b-256 1b8f1754e7ed4d4178962f82b6fa9748128506f38dec8cb36feb510a56e297a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openair_rs_py-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e643b156f105bda27de6817147f7b709075968634fb639ceb9a2a0172c60475f
MD5 b4585b5bccf143fc8f029fab8ddd2329
BLAKE2b-256 4f7da9f5c25dc3fdad325d45d81aed5278742af3e7a863b177e6693c877dcbce

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