Skip to main content

Python bindings for pure-magic crate, a pure Rust re-implementation of libmagic

Project description

PyPI - Version GitHub Actions Workflow Status GitHub License

Pure Rust Python Bindings for File Type Detection

pure-magic-rs is a Python module that provides bindings to the pure-magic crate, allowing you to detect file types, MIME types, and other metadata using a pure Rust alternative to the C libmagic library. This module uses an embedded magic database, so everything works out-of-the-box with no need of a compiled database or magic rule files.

Features

  • Pure Rust implementation: No C dependencies, easily cross-compilable for great compatibility
  • Embedded magic database: No database file or magic rules needed
  • Detect file types from buffers or files
  • Retrieve MIME types, creator codes, and file extensions
  • Convert results to Python dictionaries for easy integration
  • Supports both "first match", "best match" and "all matches" detection strategies

Installation

pip install pure-magic-rs

Usage

Initializing the Database

from pure_magic_rs import MagicDb
# Initialize the Magic database (uses embedded database)
db = MagicDb()

Detecting File Types from Buffers

# Detect the first match for a buffer (e.g., PNG data)
png_data = b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90wS\xde\x00'
result = db.first_magic_buffer(png_data, None)
print(f"Detected: {result.message} (MIME: {result.mime_type})")
# Detect the best match for a buffer
result = db.best_magic_buffer(png_data)
print(f"Best match: {result.message}")
# Get all possible matches for a buffer
results = db.all_magics_buffer(png_data)
for r in results:
    print(f"Match: {r.message}, MIME: {r.mime_type}, Strength: {r.strength}")

Detecting File Types from Files

# Detect the first match for a file
result = db.first_magic_file("example.png")
print(f"File type: {result.message}, Extensions: {result.extensions}")
# Detect the best match for a file
result = db.best_magic_file("example.png")
print(f"Best match: {result.message}")
# Get all possible matches for a file
results = db.all_magics_file("example.png")
for r in results:
    print(f"Match: {r.message}, MIME: {r.mime_type}")

Converting Results to Dictionaries

result = db.first_magic_buffer(png_data, None)
result_dict = result.to_dict()
print(result_dict)
# Output: {'source': None, 'message': 'PNG image data', 'mime_type': 'image/png', ...}

Handling Errors

try:
    result = db.first_magic_file("nonexistent_file.txt")
except IOError as e:
    print(f"Error opening file: {e}")

License

This project is licensed under the GPL-3 License.

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

pure_magic_rs-0.2.0.tar.gz (646.0 kB view details)

Uploaded Source

Built Distributions

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

pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pure_magic_rs-0.2.0-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pure_magic_rs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pure_magic_rs-0.2.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pure_magic_rs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pure_magic_rs-0.2.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pure_magic_rs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pure_magic_rs-0.2.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file pure_magic_rs-0.2.0.tar.gz.

File metadata

  • Download URL: pure_magic_rs-0.2.0.tar.gz
  • Upload date:
  • Size: 646.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for pure_magic_rs-0.2.0.tar.gz
