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 PyPI - Downloads

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.5.tar.gz (651.4 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.5-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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pure_magic_rs-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pure_magic_rs-0.2.5-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.5-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pure_magic_rs-0.2.5-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.5-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pure_magic_rs-0.2.5-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.5-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-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.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pure_magic_rs-0.2.5-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.5-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.5-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pure_magic_rs-0.2.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for pure_magic_rs-0.2.5.tar.gz
Algorithm Hash digest
SHA256 1e403cf9179ceff395448c6bb7994ca89bbd5f60e1db947d4b0ea8c0e3fc2588
MD5 01a2150edae63e0ba60927344769fe6c
BLAKE2b-256 5c17d942b76879ac769f048abed6942155c9b8d2b642704662c89d07d15ad7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5f18539476e4587e05a5f28582a466452203d02d745837a3e15ad171e78c39a
MD5 4a1255d7f0e4ec34472e6c0e7f5f1bcf
BLAKE2b-256 7392659e02473614fbf3a0407704c145a08f644bb61e756ecfbbe7c4c61545e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cf6e183fe696ecb4a0fe608acc75ec2a4bd8bacdfc20cef3a158b0bac8a9789
MD5 3b2b6285a0b5bc66f0277e7a203648db
BLAKE2b-256 d932612f419e666a6c85ba4c0e770c2fc04dff32266afcf96d1aa53529073ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7186bf188fcfc3c6b4a44bc54e07b68c1ebba00590af20aeb967d9c8c7e13554
MD5 6d1d8e5dffea09e4f29323cd57e1f136
BLAKE2b-256 6e7934df8e506e2dce904a9ec8b09d24b362840b0609bf8f22dd2fc46bfbb19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a177e2d830ad290175f427739a0b88a825bdef52660f7349cd14742c30c6280f
MD5 3d15862c5598df0524c1ac280b97378a
BLAKE2b-256 aa4ee5bb079f4404521a52e85f50b4177402fa3c43f6fc9a22fe387b745759b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ee1b965d182f6bc3bbf93d1a8671cc142124992e48c2a04ceb55f8d4773fbed
MD5 bea80bafce6dd4cac2739f6fd09acee0
BLAKE2b-256 bd001056ae0d20fbf98f7b1f45431982d9875275c0e969b903af5f39c827c122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e21eae373ab024c0bc7a4a82340a5f1c36b442e0ff930a71bf7adfa6f3d36ea8
MD5 ce0de56d8acef3e8cdd6759936e9433d
BLAKE2b-256 275af9a995e8dfa4d27ffcbb02166f261632c1fd283f0afa5d90ab79cf2a4070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e24ec12a4022f90151c2f458d5593199bd2c838c4b19203f3774cbacc203f3e
MD5 c9fc0ad5e97d1ba369ac67cd4a059a57
BLAKE2b-256 9839a49bb353fbdc156cf8bd653f216b4c859933fcfc7d1f4c8c11e71bcafccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e32cac5aa28255e4460649b4545e52c305ec79dcfeb209d31d9011b858cd1b8f
MD5 2e9c42789e36a0fc87af0b805942d947
BLAKE2b-256 ddcff36ae75c614654152e59494e2eb1554dec83fd81d51c11a5e3e4b72fb9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f0806b70a34497410b89512e0fe627d6d1294e0715928215b1a9b20fab58c02
MD5 704a70f19017fc9424a608ce746c8250
BLAKE2b-256 3bd163b04fb5242ab7359482106846937ed8688f987f91e0a78cd7236ddd95bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54c23a6201a71d98330c67dc3d3485aad8adf735fb3bea6633ff1dd60437084e
MD5 eb3f82d530524cc0173e492306b5985d
BLAKE2b-256 d4466141c10ab689b045f93c9f4d1281d5b07b4e00061368d02350d1cee61b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef0f864f1b15fa14b236d1d3b0a982ad8ab4098c61291d3cd42169b1db398714
MD5 71ff88e01404d6fac6234257a41aea0b
BLAKE2b-256 c2e5544875183d076960b8e88dac9803475d3c28d723800197408a61216642dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cad3811e66be15945d2e6a39d1c97529715fad1574002a6347493027c36c9dc
MD5 bb81f81ad675642ced9bf758531bd8b8
BLAKE2b-256 c08f82ef6854eaae377eecc0e2da8c7f30fc835c58f4ebadb3e5fd1d93e38774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1893d8cbf384700a745cc8907614a77f2ad3e82aa8ea343ad58968b1d6a1758
MD5 2ec9be5907846ac16d93c39935031d97
BLAKE2b-256 f01ec5e663a1190cd1b057be04c1e36b8b1579c0a3ef577fb02fdd19fc8c52d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7526947ecde42bd66b0c911bad402b41cd0e8bddbef89800c635baef498971a7
MD5 2096af20826df883867227f344cf7f47
BLAKE2b-256 113c70b96a0f17e8fdadc73c071a0ccf8eda569cd6ae5047ca552fc3920148a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f65ad3a5eaa117ebaccc20802e0ca6292188825d524803c5bb5bd1a429ae3fc
MD5 ca827ce9c310b2cecad343a50ab42886
BLAKE2b-256 10ea95239533ccc1c9e00d82ac621aad8dc1143ead931b4c13f78d5a9d77d21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cca905f7b762e97a0654d3d582466dd3a19f87e13029e0e1519fedabd77b1273
MD5 c83b5fcc373f0c00baf431795c658180
BLAKE2b-256 2729382f5fe25ef24ed9c20656e988be57ef5063d5b6bcab16721792933bb697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 804ed2065a6f61d8f1a916b8c38b40afca5e6eba71e7dbecfb70c9c1aecfae43
MD5 57251f0683b1da127f44b553816d5aac
BLAKE2b-256 7878226cf8b8785c6fc975abe02fcdbc81e035ff741b3ed3c4a18df794d5254e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43d413186b51ebc3410b682fc9e64549ed7c0bd77583227a10e011a0962acf0b
MD5 09cb8954e752f5a19d493746756ee5d3
BLAKE2b-256 4bc3dcb40513a80ecb4d5dff926a8c4ee1a00d4d7ed29b817e0ed810fee86d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d8a7fd49105b7abf866998b388420514a2ff26bc751758e580fa18bcba2d00d
MD5 050a26111174ff100cb0abeacacd0c8e
BLAKE2b-256 f7cb4c76296fbc5c24b16e405144dd3f06fae1396057daf885f40f9bb0082303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 64e106b70eb249c337802f5f268d6c26232f478860c1201fcf6817fa264b78a0
MD5 f13fa46feb0dd6c1a9ffa105abf97859
BLAKE2b-256 5e6fa356fa39a8a01c5ea9ab1531dc961e8d5148417a3a238edb26203ce19d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1441f5bd4d14633f5138b4c8f43e4f5a46fbac8c9e949b597c142ec8ffcedcb2
MD5 e86a6c0913a0a30ca56ea3e012d1d9d5
BLAKE2b-256 6bace5638065b0a7ee36aa6dcb49e1177131226c88f6347707c562abd6a02867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf266da467466449c00047f69ab4039e87c4cd87ca31e41023d096a228992b83
MD5 9f6e509baa9cc66df651ac283a425901
BLAKE2b-256 743c09082ed0e71e88638ddc88689565b19c790dd0edc186d58469788c03db94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72e0f7eb42d3a753307e996c3cb1471a20ec27c1fd80f67f9b2adf003a41b9a7
MD5 2cb85945a39c7d4626e5d12b10c08b16
BLAKE2b-256 760264812077ffada9da292d1e639bca193ee04a5414854ce238572713eb5417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb1e58dac0e63920fdd5a6d20d3ee0221bfa1c034bba5f1df137c732b5ef1003
MD5 9609825d1a7c89c36fcfac98988919b6
BLAKE2b-256 4c0116fe3c81cf81c89dacd09aa977bdeec07922699694f561c6d2aaebce11f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f397898a16cfaea8aaa4b5c4f7bc8bd24abacd3559c041600ae7c2d531c29153
MD5 5f524371f78bde959feadc215e25ec43
BLAKE2b-256 6cdf1dd3d2823aa95a9c7470778f373cc8cad42d6cea2c7a8e08201a15104012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c1d78d9d68376bfdeef6cbc6c64197f3c7e7b96d75aca9aa2faefddb89f9bc1
MD5 ce3fee9a14fca72997ef89f43183627a
BLAKE2b-256 548aa13fa19b7212729f8b678f7d9ba4daa0005093ce7894317f3da275edaf16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29cac57966c03ae6e3cefb27d702a32a9edf5660f00a30505f5e005ceb85a5a4
MD5 cdebf677f26592395cc939936b0f169c
BLAKE2b-256 7fa15e21673f6a6de4c38485e0ac43521bdfb2269f9444466f1ada1c53ee4d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bc1cbd31ffca529297f3bf999268c78ed450f568fbf976a9f6f069bd83b91a9
MD5 592d68e456f9db595d714d42d46dfcdb
BLAKE2b-256 4bc2a218916fd286aebfb8d8a000edd963618120887b46f4643ba9cfca39bc88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee82ac009fa0d882ec17234130c528e916e339e3b96e57d019fa6f2d8752ab5b
MD5 35bb98c428c760690e276cfe17aacff5
BLAKE2b-256 1fbe49ae3d1e2b3f0d4bdab0345840791950f34ea61b0562eef0b72cf923852b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77751dd6dcbc6e7b772e8c95445cca49cda1bbf4a7ecc26c60a7b53109b20aa0
MD5 960344b10921fdcf48f1895767d83861
BLAKE2b-256 44b58cecbf570bccb94856fcfa3ee19304854a03f44546a47c555774a0145e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c925e2848250a85ff12309badbc8e0ee65e82648bd254883ffa3e5071ee7cbe3
MD5 7e81ed0ad3be3c09dd85c5da6bd811a9
BLAKE2b-256 7e611bc42377964774bd36cdd71ddfab784a631a432db3d5432741cb28190506

See more details on using hashes here.

File details

Details for the file pure_magic_rs-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ba58955e4abe536a25fb809641d4b1d1bf25fcdc5dde79618d07d46872e2f9e
MD5 9262e614685c0a0a9f9e975f07f1a522
BLAKE2b-256 ca7a3dd09d15308b2bd1f04205540b0ae31c225daefaea3854220f887a6aae5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dac38ade6a8fa56ddf47d755ba746783243a6824b80ea4f02cba25e41ed4ab3
MD5 a72296af1d007f376e3750cb564a1c69
BLAKE2b-256 c0244a63657791d8dd02b839d3f03402c679991113362d1c60f1ea7098c239cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad139fc59f54c8efd15debcc48c0d719aa3f52bd83c632df741d535ce0097514
MD5 d0609265b0c5ea305a58db23432a134c
BLAKE2b-256 b3f218f5ab0b869fe662fda969efcb638ce192aa9177f89d9110957ff9de36f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 559c4d9b5e1998854dc2a08439a7f92524ccb7a68a3a82c03126dec6ab6f9347
MD5 049ac05673fbddc1e59e2e941931625e
BLAKE2b-256 88006c49017f4e741b36b8f3b0c6f46b3387cfcf1db5b2414cedcc831f38e67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c5505616f2b547f4ec397f92e82386bd33473b0f3c84ccd5d4ab0fc343fdd7d
MD5 334fbafa7b7630366b6c350c813a4449
BLAKE2b-256 c7daf20f617d7271addefa62ec7981c90df3b6d643696e417be67c9268d46de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a87bc8a2c48bbca41cefe4a5868a67fd846089342502785d14a05131da8000f
MD5 8d252ac5243ae1b08c950cad5c9a8a33
BLAKE2b-256 461575e4c18e104c37be66778c0af891912db8f6db562a25b40b075b02c234c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 282995616c723bf61a6d6e229c0fe31f896f3a8822b4c418cfb8586f9c75a922
MD5 63233f7fd8c8ff0557eed6cd8fce2f0f
BLAKE2b-256 c2993faeb75de5e8a6fee82c217626f46935b7c5fda4864823da79b0acc283b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ecde8aa000a9e129f830f1c646899956566bf9ac8399311b925452e399df60d
MD5 9b4b1343bd6db88496a39444556ab762
BLAKE2b-256 63f4bc97b830d27df192963a299c3eb96dbfd7ea5e91f67d5676b275e9e98e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbd4f0e02636c36f4149336fe6d2ce0830ca0bdd948a20ef6211e0b2019a1ff2
MD5 af080020f484e483fb8d3d488aa5a9b2
BLAKE2b-256 be66e17749201d64f4556493b76c58818b81cc5bdfd67ed90cb872420b217a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 780d70e9928ccf25c0d8ec1bc7136e4f97beeadc86c55111428616b6ee9fccaa
MD5 f43059352d661780a19b07f796e05c25
BLAKE2b-256 d2dc8752440631a5e5a6da1f82bea406b961e4a0ff6d0b25dbacad8d160b632f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14fd8e142ba8b0cc68df90685e4cbfa89a70308870c0179129789f0f23adb309
MD5 f16c88afd5454760ac698845b386bd36
BLAKE2b-256 bf66c77d43183d51f63382626027819923448a7a920578ac4c3e07a90213444a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 973272946759616bc0153508d9416a2c9bbcf10a3a395b18d2b10915e9dbac74
MD5 524a82bdf09caab7ca592dd527e50fce
BLAKE2b-256 d93ee49aa9049454d699c9ce17dfd31f538acd47eb2b796f9c0ac21f2b975208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c4687475182d59da43098fc77f8a720bf1394fd2ae59b156d32e16f43f0c366
MD5 b2b9fa3c13d7fe56ae2d33632eb2c566
BLAKE2b-256 5343b13dbc359ddc937e95ebc7548c76f1dc93aabbe5410b21af052c706229fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f3fb03af1f11164aeab8a52ce5e4406c6fea096f050e3f3ec8b56bb5137073
MD5 da9603e5be37afb105787303e30a6c7a
BLAKE2b-256 b3ec5128992eac081c96726d74d634bde9f175bec56e58cb835bc7ddd830ac52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 843ef2514227cca4f1061914c1fc476ea9d6572bace17ead05c0c7df5bbaa354
MD5 deec4f9e73b3c836db902b9d5afe862e
BLAKE2b-256 cd31fa761edc32db18975e491a61747f83068ea88744ce300f46de2f5fa6e5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96bccca7842a2328245f56ceb842b77a5a24674ac7b2b72eee8069cf11ac800b
MD5 55869a6ae01c07f0d6f5e89f506fd158
BLAKE2b-256 f9c7fd455696b8c3ca7b881fa91dbf826a80e83dd070c441b9e6500cec70b92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36f94b850f549b8909b34e3c0ebeb389b6695782746ea10855033247f47b6a50
MD5 82a0ec4d91ffd3ee770ead046eafd354
BLAKE2b-256 6379457b5799012f20a1c887b9a18cc41dfd9e7b5104847d4da419badf985dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea4282fea6c7fd7a4e87c5e255ebe88e3f3dce308db253eee84bb005de6c6891
MD5 00f62bd4faebde10b5b4559b4727adb9
BLAKE2b-256 0c4351c3072038da82a4018dba8356efc338c271226d056123161907511fb393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b0c00b961c50fe92296ec579ec847038db942b8ffaacc1b0b3885087e04406c
MD5 520fea77260f638cfda8e3ab2334d074
BLAKE2b-256 ac38bac235bd9769021435b5916715cedc530fa68bd15edd064df08f3672b39b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d61a979529c33bf639fa3d69e10ef65b7d7461f12f968e256e6d02a825b4f389
MD5 6e98ca2e703d9afc05c48058b98cd94f
BLAKE2b-256 800d0616f424aac5fceaf118b3a2b941e8860cb9fa7fab17c96a4204dbd5f66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0019f746f976c0f3f55149283cd8f44eb7df7ec4c7cbcf2491b35563abac8273
MD5 d9b2cf78cb196a5daf5d30e8f9cd1b36
BLAKE2b-256 330d4ecad918aeaf545f410c77614f4c163a4e3109f8cdc0e4345f03636016d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18271dbe88c5eb775154cc9cc2959a66d797ba8228243b6a80cdfa13565e7518
MD5 d74bcdcf34e4652af659a7348c921795
BLAKE2b-256 7b87a98596b5a3e37a7c0d0efa49ecfb6f1b0137d7d06bba2abbf359690a9e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75607a30d7e40d613c5fde7237be69d112f07e6f49bc3878f58c9023b42be764
MD5 3dcb96b119cc053a812287661af304e1
BLAKE2b-256 9c3f19c0b83f463ac62bf6fbdce109f118319fed78196ae21973ae5fb79a621f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ab5ae6d5b10cde5a15c2ee6e0f2d3d37314bb650ad908a955934a12bb68fa80
MD5 35b0d80839a189254edc6ce2693a9878
BLAKE2b-256 63c495fda631f86f26c7806b955f41669a1bc711a475bdff33012c882317de4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5caa2fe3f35a1a7a9f8362d0ae22b53aedbc08ab8f92be98e4c41abe30370325
MD5 e6adfb0b8b4a2f0c0f9bd95ceb20b8ac
BLAKE2b-256 7a2527f10636e902cbfc11b934f6bd1201acde53c5f9ca5493fbba4a7fda799c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5278b48226530e0349ad31b6081c84a58289d15a5ebd28ac1be3b6a357da20a7
MD5 e364ced0aa2c551b1cc5e487f58bb366
BLAKE2b-256 4c582371745ebfa86a2aabfec52c6254d302f492e48ba0fc94a95da847566db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b8a1874679c67e15e93a35ec591ef31ce46499a8f800bb4bfc58c8ab2ea0fab
MD5 9b362b8854e3ef799ed7a094de731c8e
BLAKE2b-256 72259cd5435c15921912a643f13e6a567a3e1c4841e0cc478c26fc654e7e72f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b2b1e0d84cf70b6893095270887f811cf3796c7af0e96a2a8b7793c1e7321c0
MD5 4c4b2c8de42da543ed8441179d580eab
BLAKE2b-256 b4c003b05b71bd4d930a0bcfb608ab4abe300d920ec9f7789787cb563299142c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47fc83d130a448700401080d1e0e7f296832ce99e8a58feb8d68e9e64d9e42ff
MD5 2c6478e284dd5e16bd083595272aad5c
BLAKE2b-256 15affead62cb1fb6e217a6064bfd23f9af4d9891aa85021e1bfb7d74d0da2c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bdeaeab29ebe25d132ff51699c3c65204dc9099e638358423e17b902fcf2a15
MD5 c36a4780b2993531c944c47ee84c7802
BLAKE2b-256 27879cc4fce5970fa9e1153614b8654713f97b2bdb734ab632d7b13638ca86fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eade9e2191cd98939c34aad2b14e92a846af102c6f2fe878e13f20e18f432890
MD5 7434e147689ec3f4bf482954ebae22a1
BLAKE2b-256 885e566ef6b142ef3a2b36166b211b1b293b3c1a99e02827bb26ebf5e6c1f2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 670fd68325fbd941c44e8ffaf6dd9c0a553582aade9ad7b43857d67b5301e62e
MD5 ec71991bb7dc764850432ea5e097effc
BLAKE2b-256 3eee6ebed060b22ca924a1327491cde6547b27e20738aa3e33904436816f93cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f85328899397d803a51a47b44cb78f8c7daa489e85464c34c9ba9be5abac7189
MD5 c273da57eb1b6a45a39b1c716b58b049
BLAKE2b-256 340a6eb274c380dee122bddae6fee2a4b1f9c644b5bfe16dfbc01db720f08aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17777ead2b108c4f060a7dd0c6ac3825d3a773c3ddb8280b4c38a6fbf3f092e8
MD5 78649c62e8e23ffc651693bd9db86346
BLAKE2b-256 e572d444a2cfe98467c0e2f16695425e668999982a52d857a0a3bc4bbb3a692f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80ac5c7ccb635e4f349240553978da9a4739e22d25b5212687e28163c0f416aa
MD5 fff11d8ad047f37d73642cbc65f77015
BLAKE2b-256 daae92ea5cdb4a657309c095e553b12c06bc1a30374675bb7814f29c8e92402a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02c47e9d21283aa44165fd8ec220f39bb5b7b39fe0e2a2d4dfb28a3743bcf042
MD5 fd92e5339bc24c7c7e7b38e038479d72
BLAKE2b-256 38487b79dffa03cc29c3aa3277b6c3cf13a43935bc737b3cba00b7c5623dcb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b12c1f1594e66601cda4cab55a1b812a0d6526471a878d9466cd74a10de570c4
MD5 1d4a2c63fc09ae15ccbc1ab68e4b006b
BLAKE2b-256 2a4943cbdb83b30afa40852d0e7a0714fb2f7d0e2a19d75715babbdfa4cda4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce82376b430ef37560cfcb17523a640ace3a2d6aa31d81171a8f776979c0b760
MD5 f7427eb524d37c7d099eb32e28ba20ad
BLAKE2b-256 f38d84dcbf10a5f02ec4def6ffe995686252eb91b4c40b3d83e8a77083b66207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac7eba7dad1eeacf3dfb73542031d25cf06af78528c72ca5a11226b95d27bfb3
MD5 cf6412e2d1c475efaece77132554149d
BLAKE2b-256 879730672014c0a3759af42adb70ab207a36705b27bb7bdce78ab38c57c4d4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4e6a4a5b763196b92fad156e8113053eb7bde2a0f368745b9ad527a26e3e879
MD5 878a3e56db67a088192b8b8d9c28367b
BLAKE2b-256 7f41ada7935ea49c11ebe1adfe509abe32d29448f186a442d2da27da0754d811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1cebc85fff3cab236fb9c8c9ca9e100cbdc04f4a5942bd14d64c2b350f5d70b
MD5 96dda30189c2f6fec08a27d3af6e7ca7
BLAKE2b-256 bd8ad4372a7d6bb8a300609b18b49c1e390a461d6222407bbac7532fc67ba02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4bcd27ceeaf19ab126d4ddd5a2164983207013a2bbd8ce638c02fb4deb811f9
MD5 b56b60d85f1f3fb9a402fedf885408bc
BLAKE2b-256 dd0f67b8e4b4eb3ee65e8582024378db7a14fe15d1fb64ae8e190e1f4a73d425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16bc646ad21d296990ff1612da1f2851ac00ccc3029cf3e51ee3702d98f42695
MD5 297aba9652038feb92e4c23e24af85fa
BLAKE2b-256 af7bcd1ac23b95e0a603e49e25aa646512ec005691664dbe664f13d797790eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8293431b7b5851b20f9888302269cafb5513e190331dd2ea778990dd94d106b8
MD5 fe7d73e8e401297628df88280597bfe3
BLAKE2b-256 beb40fdbdf811ebd92e4f77af8052a27ec1b9e8b966b7fcd71964ec99ca7dc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebda2d5d4c15e487fda8256aa4a1091fb526c1d5f71cd80a5175c675b61fc6a9
MD5 6e2a82dc6a94387676e3cb29fc201a04
BLAKE2b-256 b0d4e38259278eb4b80d99edc90bf7af5f669de00d0e4902718fd078e32e1458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 035c8dd1d10c634442cabaed26a3d6439da98505d03483b038748ec692c84168
MD5 47de51453b0fc948545a39b6a89abd6c
BLAKE2b-256 3f2c752b5b035e90911fea59a984b3458fc9d9e7cc756a0aa01dfb075cb58b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1b8420b19beb8b20fa70519795b5c0ff866bb3ab1e0216aacb2310961904c79
MD5 5120354bb9db21db64adf1be171a057c
BLAKE2b-256 45ca73491262bbee09eabe4b637278eaeca2fbe431e6102be031bdaa71c95b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93e889a34a4673798b45cbb3e373804e7ba2b82d9646d15d8a050c254a5f41a2
MD5 95a8265d6267628f71d73760bfcfe7cf
BLAKE2b-256 b3cc271ef76eb049bf64055d959ee5b0955b42d457f3cd55c1e7bd63a4747082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 923fdae4c1c5aee44d6a383fd1510efe79f6c2eee8c21888c4b57a32db316f49
MD5 e79155cb66e868dfdc6bd3921ce327f7
BLAKE2b-256 4c856f507bf3083b1f545cd5b6f195caa090c98d82cb0988e349375a26e62168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51fcc87f280a8dd56bca7d1961ee10b8e921f31fa71d46e8bd454a94347dd2dd
MD5 5bab718c976766778595f906d3b9fd03
BLAKE2b-256 2f6d6b40ba8929e3fe8bc4756bf641574f6f5522e81a7e2e9d2013f633c76f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef467417f8d82ae8068aa0bf40febac8150c3c95e3b7f8a3ec0d13a7470ad4c9
MD5 6aec953ccebe83a641414e69728f1bf9
BLAKE2b-256 087568469f61df69af2afb36259437a1169350570e9116b95226e4c2d5f15a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d8b0138eefe341f32b145ccaba965053ca71884667b0cd5792b996355c6752c
MD5 5afe59b37e1ceb1c78e109d39cbb19cc
BLAKE2b-256 7c144de89a683cee6b526ffb4a83c825bbbcddebfc1d6fd1f2882693a35f1adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 609e1332726dc1ab141e31a9df8e18225c8e467c017cbf831739cdccd2e12c02
MD5 8a5c32689a41374dac21bf11755f7bc7
BLAKE2b-256 2d82442320b6a9b08ac98545b026a95e3db50245d9a7a1d6cfe5e660bbeea115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c874e6d518ee82555b2ebbb040d41ae126066e6dc9ac56c48fa8b54ee0a3561
MD5 be40353bdf8b1a0b3f22b2eb956a4821
BLAKE2b-256 190a244e2d5a8419a0ff2bda9e4c215f567f49cad7eb06aaf02516f416a36d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 317327e8ab770016dabe606437c5d9e6309b23fc25e0da716da66381eea82a4d
MD5 c6a862b096802ac6cdb711448b89c7c5
BLAKE2b-256 9dc109fc62f79733a8dac1128e878c9f437f7b4095ff4c1dd7bd0bbc0f56b2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 044b49a91952e60dc326901cecf54b97a1c8b894fd3c3b02949cf5fd6b10bdef
MD5 314207cc1250282ecd46fbebcc66c942
BLAKE2b-256 c4d5e8375928cdad892e0c6d377d3e3522c80b9c388f93e93854fbcf3166ab5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd21b44a55acfbfb8009d09362c1cc61e93c81074cd8b29ea96ceeee2b3a973d
MD5 e02a51e937b6bae3b94a5ec64469baac
BLAKE2b-256 b21585e58c4dd744d7b1a7446137dc23d25e1a092134449eab0ea0596c948a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a47b7d717049860d88ba14b72d110b6bbf558462b6d1135f19b8405f3848f0a
MD5 00942410c45bb02ed518ff25fba9fc5b
BLAKE2b-256 cf60cd3e34fcb5f4e6a7a4f7b45f4c8eee9b219711c5ee78ddca2c58f5d58ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f6723a8cd6c6506af7af14d0042563d89b4070bae8caa1907cf71385c462eeb
MD5 8207dedbde5f3a137f37a7c41f5d9bf2
BLAKE2b-256 4095cf2372e8169b81a4c9d0670b0222b3663050eff73d4a6c7198f8485e2543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdb2c83369e740cc922b54b7aef6cafdbc9f06c885e3173d6d5b117d8ee88a37
MD5 9c648ff6896114b2915af5a7b757d47d
BLAKE2b-256 7b8799a1b96a3cae1af5998377d32eac013363ba817e77ca62ed9dcd44d859c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e70eb6253f3d16433f7a234e13f2d870ff30cfd4e7448bc1713afaa577fbdfa
MD5 781493ebeba5b6c1d1cee5e6f038033b
BLAKE2b-256 0ba45c3101d150304993faa31347896bff33800610edf49d3608970aa89c69a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ba3ab51e4454c757f70cb173b4b2b7bb8f61a07c38cb917d4f6da299be1b2c1
MD5 cc7a067a94fadd168742aa0c92171bb7
BLAKE2b-256 90fe868e6d23438a0c5012baf62b47ea27106976516aea07c525bb8707428c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56447fb4a504d73e6c91334ecb198cdbbcaf24ce8d368ee459fb91bec3c351bc
MD5 5778a8df79fd45816c1b153aaceff0c9
BLAKE2b-256 d111d125e19356c208b7ca7b083bc3766fd23569a10a7834f5a4604868652146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35db7b898e8030802accf0212de2e9d6c704fc1dfd94f614f846cac67deaf77d
MD5 0f8d27a15f6f77d23f8af04a448e2df5
BLAKE2b-256 9fbb68a8210c27d2eab88e6a66fe860b157b7ebc3559ca4aa82e23f79c1a7cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4374b8627ecb9b811b9cdf802f83f3a876776978a742210bcfad92c85697a57
MD5 6bc2791cfa84a59b7a8d3eae250d48bd
BLAKE2b-256 fce51c586759fd5c70acc569e40a4296a05445224a37fc5d2118640002c5540a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c07978b477dfba4b6548a7f7a6871cc28db8b27afeb65ac223c342488d526094
MD5 3bd204a58de92c59dc970e8f660b8d15
BLAKE2b-256 b4a4d0b15d1d83b4d42322447b4f8c9dd8eaf9fd913d7c4c8945b882786ff075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bcb48699874e86b3269dd0322472e36eac44abbf5bfa6ea3a24389f43d08989
MD5 5b45c2ddd964294c412b91e3e79947cd
BLAKE2b-256 d91dc90b3b8a5cc992ccb7f01375f53ee45360988c0b4d70363b07c0e43acd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2163ab8f1bf88e507e6f6459af978bd14cb984d80dca9c0cb6701739972164ae
MD5 48e5829a1fa30feaf5938abcdddcadf4
BLAKE2b-256 6510934b7f25f0549cf7486ea0ac0a0954cd3ff6033c51a4d37d941d9f357589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38539854494622d4bc929fb8a3150c887912e9da0b0bb106780a297df8a03323
MD5 81d4baf5bcdb6c67d030fb06723343bb
BLAKE2b-256 fdc4986333e7e46cf476918b63f0f93a3213099842aaa3249299a25c5def2424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b512275a1bc3c1506736e7155e13bb260b2052ecbd5a9e22fd1c224d32bf5a5
MD5 023dbdac3ad66cd3a84b6110a2eaaff9
BLAKE2b-256 f75f0e0d485656334db952afe217cce064bb1b6746a688c2597634538863e4cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de4878c980084bf2eb0f0320471ff62f0ed821612e45cb08613f80233ef888ba
MD5 fd0bd52de272271ca486e5285b852b92
BLAKE2b-256 21f4cd5d2f465b5dba2f8965b0fd90f7736181e147b4430bc7a55596f5380224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d8ed3e5d8a0e6d031e8abbf2a0d8f49714e0f65f72d7813ed6bc06e04002289
MD5 3f3873764a0d8bbd6cad4bbaeac0bb54
BLAKE2b-256 48ec955afc7352b4fe04c82369ea063da35a2d843b3a1a6ddba3a6e4976d853a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a0131b542a480f47968b1bc37e365b45942da9a9bdfda790c3678cc67f3e1cf
MD5 2e4f5ac4683ab91e89ff493096cc7da8
BLAKE2b-256 f9956ac51e1d5b50eb8d927889aab7c8c869514257470416bb89b038fc4677a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b3e7fef79e9eea9c4483abe8872fd6e94dfc57ec96ef2173521a61d07393fdb
MD5 66fd7da5c1b0e71ca08b8264e74a2e78
BLAKE2b-256 04e1f63bf5956d8ba66ee0c0a14c0e82a765529b3df37be7c2ea91f3d2b9d13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15880c7fdef6bb197ff93e4d383718e0dcd4dc7ec1b7fe54bd4ea1863b0df5a6
MD5 5cef9002c51854b01eb7db4b9a7f0509
BLAKE2b-256 4313858d4e917f6520389f4bb9267c56eff0da5909d16b5cecb7c344c394cdc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e1badb317b0774989e81cca12df05ca0c4c64e5ff6f91c8bcb682c1b758ea4a
MD5 f8f7d727e43b47d698eb9edd5906dfcd
BLAKE2b-256 25ce6b312134508d38a7e1efc011ea72a74355b725885c0f3128364a17192c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4376ac234126f7ae542a7259c2343db9e82c6e60567354910dc3d07c80e5f519
MD5 0e630300de73d0a3b7db74c3ababa43a
BLAKE2b-256 5ae9accf948e92885a788f5142a4f8d2b827df7f31a5545366304f29450c889e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52dd93d6369b64679b742a294d8b0fadec159d3aa0ea5176ac2fda2f4b3c3780
MD5 0757091e7538538301f5c402fe0b16e3
BLAKE2b-256 341757a4b679c31f4e9b9f95caa8f8b2610adc6f0321773a315c1ff40799db0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3fac0a3f5e731fcd8f8e7ec24d29d262158b64757fd0f5d979036f1c2bdbad9
MD5 3c93e475be12ee2509b2fc6422249253
BLAKE2b-256 de2f2feb3e5f7e4299ee02f24d1970fa2dbdd4c0a3cea3a2cdd5a960223debbd

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