Skip to main content

No project description provided

Project description

rxing-python: Python Bindings for the rxing Rust Library

PyPI version Build Status License Python Versions

简体中文 (View in Chinese)

rxing-python provides simple and efficient Python bindings for rxing, a pure Rust port of the popular ZXing multi-format 1D/2D barcode image processing library. This package allows Python developers to easily decode and encode a wide variety of barcode formats using the speed and reliability of Rust.

Features

  • Versatile Decoding: Decode barcodes from various sources:
    • Image file paths (str)
    • Image file content (bytes)
    • Pillow Image objects
    • NumPy ndarray objects
  • Multi-Format Support: Supports a wide range of 1D and 2D barcode symbologies, including:
    • QR Code
    • Data Matrix
    • Aztec
    • PDF417
    • Code 39, Code 93, Code 128
    • EAN-8, EAN-13
    • UPC-A, UPC-E
    • ITF
    • Codabar
    • And more (inherited from rxing)
  • Barcode Encoding: Generate BitMatrix representations for various barcode formats.
  • Convenient BitMatrix Handling:
    • Save BitMatrix directly to image files (PNG, JPEG, etc.).
    • Convert BitMatrix to Pillow Image objects.
    • Convert BitMatrix to NumPy ndarray objects.
    • Get a string representation for console display.
  • Hint System: Utilize decoding and encoding hints for more control over the process.

Installation

You can install rxing-python using pip:

pip install rxing

This will also install the necessary dependencies: Pillow and NumPy. Ensure you have a compatible Rust toolchain if building from source. Pre-built wheels are provided for common platforms.

Quickstart

Here's how you can quickly get started with decoding and encoding barcodes.

Decoding a Barcode

The rxing.decode() function provides a unified interface for decoding.

import rxing
from PIL import Image
import numpy as np

# 1. Decode from an image file path
try:
    result_from_path = rxing.decode("path/to/your/barcode_image.png")
    if result_from_path:
        print(f"Decoded Text (from path): {result_from_path.text}")
        print(f"Format (from path): {result_from_path.barcode_format}")
        # print(f"Points: {result_from_path.result_points}")
except FileNotFoundError:
    print("Error: Image file not found.")
except ValueError as e: # rxing typically raises ValueError for decode errors
    print(f"Error decoding from path: {e}")

# 2. Decode from image bytes
try:
    with open("path/to/your/barcode_image.png", "rb") as f:
        image_bytes = f.read()
    result_from_bytes = rxing.decode(image_bytes)
    if result_from_bytes:
        print(f"Decoded Text (from bytes): {result_from_bytes.text}")
except ValueError as e:
    print(f"Error decoding from bytes: {e}")

# 3. Decode from a Pillow Image object
try:
    pil_image = Image.open("path/to/your/barcode_image.png")
    result_from_pil = rxing.decode(pil_image)
    if result_from_pil:
        print(f"Decoded Text (from PIL): {result_from_pil.text}")
except ValueError as e:
    print(f"Error decoding from PIL Image: {e}")

# 4. Decode from a NumPy array
try:
    # Assuming you have a NumPy array (e.g., from OpenCV or other sources)
    # For demonstration, convert a PIL image to NumPy array
    pil_img_for_numpy = Image.open("path/to/your/barcode_image.png").convert('L') # Grayscale
    numpy_array = np.array(pil_img_for_numpy)
    
    result_from_numpy = rxing.decode(numpy_array)
    if result_from_numpy:
        print(f"Decoded Text (from NumPy): {result_from_numpy.text}")
except ValueError as e:
    print(f"Error decoding from NumPy array: {e}")

# Accessing RXingResult properties
if result_from_path: # Assuming result_from_path was successful
    print(f"\n--- Result Details ---")
    print(f"Text: {result_from_path.text}")
    print(f"Format: {result_from_path.barcode_format}")
    print(f"Raw Bytes: {result_from_path.raw_bytes[:20]}...") # Show first 20 raw bytes
    print(f"Number of Bits: {result_from_path.num_bits}")
    if result_from_path.result_points:
        print(f"Result Points (first point): ({result_from_path.result_points[0].x}, {result_from_path.result_points[0].y})")
    # print(f"Timestamp: {result_from_path.timestamp}")
    # print(f"Metadata: {result_from_path.result_metadata}")

Encoding a Barcode (e.g., QR Code)

The rxing.encode() function creates a BitMatrix representation of the barcode.

import rxing

data_to_encode = "Hello from rxing-python!"
barcode_format = "QR_CODE" # e.g., "QR_CODE", "CODE_128", "EAN_13"

try:
    # Encode data (width and height are hints for rendering, BitMatrix dimensions are module-based)
    # Using larger, more practical default hints for encoding example
    bit_matrix = rxing.encode(data_to_encode, barcode_format, width=256, height=256) 
    print(f"\n--- Encoded BitMatrix ---")
    print(f"Dimensions (modules): {bit_matrix.width}x{bit_matrix.height}")

    # Save the BitMatrix as an image
    output_path = "my_qr_code.png"
    bit_matrix.save(output_path)
    print(f"Saved QR code to: {output_path}")

    # Or convert to a Pillow Image
    pil_image_encoded = bit_matrix.to_pil_image()
    # pil_image_encoded.show() # If you want to display it

    # Or convert to a NumPy array
    numpy_array_encoded = bit_matrix.to_numpy_array()
    # print(f"NumPy array shape: {numpy_array_encoded.shape}")

    # Print a string representation (small barcodes only)
    if bit_matrix.width <= 50 and bit_matrix.height <= 50: # Avoid printing huge matrices
         print("String representation:")
         print(str(bit_matrix))