Algorithm Hash digest
SHA256 96506397558b55fec072effa77c376dd92df41f62b4b87ef63f82bb9f97093a3
MD5 b1804d76b993796c15d57f6514a62128
BLAKE2b-256 ce8791ccea732345ae783eda8728afc402c7038fcbc3ef4a0c6298826ddfe629

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a64d16b20b12c2276bdde6253f6e306760e9515818ecca21202d21ab9e3c7a3
MD5 34541b20441f2389dca61ff10835de2a
BLAKE2b-256 bc07a110f185c843ad3e7a7d4fcfa2a84ad0cbcf6189caabe5064475fc2dd88d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb259999fa1e077553b1aeb0bb9a260fc94451df27cdf16e337d47461bfb498d
MD5 5dec7732636288667c93c0212c497fce
BLAKE2b-256 7c18ced095eacc8573269da8feb163a9dc9ce8a45af0712fb14e856735408e15

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85103d28e97200328387dae05c9fd3a5d5bebedc05aa6d61229143d3e2d8be3e
MD5 a8bf95a6ac4c961eccfe9971c3dc293b
BLAKE2b-256 76a2957f90b8f1871136e094d060460d3b15c8bd3e1cfb44ea2f5ed4c1e2ce71

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2050dd5f8ff4bf03ead3ae5662357dafead030bdada25f18f293791c798a73d1
MD5 c2bd75d5087e39a8732a99cbb97ac376
BLAKE2b-256 f9ff2c19196139180afec0ee0fd0a46bf800cce2441fafac3528ffd14da731a1

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d49dbc2142f7c57c8f559cc85db3e83108121007a2839d71689c763a3239fc5f
MD5 ebf50a93430c72f5f692a67a4352f094
BLAKE2b-256 deaa122c97458f3e83c320f8d3f6e7bfbba49c6641b01d918f8c3427828a6876

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf479a20b73dfad5b118c6a750ca84fd510ce231433069c1a3afccd86d8034c5
MD5 fb820dc306001c69d9aae0516ae6aa83
BLAKE2b-256 a927d1af2002e9a8c3059cf5c199d068fe07c4b1822feabaaa297905a7fb703c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29f6e7977cb2deab575911f4096eac02fff3a9538f4fd9fc00a709ec9e756d23
MD5 95326294524aa785f8e81a7c96abb3bb
BLAKE2b-256 0996f3a91a7ab1849f620d6cfd5c7169dbb95acc16b9d794e65fc31aca6a6961

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98abc0ae2cbf7d09008503a4f0c8aed9860038457b55551f7087ac1a3526eb22
MD5 7bcbbb1135c7c7db06fb1410b7d5106e
BLAKE2b-256 c818207b8c4bcb0f1a60154168b092f17e91dd8f8eb66125fd6025302c3f6e5b

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c73165489544e85935eedd1b2878469e95763199b48df6b8b805acd6f6520620
MD5 5d5c49fb42fe37857adb00caf6b675c9
BLAKE2b-256 3f08b292f116b64003fa08a9fbed7f8afaae4907a23de42e87db1c3ce18b184c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07da326f1b1ae40ee7534cf5c1c01dceabf7a537a9025da53a266d18da7db73e
MD5 c12d65c911b00e3381621b2b7123243a
BLAKE2b-256 e175e3131fe34bdb4317636ecc72ae576a13f2231dbbe1498ad4f7fe6724a703

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3472a2ca8af6a1185d86f27d613342acdff02292453abe3edae52b632919006a
MD5 bcd316e8994f9900373155ae3c20685f
BLAKE2b-256 1d6329ee600b435f1ad94fd55c9b9fa674c48049d61488e8f5cd30db658e4b3c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15b4838f8520f14896b90c80f4ef5cecb8fc396153da3badbd0bc97e67bfd2a3
MD5 0f48bd58c4e026c78d4d62bede21f6c8
BLAKE2b-256 4e2cd6f3d02a08cf464335a61b896a9d59003f923b1e90f8d96eadf66cd6a5a4

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05a479ae4ac8d024c22a2a1614ad2c11ef7a92c6b7e357fef1665ad26970956a
MD5 49be3df4ba8ea9c327333d5345041b93
BLAKE2b-256 9089088ce6075fd636e655ad8d48f3bad52e677231d9b6312278d74af4c6f7e4

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb6bd06425e66855efc954fb1a6ef9654356d9d49db31a7ab94e776962785615
MD5 e166a430df5aea5f3928abfb27ae310e
BLAKE2b-256 bf6dba923f6f3bc238a5d0ca40509ba466bc6b06f5b2aefdf8dd7b062f8fdbad

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baca536ed0235f03adf9f3a5778a6d564b99efdddf824378eb708fc9eda194dc
MD5 d5d45d230bbfa32d53442efbbdda9dd9
BLAKE2b-256 2d19c680cbca2e020ea00e6b041d40fbc6854e684025e5ff85d9e7f46dd8125f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f67dbd22eba7f8d2f942d2d5dc1c55a3d6f8e4f6a6a1f1e16f76ed7f4603fe04
MD5 ea54161b735138ba14dc20613eccc3d0
BLAKE2b-256 81be86d54d25448d09aeeab4b33c2cb61103f582ca6511f75f97e061314c0c86

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e72ea1031c9dc43c9ebb8460faf3572e61e8fa688cfe074149d50fc9b84f21d2
MD5 ba541188e4d971e6c09f8bd72fe58377
BLAKE2b-256 2cb4e7db3ff3582d83169a351ab5f6598f6b3446afe5f4ee403820a88a7395e0

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3af9aa4831754463df7d6de8937bd6f93edf365d1f2a3830288e73a24ceb7233
MD5 54718184b5fbe7d0cad41b156fb72c69
BLAKE2b-256 8163877b44561b1088116f25610c574453a102a0972c52de711e66dedf278431

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa1072f69c18565904a91fa04ce0db5ecfcf40c52f3c53c0e55703861d5df288
MD5 ebe6d716862dbdc3c5f303cebf183071
BLAKE2b-256 a23390609485786884bf74e1d93e80f910ba682d254c7a3cdc195529be10825d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7b17919d91f866051660417a89dc0afcae2bc7d54c525f9cdd1bac837ef45cd4
MD5 c5ee4a535d85265e642fc4c7ffcfffd6
BLAKE2b-256 2e49f5ea69d1e9a3ca00e0a181889e2501e7f4c122fafc14196e678199f90071

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36eae46a1eeea141a01c4d6b9be53a74af282c6386f07501edea8581dcd3cf7c
MD5 95bd5ce5471181401732ab604eeaa635
BLAKE2b-256 941749533fd8895b8449d2c8937352409a5a132b72f317c331613baaa645cf40

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c31ab7346a369354d1edf3b0277945ae7711a081c0b0d4c8bce3cf28ae8d04a
MD5 c806c3cf0ac66a34cca50106056d8bad
BLAKE2b-256 dd814de446e4bec667b42ab1b914f74ff9780050f78dd64f1fdf1933c1fa5e24

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47c2141c7fd348ffd04f0a1dc5db82e9c386670533095ff54712607a2fb2e517
MD5 ce6d000fdff285e600b1603cb148b778
BLAKE2b-256 1cd1ea5351bf7043ff14b88ff39ed51cbd3435a23d76603327c9eca6733df99c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66fabb0cf73d070a2a2960c3e0e99dd1676edf08776795d100f8b2d81badd088
MD5 0228c0e7b82a0d4d44bc828e3848436c
BLAKE2b-256 b2b254a27f1bd78aeee56e8f47ea176dc97bc7d4287c745f786ed5505fdfdde1

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51c4d7095be0d01a8f98fbbb0c95e5df4abc50714c657a12ac50539edfa313cd
MD5 f974ae580f25a088c62b96b8a5b0331a
BLAKE2b-256 b3355d32f33cc4f5a942abef8a6a2e1807a5754eed1fdb20408eb89830efb326

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f0aeccc9847f474b20a81eb190009a0d8c24334f9f7b8f214e4b4085db49847
MD5 11a393904a6a1a9ff9b2648b6a9fc077
BLAKE2b-256 39fc14beefe562e6c8009b8d4af54b4ca19b2e7d205171a49f252add191d533d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2655327ecf1a994f35f73b208f80b21763f45ca0cb684ddd7b8987de48914e7a
MD5 b70b3629f85b7d5105ccea97cb55d3e2
BLAKE2b-256 8efd022c9d800f3d7bc78b6618052d4b9a4a45dba8e71599e0fd1e135b79024e

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fffc63f7c74586b65d47ab5b77af9190fac5da77a3755c5c7a2287cc3820fb03
MD5 f43e0b66bc8715ff4372bcb16b0c754b
BLAKE2b-256 42abfc1288528adfcff7f55fe2d4301b2845f497de0b0f03bbc7f770cc668e3f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c9ffa1baf062deb3dd4db61aa6be6cbfe01abf214ee3351789e21056ecc7949
MD5 397b1c68a755dcc3fd52d788001e3951
BLAKE2b-256 a9a85874c1ab4a26411eb1c7d9bb26a64e38b2ab1b43700890d6d9eab629bc0d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f39b3b8859e30288007fad6f1714b9c3af133a660a1c6132d72b18dad8163379
MD5 d62f0ef3c2f5c21f1c540e9e37c5de91
BLAKE2b-256 ce8ff0aa36822f07e9358edce4bcbc4caded23afab0ae13b014502c91245c686

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 380b36605730bd6d706e13481c5a1ed8f9dd2e41649d8f4290f309642e2059fe
MD5 6e0fad2859f240d16fca3600447707ff
BLAKE2b-256 dca79cbda880b6f80ae1d9e5fa0897b94397a23504ee932d67dd6991e640a28b

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58a965134d5199f2e980c1f6943e6289de39591f762d85c9ba9dcfa676ad9f8c
MD5 41476262f55a7ae3bff504df6ffd735d
BLAKE2b-256 02224c59bf9779eecbf4dbeb8ead21de7603faf48d989ac65e580ed3f183a12f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e560efa960d4306b56096360c7dbebd3fe144be8dc6b8be5bbfe238ab5a734f6
MD5 3edcd25ee1273eb64bb3f0c873329155
BLAKE2b-256 62df53897702942ca49392e778b167150b2cf577267cb4ac5810c02cedb85961

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9b9e57ebd4fbb408d43c5f8406116ebf76f00b92db565745513316f6a1e4942
MD5 78b3abe7f0f3f79a708f47f19d749aed
BLAKE2b-256 acdad278691b538f1aa23d04fe4202d0694c6a5c8c9aa863e1aed59e7be4dcd7

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba1cab6ec2dcbbbd060c19bff72ef504b6af210fe9e97766fb8a76bc094b1743
MD5 aeadbe7a5ad07417e75b32f6aa248d07
BLAKE2b-256 b1c63b810363b3e30a950ac41f7c49de6c4e8a8793928239fdd84425ac99f19f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae4ece846295c6324515fa585aaa549c4c1ba49b73df07fb397c5c539ea9013e
MD5 73d98fc1def15c6ef3fdf33e2481f883
BLAKE2b-256 920e7b0ea041e0097a19ff16a39b3947bab2c4915b4a0854db82d7c3db51a4d2

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb21b7ffc0e405de5a8ad1f407a6e7a349d3f7c72022bd0b56d755851f8528ec
MD5 2d8ffdb36a2ff6af8c6d5bcb7c743088
BLAKE2b-256 ca9031532a8b9dfbcae8e641254e4da2a3d34e0a60624bf52549f38942d04070

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 142303dd690b05e50b95bf3cfa5099ec0963d5032e5710fe9e605861e112eb6b
MD5 9a616ddaa62c6df7ad6089d45142204b
BLAKE2b-256 aab859cf0840dbaa504f5356165b245773d16c88ee19245055380d73bee9185e

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2ad8829c19961cd1c6ade6c439afb21d38396cc3534d4b23d42993e4e64e46e
MD5 71f92019f06782af2fe9f881ce2ac475
BLAKE2b-256 77f85fd7f96e7c1993a5979b27f7c91888293f6123950651b6afdf31fe63f655

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f001dfa750bfa9375da745cefdfad0d872ecf6e6597298b19d9a21cb0514164b
MD5 a831733743e3ac86181c5025d94b2b03
BLAKE2b-256 a6b19a5bdc96ee69793f0a677271c69760597675668a80980aa69555e154a19c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22dc55dc3c993dd65d9bc1cfdd960460b70fcb3f75605774ae51da11044cf850
MD5 459b08b38d92ac5dfd16e3906bff9918
BLAKE2b-256 ed96bc82ab61e1e147b8bd2851334f86f414af015d26ba4663c0061d8ed633c8

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c787df7556fdfda8d004c5d6b0ca8920a1c769dcd465d705a4c1fc94a0d5f11
MD5 4e427bd875b86b2a8423f20b84f9c1a4
BLAKE2b-256 6a241efbb9182c65e0e880abe5c901f0b976776ea81fae9a8db0576d2e258cb2

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1864d2922c8caed400206abe2f4bc7b7cf8abe7b1c3b383c4a2261f54a6df402
MD5 f8a2df3aadb426bcb9006bbc8fd836af
BLAKE2b-256 cc9eaa211a4c1859c887df6272ab57d82c0d14e59f642d9bebeb1f3c94dfae54

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c441f031d0121e4a082ed28cb6db3be99adbd9015f9d3337a2f6196eb87a463c
MD5 359bf2423be509adf3d83972f508f082
BLAKE2b-256 cb19a5125b7dca93509a947d7b75fa22ed8dfeb8bceaa8f7de0dba057c9973c3

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8826f14791cb13f222739a6616e5db49ec38da1a25585658969758b26b3b888
MD5 5b22d9ff73d1b3d4cfb37b5ceffcd97f
BLAKE2b-256 12c39423141262f4e5d969b9b334290d680a5e0b6ce7661e10cfe800b3bb6238

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24b49b6984ce42621c4935b8f542884acf419cda12f848e72d5c43f4e799b107
MD5 7680443fd4a716e8444c4d73181d2514
BLAKE2b-256 3f2afc10f8196fd34a0cdaf8299249476a42649c5dd5d3fa2072a28a2736a4b8

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eb5cd952aefc3ae74453c20d858cb5cbc827b4322ff65bf889332cffbdff637
MD5 6273d70052e2bd6a0fc4f5222b55cbfe
BLAKE2b-256 0c2770151c2462934615f28635425b026199ab2106e77017aa4ee5178855f9d6

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33f206c715c86762a1a8984e0f18614957f48a68348ea3034834b452094baeec
MD5 0802537f3180d5aa18f34cee2b214886
BLAKE2b-256 7de19aa7aa6dea382801bf6ef9ebc56c7f31b522e4fa5ce25c65531806c33b24

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6502ab9c83046cf143b66bb352ffb1d56b58e80938d4479c4dae0c5420e41816
MD5 53f468727c733aead41d7db3dd8a978a
BLAKE2b-256 47826fa429b82935c2519507df86a3479ebf7087053ef9585f14615365e82a8d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9cd90c4d3072c37a6a198bb488b4387c9a33804fff53ce33b063b3be44a195c8
MD5 56fe837f0ba1e1dfba65175849041f8a
BLAKE2b-256 651b646b4ad25240192338146277da537686eb46969ef47892bfe4ca8f3e983b

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ba49cb3821668c5b8febab11f5af14f621890f79688f881b6c1c9d6b94a0b4f
MD5 8c8131646cca344078e6d08230935ffe
BLAKE2b-256 3f5094c36b38079a83240b903bdc7ad094719ac7ad4634ca53400b3a557f3f48

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd84b2fe21a5eccf517093eaf64cde8b8c1b2c598efd1ce79e559bf4849e5bcf
MD5 c2cf77908638daa563bbff6d21d7ce82
BLAKE2b-256 a8f23f933e9f2cb0dffcb100ac0cdb05d629c481d81de41f5d473435b97b5a0f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7564e697d2257c77de61d5276efcf1b65652b26dbefe7c739fea8a9166c502f5
MD5 c05e2c9e59558000b85a7df5a31b940f
BLAKE2b-256 b82200d7bd2108e98a04728bff946e647e7900ecd0bf356ce6cff35b500826c5

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56f41eeaaf406effb115879f215d6f38e617e55f800b536df349edfe324db092
MD5 30f3dfb7b5f75916f91fa3ffa383b7d9
BLAKE2b-256 4513a24f77c378a796d157f35104d775d0fe33b2f87a9fbbdc7e13b0b71bf933

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0bb006c12169924fe3eab570c5b357b33dbbaeb52318adcf2f4afdfec4a7ea48
MD5 9818923f2e685de158158b601113ce79
BLAKE2b-256 8fd353f42af11b825457f84ef399bb6c86fb67fafe6407377ff8bd723e72b7b1

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b06d933a44d68910e62e7e734754bbb79d5cd9006e8c7d521d5d8b5e69c57760
MD5 9b1eecb5ab7313f6f87816536b92ae5b
BLAKE2b-256 4509a6fa7c83f7e2f77fedf0fa7ccb62d718807f018f678b4cb0b8a8905053e0

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4c5f5d348de62e0feff051a388ef5cc7ddfe6fb1fe2c64c12d1c0555cc7c544
MD5 d6d3c3591e89f88f5ca53f6c98bb5ea6
BLAKE2b-256 9433ab318c3bf5599ed01a56340caaf2c2ac918b0193b423280d71c82ef3f9e4

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 868ab6bfb5d03e57f5a1567024c0654233b7730c5465402b780fe56014da8f0a
MD5 c18e01e893531d2de09eab1bd4b7a7a6
BLAKE2b-256 531b3a43d7e641ef8dc1c4eeb40663e498dc673ee9456a27fb7b2b42b29718ce

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8da8437163b4ca3d6a66f556cb017e16ece894a17d6b89af3377ff3ad0663f44
MD5 692a3f34d6d09052afb04ba1f4b7d106
BLAKE2b-256 f64cc479ba35b6db2fdfc7877347138ac739a34c14b84ca891e8193615a08965

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d4683449a472b566cc15a1aaa53c74d2b298b2d8046723653270eded49c0168
MD5 6178ec8ad536fbabddb09ec85cb22c1e
BLAKE2b-256 4b43906f3b5d861d09f63da0c4b1a5ae2dc025bbb703d243727913beb8614e2e

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2af7b24fc192c4c41edc0df1564be152d02d347ed22dc74585335e679c15a743
MD5 4d5ced5795dfd197a112cda7e19ba1f0
BLAKE2b-256 8a95ee528fa922fdf50d43d9f9268ef6acdcf24f70a3c9991c0bc86769d7d72d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47f13f498ebca7e20c9426b101294ea2186c883f9ec8dc6e696c0bf6280db391
MD5 a323b18c766848b40bfa652e7823466e
BLAKE2b-256 a69e78b2e706daf3206e6a7fdfdf78611e4ad14e4d0a136f48889f5ace5435cd

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c28f534a81c4e6f6efd198448a430829b6e48432537ac446eda185d57ef1660b
MD5 f190829f2bef237be2ea444c4ef38b36
BLAKE2b-256 5c696bd590c36c35d7bd03a2e18c0cd43228fc5c66213496945198150189e63c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 436ef7282700cae275dc7bd93dc5d59104d686a811668ddd6752c6c20f9da685
MD5 56e4bbec6c9f591fdec761933fb167cb
BLAKE2b-256 6bf1b0b924b1d4a76dd488f60447071107aa021ebf90003692f2bffc438eea7c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7515bab10baf3b4c399b589bad22f50bde2f8f500c0d9fea80563c69bc6be6ce
MD5 421ae2d734081afc02def47f9e5ecdd7
BLAKE2b-256 5a9b982e16269eec99d07c150943bf5498eaf8c2d1d32fae9fed058a494bbd40

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0618b2a7980eb64876c6fa5e9fe05c80ee80cdc450a2cbff0969af9f567414e2
MD5 400ab7ffd844e63075bc22693541afe4
BLAKE2b-256 b0112b9173d3b8b485d598b9cadffcf2ba9abeadce6c4bf60feb5c9799f0e5a6

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b625d54b7203ddcda5223597c98162a20888cac6b75938c9b143834348ba2aef
MD5 a374ac30b218d84e8328fd8a46d5ff9b
BLAKE2b-256 5bbf65b194fcf3b8f1e2f62c98b13c34e9fe737363e62416564ce58129273e4a

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 202e2ccda3aadf8d36ac69c11bdd5001083e224293f2043b45a21df061ec1fbc
MD5 11c9a7e1a8580a6e70fab253b24cf6d3
BLAKE2b-256 b186d6913688314724d00cc4926fc56417f050ece6f3c462d3e2e7824a2f3e75

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a05c943474c906395d967d2310a91e09cd3f87963d056cedf8225861df0b1efd
MD5 afb9b3db5fa543e6ac5a8b2573eb2746
BLAKE2b-256 db068d67ac67a9f96736727c0603d064badfe1319637a30918cb041e93b185c6

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51c85f5b140eefd9ce8eb9b2259e795d27fc3e059b70a715fb803a196b64643f
MD5 45ac53798fd7d58b536230966e581c90
BLAKE2b-256 a851342bd1d2c43edfae3adc82604eda04fce0ca0e5fb6b01ea7d52ad407a5da

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9be67542bdae0a4f8da94862eba8dafc6e6914be16db51d81a27a5af7556d690
MD5 46ba375c04f25c9f870d1274de19c825
BLAKE2b-256 d3297d77093aa2d1eaeee35a735d881bc4b04b7df945717a62791254afecad67

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b18a8f8bb48f88bb563e76e8d2b072a966c9bd287ddbcc682adb2e5c4fa96ef
MD5 d2ae27afdb691327ddc5cb789365957b
BLAKE2b-256 a57562614f5762b9f4e9da1b34d2099778229583b6a64ffa4460fa729f948d3a

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d8bac49dbc7d8b3e02000d33c8ffeec313dc26eb469005135353be494621260
MD5 b8fd7a928f825b8aedd2a2a27b7e6432
BLAKE2b-256 4cac588376d6da5a6510d4130623c8079fda5a8150733d97014704851f6f725c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d8f4e97cb1295ec03467b3ac9fd6efe221df5cd3998b870c969c3ae9cdc2a11
MD5 e3b8b72527d0b490d8de5a4c005e5ee5
BLAKE2b-256 883f3d480e17db7207bab0feeb6d5b494adbb161c46209997902796fca72eb5c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e11313616615d9dfa3a16ea922088df7c2a27cd2d7f438f8542b159eb0c791
MD5 be9b80039baf824195894f3e6b774ce2
BLAKE2b-256 e035652ddb92ab406dd6ea7f7528b2dd6d0b46922be860526830db4e7af7001e

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e3df92930c6969ca59a96cbf008706c58e1f9575e980372c539de1edd742da5
MD5 e29cd7814439582d2ea93bc9f3eb1660
BLAKE2b-256 cbbd96b05a22897de66878782ef399d01d2aced56b2fa6711fdc27f0be35410a

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5b987a19c9b86878e16a588e923ab089016422742ee17f6afc297abfb4772af
MD5 4f6cc47347da33b6fa228db9d3aa8c1f
BLAKE2b-256 bee21ba4ac490c9dd5cdfdca7ca1823d81d66b6697fd57e9198058ba859c650a

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cec0860473c0b6a233be7aa30d68fd0829260c84b64b97c4c42166eecf66170
MD5 49c1f56b258b11784064ba83f1adf2ca
BLAKE2b-256 fcb32b91d64c381afa884028ccc024b7bce83e8dd8dc9aebb37e239fed084e55

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 642309a5254623e08be4eab312614ee532402839d735a6b56aea2e6a2f03b1ae
MD5 709a642acb2ea86b570b5900b1e5cc8a
BLAKE2b-256 b27472cbf4cbde872043315d2597c3e79e1af97937734262ddb54cd6b04561fe

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d93fcc482612b44894f9e376270222fa8e237acf470dc5ba9228dbdedf77ca45
MD5 8d543332ca0cee951d71e8c00ef7f534
BLAKE2b-256 2703151c16b478a46db061cfb560a106052d606a90c12e32d7153b2c46330a66

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08cd9f0f66f2b4b1234b2c4d8c7494e1da47c311e0d2aa5a70151ff9cc5a18fd
MD5 c334758a5943e2c5082a728933c09366
BLAKE2b-256 a65709660d84c0fa94c2ac34abc85dd5f88b8f82ef824adc1f218dc2f49cdc43

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59ac7e7de60e62270425280fc337b1450951ec594b7f69ee2fb20ee65ce0901f
MD5 ba6027ce10b17bb9455165a4ea472c09
BLAKE2b-256 78b8d37bd82485aa0c81e6997d12ea1a4ee95f59416b9eb9d52a36dc5e40d92d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d093180c3d0434610a474d5e5cab89c7f0ad8d8b7e23f31fbb3b15d0744be651
MD5 e18454e908ab8102379969e28b1c0ba0
BLAKE2b-256 5c797dc6a31e7eafa39b230941e571c0264fc5131ab8be28f5b998f804997b50

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef75ab293612324aaa74ef3d7994895641d6a60c696e4bae9e4ee344ddb6010b
MD5 16ee5587d948451fc78b33d0469e52c9
BLAKE2b-256 445395b90bc2d8037b54f4cd92ea213021464aad12f356dd47338b946eb5bab4

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1506c6e1f419849ef78375e0f52471a638ea31e2e124b1e394d28bd50858f51c
MD5 729abc4a74219c7f20e8adf94e7677f3
BLAKE2b-256 d342836a22be74199f149ccc164194cbcf85123e3d76222ca6defa835128ee5d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 152fcb6aef08de0aacf8bc663382f6f1fea0d4b6bf2042fbba6214222bf4febe
MD5 0bd18446893783a68282e8d2b19e3fbe
BLAKE2b-256 dee6481df627b1836988096b972fa0a015abb4d912def1c680e42c8905be866d

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7762af5ff9a67c04cd20227741169d1b1530bd529c1f4420eea6f6accfffbbd
MD5 2e9e373885d798dd3cba30d865ee9f82
BLAKE2b-256 afabaf0a2e9574cc827226ad2078eb25b2014b71c719527e0a4c3111b7e7d1bc

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 906ce3a8827d2e8e266050fe6ed9285a868ed4c4db7ba9c1425d16f3bfbe5d12
MD5 97f199b44a08156b5bf086a8743adcf9
BLAKE2b-256 8ff78c2d6adb7bed9e78b2eaa7f489669d1287dc43ee4bca08f5ce6c1d73fe35

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d7f951e03bd5762a21b159f11271f6017b7001f42604a96ee1d0bcf5244fe49
MD5 68427d7860450acb6c469c98aec04db9
BLAKE2b-256 108c5fcfa5881a2dc58033e5653599acd007f63049cc24beba84e28cc4ead559

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 351248f3aa9daec85552a9b8f5f4541abc7ff8b04012f239b5657fc8a7aa7713
MD5 ac1b9383579e1bed7f36bac223d1fb06
BLAKE2b-256 3973f4bb71b782d87339952207e936df12e3c005104ee2049391fb3bc61bd44f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a57a358259c775b88159dea9669c371077f4ebe3ae226986acf4b3c570b207d6
MD5 f39e5761fc5907d944bd9569ebbec100
BLAKE2b-256 836c3c99ddf242c344ebd4761e8668499f42e7750b960e512a10bb1f40848f73

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da8416052249ed63764243528fc851d203a73adae58aec20e97b6b26cb0c4d35
MD5 b309534082bc21e6ad2d5d92af3bce45
BLAKE2b-256 a4f56076926d69bb0c9903bf77c5c993a8050525a68e1898fc39a8c28cee6790

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73af6ab7416a6387f5b4ee4293cb76832f559ba06814e0215e186e3d8d5a7e8f
MD5 c25896ed9d4025772dc58e5a59ea802e
BLAKE2b-256 07a7312112fbfb8e3389f1d65fe1c8ee124f02679a10a9c7dcc4b39b48267756

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bf9d05d8017c44ea0780e2c6d7c86cdba5632114b6d89556c8fa647d5e1cae5
MD5 155bbbc5daf27ecdef227fddfc4b721f
BLAKE2b-256 a59327200831634412187a1d3963083be05141f7164297fb56bd4a4270970330

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05584d73cd04b20931943929109a776a0e4cc05b1272d68fc6cd69676ed2a654
MD5 0f8901df4ff6a5aa4e314ba781ee489e
BLAKE2b-256 9a32d727c73a54c03fa26177f597fccb8f5efac91d96fd45719c6b3c50478cc1

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c23e8aad84910020e0fdf7e9e96f6520ba5a9bd131e0afba2d773e8af99b4f79
MD5 25209a8f47147597473568d6ae0eb4e3
BLAKE2b-256 13d84ea6258ec223735d96d045286140966b70f07cae3a2020c904fe0efa959c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b22b0df8e4906674b01377effe2d990722c37ce901c794e2bc6c12d2570e8d51
MD5 0af9e449ced1d8b74f9751016fcfe9f9
BLAKE2b-256 d81b6b4fdd721a2d8442370b251d544f081f29e2d67133d6595c483a63ae8d2c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a029e81e362dfecf4507abfb0c01288dd9b2ade0892f0dcaf60c24c03aa1bca
MD5 ed82e72efaa1a58b13c9a7a1e13cd814
BLAKE2b-256 737686ce97ea99b26f9b50febdbc5b2d1e46d35d69d70965a1261edecff1c6f5

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6f0987f5d5687d2c747e18cf5896f30b06ba5fec653b11a6df538e8091ae1f4
MD5 9534924fc80cd9a6398629a9e287b5e4
BLAKE2b-256 f4a3676ad35b9ec030a391700f74060c2fd94e47ee0fad73ef1618b0fc1bd926

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6021f2cd5caa014d7ca75f8587ff43f54989c26fab191d378b42758fdb02737
MD5 b7f8a8a955d156598d4613a4ca3ec798
BLAKE2b-256 66a032cb612907a3e393fb9c948ecb42a755b8b2e11ca3fd560601896019d061

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 550a43af7fab2e1b7c5666a98f05495b2116ba7b2339862b8a952c22486adbd7
MD5 63c2af7f11047a30b91c98328237bdce
BLAKE2b-256 8ee020faf4cdf0240944b2734643b6304b63665512c94b881352e2bd482ec5e2

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d01d0dcb2b76451f881a7e167af99c8307b4fa6c1ab37a524bf50d700ec13639
MD5 d82c2fd9cb6137e006b7db4c0a6413f8
BLAKE2b-256 25e390d7f37fcc34de087844cf4db314ad8d23f4ae358a3970578fb731e671bd

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40015513508352919600a9bebeb55cea6073e9959ec724d8ed9a06919b4adab4
MD5 c96517a3d3c513ed52cd1357f40c64ea
BLAKE2b-256 1b757fa49ead3f282e7f9491a1ee3ccaf5aa322692c4f454baedacf06e208ea6

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e677150a5730d7962aa28a8fbc1f44e2e8e7d3bef245d1f33d466c25e2372f06
MD5 ee5d37c7983b0b8e82bfe864f468ba30
BLAKE2b-256 a4316b4d1fedaaa084aaf1a99b7642b94112b847c96eb021eedf3f9e0d1b8e8c

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 919e0a53dc9f99a8f103654cd22568953e1a74490d69e165c2f70f2379bc2001
MD5 87876e512853918da02674c650122613
BLAKE2b-256 5db8eeab4df76e8b20048e098760d243dd4bd7e054fdf5d0e9add2b6c4207d64

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff52d8071cd38a80c8fbc2520314179bee28fa52523a75cfc9129d34284fa4e5
MD5 596f3569a0cb30131572d27ef39d3ef1
BLAKE2b-256 57461035780f16ff0338b69b1048385d67e1545469f370a20e80586ee48b5b1f

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b76cc89c6e019aec5e030ba54969504b91bce5a7c790ff33e53b181d91e466e8
MD5 e292a5aa4909116da129aa0dde8c0d11
BLAKE2b-256 d77d79330f460a820cb1075c59b0890ed2cf094a9ae8d58db53f72928c2e0f1e

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f916c8c70f7d2ef63992397a017905916d09e8872080c7d0eaf338a096a1d047
MD5 fc2071a49ad484df85c8bb0c85966d56
BLAKE2b-256 593610db96c7e041b6a2f802f2e669c36995f621de413796896390c2a9029ce6

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f65dd17ce8e42d0c59c5eaaa03a0ccb63ef70c46d30f3e5a57c700cc2edbfe7
MD5 4f13e805a0bc297a3141145cf35d2992
BLAKE2b-256 f1fd419069e3b111190309faf7d7bffd37062784a023c8ce56e98e36e80cf2e3

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a68f3cdb5661423608fb43ad6a53b4af30c71a5c7d60650cd05361449422221e
MD5 bf421052303730efa589eecaa38e0b33
BLAKE2b-256 e2909720e9099bfddf2bbf95eefb13b68e92b230aabf32522074141008383cb6

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