except ValueError as e:
    print(f"Error encoding: {e}")

API Overview

  • rxing.decode(source, hints=None): Decodes a barcode.
    • source: str, bytes, PIL.Image.Image, or numpy.ndarray.
    • hints (optional): A dict of decoding hints.
    • Returns: RXingResult object or raises ValueError on failure.
  • rxing.encode(data, format, width=5, height=5, hints_dict=None): Encodes data.
    • data: str to encode.
    • format: str barcode format (e.g., "QR_CODE").
    • width, height (optional): Hints for rendered image size. BitMatrix dimensions are module-based.
    • hints_dict (optional): A dict of encoding hints.
    • Returns: BitMatrix object or raises ValueError on failure.
  • rxing.RXingResult: Class representing decoding results.
    • Properties: text, barcode_format, raw_bytes, num_bits, result_points (list of Point), result_metadata, timestamp.
  • rxing.BitMatrix: Class representing the encoded barcode matrix.
    • Properties: width, height (in modules), data (raw boolean matrix).
    • Methods: save(), to_pil_image(), to_numpy_array(), __str__().
  • rxing.Point: Represents a coordinate point.
    • Properties: x, y.
  • rxing.BarcodeFormat: Module-like object containing string constants for barcode formats (e.g., rxing.BarcodeFormat.QR_CODE).

Advanced Usage

Using Hints

Decoding Hints:

# Example: Try harder and only look for QR codes
hints = {
    "TRY_HARDER": True,
    "POSSIBLE_FORMATS": ["QR_CODE"] # Use string format name
}
# result = rxing.decode(source, hints=hints)

Common decode hints include: TRY_HARDER, PURE_BARCODE, POSSIBLE_FORMATS, CHARACTER_SET, ALSO_INVERTED.

Encoding Hints:

# Example: Set QR code error correction level and margin
hints = {
    "ERROR_CORRECTION": "H", # e.g., "L", "M", "Q", "H"
    "MARGIN": 2 # Margin in modules
    # "QR_VERSION": 5 # Specify QR version
}
# bit_matrix = rxing.encode("data", "QR_CODE", hints_dict=hints)

Common encode hints include: ERROR_CORRECTION, CHARACTER_SET, MARGIN, QR_VERSION.

Contributing

Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests. If you plan to contribute, please:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Develop and test your changes.
  4. Ensure your code follows existing style and add tests if applicable.
  5. Submit a pull request.

License

This project is licensed under the Apache-2.0 License - see the LICENSE file for details.

Acknowledgements

  • This project is a Python binding for the excellent rxing library.
  • rxing itself is a port of the original ZXing library.
  • Thanks to the developers of PyO3 and Maturin for enabling easy Rust-Python interoperability.

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

rxing-0.1.0.tar.gz (64.5 kB view details)

Uploaded Source

Built Distributions

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

rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rxing-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rxing-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rxing-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rxing-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

rxing-0.1.0-cp313-cp313-win32.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86

rxing-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rxing-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rxing-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rxing-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rxing-0.1.0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

rxing-0.1.0-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86

rxing-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rxing-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rxing-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rxing-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rxing-0.1.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

rxing-0.1.0-cp311-cp311-win32.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86

rxing-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rxing-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rxing-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rxing-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rxing-0.1.0-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

rxing-0.1.0-cp310-cp310-win32.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86

rxing-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rxing-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rxing-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9Windows x86-64

rxing-0.1.0-cp39-cp39-win32.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86

rxing-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rxing-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rxing-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rxing-0.1.0-cp38-cp38-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8Windows x86-64

rxing-0.1.0-cp38-cp38-win32.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86

rxing-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rxing-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rxing-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rxing-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rxing-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rxing-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rxing-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rxing-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

rxing-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rxing-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file rxing-0.1.0.tar.gz.

File metadata

  • Download URL: rxing-0.1.0.tar.gz
  • Upload date:
  • Size: 64.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4d4963874b04aa697a76aeb050d5b5a0a31a6a707165d285bbe847f4d5fec9b7
MD5 b00ada57b311de7b05bd461db5ebfa23
BLAKE2b-256 6639cb0f0ae4dcd331517b6727d367bfca50baf537d8f163563a42f157cf8cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c75b94897ea7fd824af185c21acbf6b9b3937ceb97b894daaa089ae5a19e603e
MD5 95676b3a65549eea907f5b2684433660
BLAKE2b-256 4fc73077f69a508806a5099da30df9c54bdd4b1c1304f923baa74b3f7027451b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e7822a1a2f606128387a541042cc2dc96f798ab9b97c7fcacce8afa117faa12
MD5 83438b5b36e48ff6c2e6314b00e82ea2
BLAKE2b-256 d0113290e0504e49c1fac8f285ace55b3dd91973d28e685c93393fe3f97a5e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fe8bcacdc74b675f154004e7bdba39caf30d9e3500bc3b90d813f47a2cec289
MD5 4544a32722c288b7e35afd9abc44086a
BLAKE2b-256 1584483b0f03c119630cf717b49ccfac7d1680bcd957fea8665299ef89694980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4dee8c6d270a9e596fea526df8107731e72ea6880b36c6b99c740611feaab1f
MD5 7de718be83f67522bc3a17775dab1de2
BLAKE2b-256 13765028b11775cbe4011f866e85c5b6fa7912d4e8d21265d25c88712f257e8e

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4f980267d5da5ee0436e97d7e0528603030a718c93638734697f8ee08aae9e4
MD5 2c1e4736b0cacaf07364ac16a9f99c08
BLAKE2b-256 2283a99c0e2470e644acf2b8859162456b1cbce2da828797bc1e7eb43cb377f9

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5a9b3b6cb6965ee6269c53aea6aacd11486a06abdfdaa5871add086dcdd60b8
MD5 2e0eedc587405afc0d439721d7be4458
BLAKE2b-256 e0adc42451be5f005197d884cf6cdbda061e7b959b40fdca01b3b2903651e548

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a65d4f8e86183f1cd6e134d64947d75ddc4d16b6734b67e05613113ed79bd738
MD5 1090f0ea5fd109c9acb0c035467c2d2d
BLAKE2b-256 6edd8da78920659df3b34fb825f6c3ece7a96e3d93cc63e7f45f1760486c90f9

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 180b5dfe8800bdee0207dc27b5610cdd61cc6c49a3558096e99a75c14e94931e
MD5 e3d684a9483493663da28b186824b219
BLAKE2b-256 f5c8086afc15cd60b105ace136eb06e8cd410051219635285fb491300f988df7

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f6b231b834c8c3f37d17a73b6f61086f27f73659223b613f40490d33cf8dc77
MD5 3951b14bc3dd791dc65f271c66774cc4
BLAKE2b-256 3aa7da36a33710d3fb1ee2c7144f0960b336130d2fc11dabe1d63c1cbcdcff27

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63325a9f292fb9d25e55baf328388a2bb0ec94f33b1fa2b651e3d041f4e6acbf
MD5 2bab90391047620ca4bdaa4ebdd9c87d
BLAKE2b-256 04c28b0b40e7d1f4e20f4c72b1f9aeb2729cc1eb4517c21ed928370e08f9f60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bb4182b2fb49e14ba4f42b5cbb5f137fa69f87f02cb6d83b4b589da467977f1
MD5 417ff90f41cc43ed5324c9ca0b2c0c8c
BLAKE2b-256 6b6432b38a8b837ecf10c7ddf42bd865e6bc297b54fc01c0edf355f1bd0efdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 455a894fb144bf11de716d7f4452c9e398cbc41097d72adfde76593f501c4799
MD5 737a8f454553771f7288af4c9eba4582
BLAKE2b-256 8e605a8bd4720d8c605ade34ccbbaf7dd651a104069af2da7c9b737dc3d0f6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a49a5c91b1f6583db07a30d40bc1743a6ab332f12a04ffd2dc2bdb4ce8979cb3
MD5 9d63d88e38f27a08b223a76f8ae76c74
BLAKE2b-256 bdb84ee62641f5a32898d4bcacb98fcca32905466fdea369f0f97efdcad74481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b631d7f568e0454cf2d0f1f18a67a67aee7220464ff02f564340b493e3aae850
MD5 48c0e39877bf21520a20ebbe2b684414
BLAKE2b-256 5e557c09df7cdf37e6ae2a73f4f15ba96d0db508b18d9cbe806ecca5896f1bc6

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e214dcdab8c2fd013b5bb5f361b5feeceb4b6d5d96e75cfe2d7bc24af989208
MD5 f9a899ebdd526875cec6327a1ec4daf7
BLAKE2b-256 214c2361b8bc45fc2eca76ffad88647eb11580d073cdaa84ef80747135e2ed97

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5d6cae412c8eb4dd5e9e33f9388ac067c56409ea93aa1b6b11a2a45a4cffd1d
MD5 560ccb04b296aa8a3032e72fecdd4290
BLAKE2b-256 147c2896e1b746fbbaf03839a3cb7e76ef2e5f9564540ff71dd9a71c9d8ad381

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef5d1cfcbb710172d3c9aaf8ccaeb2cf6872afecdfda1b05974f83b592281f64
MD5 98db498bb0aa0266a051619e3777d7d7
BLAKE2b-256 9fb8c5dccaa83018a33713373a376a6db9ff9a79529affa3734be510247ced0e

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64fc4e8c2c791d8a852159b21da0e70d237bb5aa5a3c7e7b8cb04d4400073c75
MD5 4fd2228af36cbbdd0f119063c8963bc1
BLAKE2b-256 6e73fef1f5cd2f36c137f13f9e0e9d68ed204e77352111de6c9c656e2d8e19d3

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5815f2f0c81a6f57d7f1ffb4fdf88dd3a91b98a56b2d8eadb1715f5954a67cbc
MD5 3db40e9b82a57df6989f2130a0f57458
BLAKE2b-256 0f850f98990ae8702dd7097cc4a07d7c26ebf5e8be79961aaf0f852a26690382

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 273722277505efeefb2a58d191f5a1722d9678eea2c434120d9399908ae48424
MD5 648c3b37c59da176013ba56109d05a0f
BLAKE2b-256 8c4fd24b6ac9de819ddb19d835fe42e9a81d851049a461f4401c2be3e3d7709a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3867e42de101a7f13e491d9df04dd9a94d81114852f68ea2a3a36763f84b42bb
MD5 dcb80833db347cce11d5be5c01b53f53
BLAKE2b-256 0fcfe686d2574bfb2fe9daa7b44c2af0b44a71434ffd96b7338aa400ab2111b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 029c09ea2c51f06362aa50d7479ef4933cd0ebf8b40a38ca8e786f8ee6cefedd
MD5 7627b96887e8aaaf13c397f59f57f2be
BLAKE2b-256 85965b07c5eeb721b90567dfb77bfaf825dbbc2c6c1bfbe816f8348a538b2813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ddf09c5390579f72b69e92adc7a04d9b87cef74fa399e220a8a5751b25a804c
MD5 8668e6148d0f932140bf440cabd7f225
BLAKE2b-256 1bfa9f5174cf25c4e6d45e3fa3a69616aa0629ac09c8d83dee4b10fef40ca6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1adaad2db950d20b212cdae9c5ab357757145eccc872d9cb5cdd4df61bac544
MD5 5d46eae086d7a203406bc6b1c9a8fe29
BLAKE2b-256 c0e17e99102547dda5adec9e9df5acb7d4d5e8c8651ebc926ae04580b1fb5ff2

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14c9a2e2c7192a8050f8a97ce7241241e002a705e798892ee03921e68cb19ecf
MD5 8dafc154109f15cfe26a9a5f464ed4de
BLAKE2b-256 bc7e503cae37e5aee8cb9cf282c094da2ec8fd7fcdb1a50d2c1057a0c5c613a2

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e83a98284351e18c135d93567e7226820750a97850384baaed97f56e1a910a05
MD5 a0c57d69f09e76aef244ae650cc40710
BLAKE2b-256 d1593bd31abcf93f40bdce78849ba01404115aa4c6bd32ce751da866a2f56263

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be7a5563fb1d250e4015953bb578ab952a703cd709d650828964718137b7fe3b
MD5 f3db6a88432c4c11c310de874acea51a
BLAKE2b-256 aaba3b07772a2117b7f8649caeeff891526b599728fe3262747ecd22ee11c15c

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1a34d2bb0fdb9be371b21c575403acedefc848537569736ffa7cf7675019707
MD5 d78f1f1f6a68b35b09cfdc3513ae2c9e
BLAKE2b-256 fa73fb790ab0a333ff6388b7927f03d6fc38d72b3379c8c48b2dde5ee2fb079c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5004e5ac24b0f8c7cf187e9080c4f38f37ae9b932a1798323c64c99534c6724d
MD5 7c861ec26c043dfb9dc1a558585c8f92
BLAKE2b-256 95000e8735393cf3b5269d55d918aa245f53764b33e89ede4207fd0430fe80ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59b46a7d5d415dcf7240f71f846f3fcf54b98d9f244af1488f60dfafa8c7da28
MD5 9851f70cc788764fbfa5d8513ab7dc18
BLAKE2b-256 6b720c627d528015027ec13e9b5d3d1be882216de7fd4edbc699a3d8374983a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 665de239be169983e83ec6040235645f70c66e0527c74e881120c9db3986d914
MD5 e8067c458fc8276c2cb2343df787942e
BLAKE2b-256 c629ca71c8bac002dc8bd3c619447d1aebbf60ea57b79c4d31dd87330fc89623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 693c62de11c2686700c4f5bb315519409b6834ce211024c8620971f413d07c2e
MD5 724ef50d326cefe49af3b320b98c2e5e
BLAKE2b-256 d56c221edca00fe27b336f8baf172c1b2999ab6883d75ec55b480be93d8c0cfa

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88d5f4226a5a4a64b096af02c8ad2f726ed71e97f56735d7730e7a91a648081b
MD5 93838b1ef03acdda3d6e5c92ef53b8f4
BLAKE2b-256 a6f51ada6360263411558ad0fba51c8f699e907494c7658b651a0d19d3e37a01

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0681b9ae262f44179d64907d605203c774f351a61ccd626d95e5736525f46356
MD5 52363972c78df759f309480243521e70
BLAKE2b-256 85dbafaa5d8e82dc0cdeb832817969fbe4c8ebc25a6f65f4ed16909a31d1637b

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85b76e59a02b0cc245a87e08e04a88056ec9eb2787c08ea01d1594f71a446798
MD5 74704af630e39a7d2b61768f840e74f1
BLAKE2b-256 b71b837d80c2d42b8edc9153938c035b76a778d407e64d474db4597cbf757990

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd82e22770188c4b8d308da937ed757a1182b5d974fa90fae36655e9902df842
MD5 1e58065f9cd9fbee53ab0a713b5e60e7
BLAKE2b-256 2d2f33c6d650d068dd78c73b6a5876dfd6200be1a264f8725413f871bf04c38c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 85833fc58d03b20fdc3b3e05afc2ba1087624fcbb9fa5806aeb0b92c4bb86be7
MD5 8b8330dcc878754fc8d439745bfe81fa
BLAKE2b-256 4f7099ce1f52f7076ad75ca6be60f41f5d53f2b95b1b838d1a57a774714bcade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 59e24d7a5dacc625cc20867acf1f5a4756a2af75fb53f0bbe7613cd3bf99769d
MD5 e003be1d65b805bf3e84a987fb9a44fd
BLAKE2b-256 1746efaf3c1348c193efc8f23121051adbc1ef1db99af8b9b1bb759cb075695f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c7a51026313f6f62aa085d2b30683348b27195327b04f8722f049ce65225f2f
MD5 468c5eb34a6e1b6b241d67edc9180fcc
BLAKE2b-256 73a6aa560fca1ed0f052fd7c04b7610b6076c5b5cd8bc3a33760fe4c973e1005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74931d22e7fc720e6b66412c4bf5cecc60954786da4c41e308f54db7f331ce32
MD5 44d87d3a99d0b94e9a35fd8a003fad80
BLAKE2b-256 c8f9fa5e760240436e89b2bb406648eca9cb858a83b54f95fc400616c4415e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b2214e587301a49708012936b4a1fce13b1b7b10f43816fa9c5b4d370268abe
MD5 2e6a596d8a7cbbfe33a97a1ffba9a23e
BLAKE2b-256 1b64e71459704b1f1e33bf7c2e3a9e8d653dad6e5ccc0cbecc8388495969d380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9c562b14940d647146f33d156d5c8c819960f8dec2561c0866161665aba06fe
MD5 b501361d2030bf4332847d1a727bc5dd
BLAKE2b-256 0fc598f4aab8a0f4ac8900f3154f3a28a00019b054f190b95de48766e91e0cb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b3b77ba6df8d093e9aee1136004f7cd0d689cf42f505856a1f163eac2e904f8
MD5 5ef664ea0743e0d5f4bc36eabb673bb1
BLAKE2b-256 8adb20db59358a2f62fa392023fe449ca904ff3b5ebcd3046489944d0e0115c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f14009f566a0f7098c29703e27bea615e6e3e4069276f1cbdf9b8f8ba597b27
MD5 8121a1b709abe590f9ba2401609a8c37
BLAKE2b-256 316209ced94cd77d65318fae5d94e9ecd0a8f4b96b00856f9cc51be479cd738f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63108dc24d4e45a8911da089620602bfaacc5958fb82ba52d7040eef0db54440
MD5 e4f1970e6700b0bcb376602550f92945
BLAKE2b-256 8d77156043c6d7da064029cf868732d1fa98719379fed522b06c432e10ed748a

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79d3a8391f3a7d9e76c69c2e5062751ff1e5d73d5597f4f397a1cb39bd99d98a
MD5 f9530ac4f665133689c2ea21696aefdb
BLAKE2b-256 d4eb81e5f31594f5512436abd8be1fb9b5c18789786a20c3034a9cade9fe73c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 469bb69693c1fcfbd813e0ccc89c1da1987ff8d5e109a10ea565ac3bb7e6e8c2
MD5 efd7fef1ad6f8c94360d6f488ca76d0c
BLAKE2b-256 b12e02fc6e2bc3eae10e11cc725d3ca0118a368733cc99f98efaf19dbb2b2776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d50be1f04f44e3a86a93d9f0f7974a5dc4b6bbc21d98a484e718e16ba7c5c4c
MD5 8ae7c497ed3970aed5c5d40ef9587082
BLAKE2b-256 762bdefe48aadb1d36178c980c5a9a13d547f7f734ca427ddcd39799870b73c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 341670caed35994b68a5aa43a9f839304d1a2c87f57046eb9b410b97041019d0
MD5 4c656610c8506ebd4deecb62e54df30d
BLAKE2b-256 8db905c7d393a498f36a745add17b43097fc78fd54afe915a327733977d15fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0dbaba695c6fe4d7636c0aa899bc95be8655aad0ad9d69a0b66902f7d771f25
MD5 d12509a0e0a5a321719d06b17c547291
BLAKE2b-256 f3fb275368d4a1db2a517e0879dbb6e211e94c831a33c6a762654101e81bc779

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ced21f6b92ef1fde91d6487ed2af6733a512e9ae40e49299477fa3ad3799f30
MD5 7dafd749fbe8531337bbb22382bb6f19
BLAKE2b-256 569b58d5187b1960069d8781843c31b2d59d2992f4928130e636932b25e8f242

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 09ebbd0c05c167e490832c25a24ba49cb7edbfbd319b6ff22aab0690bb868ff2
MD5 20f5f293d0ad541ad0269ee96bed1c5c
BLAKE2b-256 26d716940771899a1eaab71dcf465cd21993295e4bc686265269a1a02a6dd328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 060105d436ac74c12df25cad7a31fcb3a2b690ae3a61a81554514ea46a4308c4
MD5 48ef5a87842b92cc6bfc398f5ee5fb85
BLAKE2b-256 474688047a04edc3c020d96eb92d4ce976ab8d89b2b333ae3ddea6b39a06bf88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bddadcdf033659f54a795defab8ad7ea11394e2d4c44281306b0bf80c989e955
MD5 5851b62ae97e820d511f6f30e3be79c9
BLAKE2b-256 e47b3883217ec654cc8a48f837d9f8f3b9f71a2821ffd9c2f9fcd95f81adc26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11275fc3611d5a606d89ce63633909e0e8da4287ea8f875940ac56493ddaf18f
MD5 234d37f87fc724ef668831c46c972269
BLAKE2b-256 9035ca5ac2bcdd51686042aa4cbc64cd9354ac768725df2af2768279880cd9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cd4aa55dd736fce37270396aca71121f2058ee4489f7a0cf8ec6ff9a00b9b00
MD5 134e1bb8a720edcfc9b99da250a85ebb
BLAKE2b-256 8310e6dd8d958a0ffbef08314c5ccd4f8489220c0804d1c1c337531804bafed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e40767e828dd350a221113859e16215268bd83f86277d7c367fc93e5f9d6afd
MD5 f25073b697b8313acff2ca30e75e7a0f
BLAKE2b-256 776c82d584765c8502c5fe5171c4d7da749b9c7525f2faa72351485508e4df3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11d17dccc4687e38dcf6c5a327c9599c3bc952198eeb5352f9454470025f098b
MD5 31e00ff98e20b2862687435f3e551478
BLAKE2b-256 23018443a56bb4f44ce1be6ced6661d943b2d126567690ed89c9d391077ede04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90df640e8afc9779c2fe565ff6a61b068d7eb13fe3d34495d4e5dd0703348e5f
MD5 8a238500aa797ec9e803fd338f994484
BLAKE2b-256 aba4be16c50b9175f53b59b25ca253345bf66cc76f5afa07c02c9baa99a07c92

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dcee771fc5db33505b3e58148fba0141560a09b64916f19ddc12e5c42f3c611
MD5 1c92e7c3bbf3dfecfc6f0550372ea7a7
BLAKE2b-256 eab1c9edba837f6e7ed1b452670e9aac317719072e4d360868b5907846931216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c2fff4aa87bd598544c2ff1583e48a219fa19d4ccf04facec630e5040e7929f
MD5 1e2cdcb8c39eb458ff24b63fe6bf9921
BLAKE2b-256 01214b4832be008cd2f1541718790cb7671c0d848028ba24254a5cbe51463ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 684c4939d67029d1afc291d3dcfc3dfec99c30018f8377f20ad45449b058c71b
MD5 7e433a73fcdd073d49c516346e4a8f02
BLAKE2b-256 fc71f4e075503962a094ea0ea392f96a31ae7747559e5e899c93657272218317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5399631595aca43768080c5445f478668a90b6e6d0ec0ad1f0f621ceba72aa88
MD5 6740876cc85f808740cd8584f58b61dc
BLAKE2b-256 0d2ebec1c804a9e181b598d32cc007598d10ed71d8253eb2f4ada3629deea2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d6d8c683e33b5b1176e32ef9d3c6afcb408c2a4ae3b1de69091507ba05d3ffa
MD5 6eceb2b9365e6804ab2d91acef702f78
BLAKE2b-256 8a169617012649efdff8226d4e7eaf7b8b7a258e1b27b1fc3aa5a66d502096d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52ab568ee99f73193f3480b521ee4e570a9624c1716f3a29e8741afa95f714ce
MD5 eb92aaa7ad92ffec34e8b0e7ee537921
BLAKE2b-256 3b10ffc1c068d854a7c8cc09b8c83d6044ccac0cd99612fb91f827e567bafc51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 044b33a867a80766f1ad494cdb3d7a45e453a85c4e15f8c7db45c4b3203f3f08
MD5 18def60e1a66fbce0e64c9144d34d69f
BLAKE2b-256 724614fecb7e130558db540c8aaa1efc9e82fbc8816dda9744e7fc06ed1d0379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61534160e3711b0b780114eff176556bda2a9bd108031fd38693dac3af864641
MD5 d8b2553f37e6a2086b4d3dc8d41e82ef
BLAKE2b-256 dec92b8cc3f877e39f348f0d82074d3f4e1b36e247f56befe995fac2bbd8acf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f532802f4b8e70fc3a771d1642becbf12601361b06039208aaa69945d275e2bd
MD5 d8a9929a481b59fc908eaa7124e859d8
BLAKE2b-256 ed4c01d4ab1010a71576d82c2fa6d391b401e6bf0fe02062b4e6543cebcece63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d32c8859a326cceb3d8a4b97858b0969baa10b38dc17af82faafbbc21489d7c
MD5 72ed9eee6f424a670cf1129cd41b5c05
BLAKE2b-256 c1b1eb5349527155dc1845ba8ba1c6932685bddac8604768240a7d7248e4fb10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 430bbf75a036ff1da311d474d2b5b8f1c23cb2d63a109c2ff20c9b2f069d9880
MD5 3a529a99a4cca3f77b3f37c84be3b694
BLAKE2b-256 14f98afe651c974ca8f680843a42dd94d17570c053a425e4f248ac4eb616fa66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73a1ea16a6e1d4bf19bbd52bff27d870e5f4e79c47b3c9f8012ba2055ccaba45
MD5 be240fbbdfcb5e713f2a9c277210515b
BLAKE2b-256 dfdd16e8d4bdf8e6c741ad376784aea0b1e43a3ae1cdfdda1a8bc04fff87e497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51e89bf551d988af0ef0b5d145962c3557f53eb0b0e9d194d885fdd5dfd261b9
MD5 8c1a9b1d163ed2faf8a60655e07ff323
BLAKE2b-256 6ab683b445d65b05a6d9d9195e6c1c41ca6530fd1da7b034feaefa0e8b002224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df64412a8720847406fea08722fc2f573f7cfcd14f79ca8b0dba1c50ceb5f354
MD5 ca68cf90db08514fd84d68d49d8e6d35
BLAKE2b-256 f94e7e2ed33be3927d3e269defe0e6d9c96ba19ff5e0d1af1cf94b666c0bbf10

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1058e423e1d9e41339f889690a41341ab908d696620781733f110ddaf33d47d2
MD5 7fee5f8eb0fcebdf2e3c1ca044ffd4bb
BLAKE2b-256 c6fc2e1a278b3a4e1152353297a6f901f51c862aa892153bb73cb2c8794b2076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 161793e21e34b4d144725da07bda2e3687135d036471aec2c7a9a165ab6ef821
MD5 8f76e6aa5ea000d48c43b6f23a180d83
BLAKE2b-256 2f221d9b786d65f9d6a5148b223323d858d887bd62636d10a3a795a67ce32277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1d81b98cada9c8214e14e4743158c2fea81f7ca7943ac5bd59a22e7846615d8
MD5 eb8b1103ec9c486365a3affcf520949c
BLAKE2b-256 6f137ea2d05d8c76a43181ca8d87e5c7a523fd522c62253e2daab94a3fcf084a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a01efc83086f0140d1d0bea053a58468f43c9713970c1ed4a86f46f6966c947
MD5 6f966a3d950164b44e155a3fd3494b49
BLAKE2b-256 2da473779b14586c3f69169082060687c985f4d1514d5cef05377763b862dcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d03bf97ca502ca073ad3b249c8d3c572258eadf4c901d0a8b9a7a3bf33a0902
MD5 e3e65508e37d0379b689ea6b5d1f6e47
BLAKE2b-256 16a91a361789c3bf40703e464bcbad0e24d97b501c11f703b9692a71f3219a90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43739d7d8e4196c18e0b63928148095ec187046a64587a911183cf7a450413cb
MD5 950b74e53b135e1447ae35f3e982245b
BLAKE2b-256 054ca63a982eae81d44693e08497075f9fea8efbdbee4aa52e8117304702b23f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d7e4b96d9aa006c0ee99748e179515ba1680c12c7d7f62c63c18000ee08ec2d5
MD5 d45f624f0231b7a5abf0e85482ff610f
BLAKE2b-256 29c35da5b5f3ee3ffb3cc6f34e62fcdf82afbcc14a30e52c2fffd20d5fd8d91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc6b0c9153227c3a29d50f73810f4f01ab05e45029abef4a56d196c54ca0c220
MD5 449e861687b7e5c9961caac2bc96b8fa
BLAKE2b-256 5427eb615956f4ff46e7cb9e2b12b7da08cedbeebb6636bdb90eac5acc6eb319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e0234fda29cfc74596d2a8c56923e346ae74efb14d50859824aa6a549324385
MD5 a9f414593de89ff0f4aeda15865c2e6d
BLAKE2b-256 69c96c20d21cb930693fb512c6b8eb7eb0829b8c523b17a5bd1217f275cb73cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66a884d29c7406eafbb84e413f9ac5a131ca0866a7d949d3aab3e1d5e5c4b28d
MD5 1204070a34a6004477d97b776aa75dd1
BLAKE2b-256 7f3e8c6d61f045ac433af80fde4258eb1afa2b746872689c8a44898922c51283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb1d7157ff77959e5dce41a00f780e31a5d2c746c38044b2f5f4df62380fe052
MD5 5eba357395765bfb3d70002a984a06dd
BLAKE2b-256 4d8c581a113da3b869af02eba22698648ff9400349052a914f09975370a81cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 657d39ea1af8d65a4b992d349fd07af8f35953221c4df5ec3718dee781fe2fa5
MD5 069887171a1297b030be6c23bed6a175
BLAKE2b-256 b71e736ded6663b2972482391fa9828bc44faeb14047e50e788e849999d50e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9447a4fdf0f5ca9f3683e6853527880e72689f5f9a3167805bf5dbc65ce3e94
MD5 0ec113075c05324db1a4915f3bc141c5
BLAKE2b-256 7cb13322d0889d3e95b17b0400d9d3a3794fac3d956931f053581bd555523d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76222606a78e8cccfdbf6767bf1cb40fb921f54dcc2e5980835ab16a7e9c2575
MD5 0a7a05d3c149b6592823526d762d5c87
BLAKE2b-256 8ade193c72684a5ecd0278e6976f60133ad57511d1571fb66484b19b968f67c6

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb61472787b745ef27a6d7cea4dc1d627479b3fa7208bbdb2ce219bd5ea34e6e
MD5 6b43c3dc1aac9d75d0372bd6ecf5af7c
BLAKE2b-256 00798b798d77a6babddb80cccb37a26d128bf14a6f54531f00b1f1bedde8e1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92b6255a3689ff7355168d84e7a6b2896289a8fc07bd11050afb7a98ef84854f
MD5 4c0d41f4c5ef626682f220056e54574c
BLAKE2b-256 e1f189da05ecce5bc24db59af7b3a4345455acc51c0cc6fb63c92b87c0a0d25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24203da4e5d2524b7f7a1b11944e92a4b597d7579a69d00ee8b67895d22af7ae
MD5 55ec7f2ba0faa11ec9354711a8f520fe
BLAKE2b-256 ae7363174e4423dbcd8cc5e82f5c2958c23846a77bd8d61e97a978c7ce181e76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1db74d44cfab2b2c06da6f65aba7872ecc9ba9884f04f7f6babd015470b367a1
MD5 c367cac1c7ddee87c7d09193af15def2
BLAKE2b-256 ad6afcf0eb1a0f8acd77ded1c3e79271d3774da2105731831f508879c4caf21b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 732ddf4af18a47968de8894e7579780646d272b8aabbb19c6ade3fc1da20f6a2
MD5 eb85d2ff43327ac44c21f394eb71ac4e
BLAKE2b-256 e8f04e68dd9c7e790bd87e4513efba362d5010000e59e5b3cd2bf4e11c486cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14bca1d9681ef459b2aa15a57e9924b65d1f0fdd9f47225fe0ce38f7293e9fe3
MD5 78f9ce05cc392811844a352e192ac023
BLAKE2b-256 2d612ba653279c832e7a6627bca526d0740eaf44634e4887698461d8632a1e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd59d263ac39bae9c3e4f582af4bb7cb710c7440c9aa4bb85215f61c85ed6a06
MD5 76ff13a28c4d34a7090d643bc5711a96
BLAKE2b-256 1eed598bac2b70f3e4773811e0099eb6f30e115dad1d765c966fb2ddc66257b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed80514d2005e46c152d56934e55d40a1067b1ea603f7f6142104ac8e6311fa2
MD5 2dc6c081dd1b6c42f42225b9334d5502
BLAKE2b-256 df23fec0964bef73f7f36dcaf59f7f4f18ab0c7419e7ea9420836e29cc8300a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d1ec6b90b52cd4c8deb176a197fc6a750ba9f39730da6da80361ad9c5af7319
MD5 36ae23a29d5f17693d34501a1090b546
BLAKE2b-256 a3a2d129e404d3b87c93f458911bb4f3ee9361f9e2bbdb365449a2bc85550dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c2381433ada705cefce63fa6588f5d0b7af4d6b70d0b6a079932c1791234557
MD5 b5659286529218e83b6f4a164b3faf5e
BLAKE2b-256 12b208815ff27113853bb59571d690535a195164735e2c4e7139dac0b02f8a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 332bcd20868b1f6d57d3b61576d94098e8ef7ea346d613a5b1765eee3657cdea
MD5 5c72ac3863b488aae991f3b48427554b
BLAKE2b-256 02b90aec3d6680fb076e91322bbf6a1d56af92da4ee1b216093762cb201f466c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac7966290491d917e3137a91903c081087d7a600f38a82f3e89ed38472132dbe
MD5 b4daeb7815730a5e01f9cacbbb6027cd
BLAKE2b-256 b5ab14e04b7f7ac5ec5efd67059c48c0357428af8bf63aeb4227e43c6fabfdb4

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1da2560d5f28356084a03b40c1eaa83a04e1392561a23bcc4c65b7479ec701d0
MD5 90b4af1f40098b670dbc6c729b8da2ef
BLAKE2b-256 4cd3fd560889a395e3fefb3cba742153b482cdaa46efebc7e0c1dbcbb21204af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41358f8c8c4f454f66d47348cf2aaff84b857183c3134e2cce0ba4700cf87293
MD5 9862804dc30cda02d06c66786a00284e
BLAKE2b-256 bfecb1db40a8b8a4b5d2c9550defb0b51fa335246714414b33a1092a2b005397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf99d0ee92ac42e5c7effdc3ea427a4b5b3721b554d3530fd619f9005a8b4853
MD5 15fba8931f9bc9f4fdaf0cd46f9b7351
BLAKE2b-256 8d49276caf44f313575a59fbed5cc93798391b7359d9d33cba85455ebb7ff7e1

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rxing-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0245f3e9609edaeca54602dbc03a3a0a8f793a5936c004848416a2e44af19301
MD5 bb9cf2fc942014e2c93f7d27c9d5b9af
BLAKE2b-256 9e78d57121cd0573fef7d3f2bb78f6e0552984ad04e99cf7a940e6635718c9a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rxing-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for rxing-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c676a46d48ec30e7279701e760fbb34f8308da66cd6f51fe9574456f594979f3
MD5 0c18dda0ede2fd6808e5b03bed372a64
BLAKE2b-256 57e7e7ef5daeae51c6d9a38ff4f0aaf4416c7bda59bd8d5b33ee3e9046c93d60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed6c13042bb4511669757df263785184633d4c11440331a89e55cbf2f31f58db
MD5 1dd3f8905ebf27c832bf205398601756
BLAKE2b-256 25311bba34b17cb8d9bf9568e51646c3826f866921c8abc39e67fb8d99734ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc8b31563beabefafcc5b71a0de796aea8f3e5dbdd675135ed8f3ace014f8c18
MD5 089610a95ddfbf32978650a1bab27e8a
BLAKE2b-256 ebc8aac9b748f5e50e4bfce5893e282567c505a758d392f1c8885915250fea41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a289c11f1c2caa954069e324c1aee9c184183f5816d81a860fb299d7a08bd11
MD5 7cbc08e74f3cfd793984628c9d165514
BLAKE2b-256 e8d40f6f6cf1a3c1e41e6c46b4c5b9bacd3c9ca2772a81a3c0fe9e90a86ff729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d0fcdaaae1b3a0ca97c33b8d023dcdea53b435fdea75286b276dccbfae1b511
MD5 5e50ea04106aba1192318ea432829c46
BLAKE2b-256 c7fcb3ac71720832a83d07c2633353fb526c82658660720e0b2e8fa0b66adffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a072c219cc6cf1dc15f37e02b96e4fca8360f1ef6711ba079b12d1b80cf98eef
MD5 d7b808f15aacca0b37ab75ed32512476
BLAKE2b-256 b305709bc8803049d7259d86dcda91ef0150e9d5d9f7acdb5ade9dc335f953ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6d97728f9771a0afc1c29400c319e36077b59541505dedbb81fc7211ce1def7
MD5 9dc818bb9845fa2d48aa016e74369d58
BLAKE2b-256 eb9faa6449fba8bdac9478ba814dca70df88496386d26498d3c821512c2e3284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f594820770853b79be36720b515731a1d8d65358e04f8616bc07fea08c1f4b9a
MD5 cbfd216ab3e22ae79adbc03c8a7f9bdc
BLAKE2b-256 e1ce05c1c5dc3cae6438b24d399363b4dddae91721db3b5100d2fdde05ce12cd

See more details on using hashes here.

File details

Details for the file rxing-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 929130a76c1cf537ed0f65baeaa6b62cdfafb31f7505a8d5f46cf7bf4bc0efc3
MD5 a894b8b4d6f617462bcb38fcbce848fa
BLAKE2b-256 ad72b5e13df875db39bbee3797375a53f49ce4a6cd11c6cd498af08c22c88b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba12b2b5b818f23058cde1363658dea50b884379e17a510c086b84ece1963f30
MD5 58b32403e10a29d9867f0f1efaae5631
BLAKE2b-256 48664cffaf5d5f383126bcaace877e74db0a285c38bcd9940091f1b00f52c0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rxing-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84b8f0ce37a19c002255205ef17b9f1423475f96dd19d1feb4ecd4a00dd9ac2d
MD5 dae6c928d3570957567247182ef1c646
BLAKE2b-256 99311212cabed44cc59a2daa2f496a122eb5891de58b11b5ae315705f578e913

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