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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pure_magic_rs-0.1.1-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.1.1-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pure_magic_rs-0.1.1-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.1.1-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pure_magic_rs-0.1.1-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.1.1-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pure_magic_rs-0.1.1-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.1.1-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pure_magic_rs-0.1.1-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.1.1-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pure_magic_rs-0.1.1-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.1.1-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pure_magic_rs-0.1.1-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.1.1-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pure_magic_rs-0.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1-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.1.1.tar.gz.

File metadata

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

File hashes

Hashes for pure_magic_rs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 a1d98cd243b01fcc6ef4856ab33c10c79aeb81633e65df2030b4eab1f6a7dfb6
MD5 ab6a86b538b15bd8b802ac24cc9b6980
BLAKE2b-256 df2784b916a5cff5e8b0166e87682855f7678d5e04b5ef15be5a336e241aedd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a64a6904b36a0a5565290a9bf4ecc79b1db0811ea285c57d753a62720df02fc
MD5 59fe15b9e611845e479db135361cca5a
BLAKE2b-256 bb035892dd5245addd9158e11d0c9bbd417a7eb48dc1eac3e404c657ee30a3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b0353981fb354af8254c47b15b8cc4e2cb34faa33deed7d2c5309be051db5fe
MD5 fd1ad4f5774df2989ac966fe975d71c2
BLAKE2b-256 2ff22180ce8b84a091c4fef4d28684c629f797c9e76ae7d9ce0da920e4964762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ab75e6ab15db4141ea50ac490fb4f45073b3a2da0904a4a19003c9c83ea8d4f
MD5 019b133132bf73199d17e138cd022127
BLAKE2b-256 a7ef2ff6460b05cb543a1aebd9f53b52f9099ac420cc4ea528dd8e9af7d3fad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53ec1ce8e8c4f59e9f7a1e76186cdbf7ccc81d991f508a0b02d62c01c7ea65ff
MD5 02c22fae403898080ce03b75f8d955aa
BLAKE2b-256 26691a1026e2555b9601258115eda0afb0699660d692b8036382a33d08f348b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 080d12c19fefac9dac799bb452d7156318decc709cf4b24c2b252c677414ace5
MD5 4e5001083dfdd5d3f6e18379d05ff061
BLAKE2b-256 6da24ca0062a3e3d80e215f379362f73633c4ad4b06ea1a3f26d0e0814942c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4df5e433f5e23053df33a0f3bb03c6d73a35ce42e9fee4c57348e33579c75bd
MD5 60b6f7c9784bbf2310556002786398da
BLAKE2b-256 c012ddec46ee3cf46b9fa7866281f0fc862882431f67e63fd0f7ea091407df5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51b142469a9e3c567747b335ddf451f88daf0414b660f14c18c1367cab24f964
MD5 1553c1d504c8aee55550f6a50afa0a1e
BLAKE2b-256 3e7e68a6fc0f4617c4a06e004b785d8ca1339379bf0e96e2a8e9ab8170770444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec66b7bb3defb9cdf44e79b81cc3046b2b3046cdaf049b6e54deb771717a987d
MD5 1458a8ee187c01c989663d459c76ae3b
BLAKE2b-256 876c105148bf65f0f6bcc2de50898044a6f0a5c69cb038e265f3dedd05ec2b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29f28272c4763daea05e03b238663730a2c4d5f7dbb96ad873b180bd6b70184a
MD5 176780539e63852acff44a76a4aaab6f
BLAKE2b-256 27c14b0b4c187d2ad367491aa16daee03501f9d10e3e782732dcb3c81d31fe96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef966dd34ba5f7143b31a57076e6ea01ae65a0a6571db2a0aeb2b598a92a3a25
MD5 12f4e4add935b93cf7a59edb1ac77a85
BLAKE2b-256 ecf49469dd2d48fc7e3bb1229b7401316ea8ce427b6face6789a08cfd4fe4280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed1326a38e3489eb2417a8daf0d57ab9adae1ddd51320732f101408166a7310c
MD5 1ecc38325e9420b482b2d10ac8a585cf
BLAKE2b-256 40fc0f1d441096961101ecc4a28f9753f2afb1678508909b88136592da8ce470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9cda9e2eab63c682297637b62552403099e536b4ec6722ebfa77d0abb541bb25
MD5 2d06abb7b31f83588547293591bf8c79
BLAKE2b-256 3e027369bcad5f449952e54762f0df262716265c3a6178e0c0fa31c437b36eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e7d0700dfde3a0d2e65be39c8f012f1d30e5b7e879b9cda1d296fe47e3d838b
MD5 36e329bdce4712be13fdae5d1a4e9861
BLAKE2b-256 f96bdeb299243c6967725474d3a1b25096ce9390218e87b9efc06422701d9321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f7c79e9c075d7410dfe866aefbc93faec220f5da2a2b1303540709616ce06eb
MD5 b4daf513bc56fb19c203b53d0f62f68c
BLAKE2b-256 cbc256c417e2fd7a3ec5a9022153bca9ee14700ecd95484d027c04e2c35d08cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a03c1d35395e8d1654e5a64432bd2df624d90fe9244b74e0e72148aa30dc32b
MD5 e953fdbf6e203db861adc0e30cfa5e40
BLAKE2b-256 512e7c6fe98e5dec86884853a8a763ce068a1fc018ba61e041df88917671cfd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 286b5a2a353f0d11b68070663be2bea2fe9c6037f14219afc826d1da03631917
MD5 2b268e427e93773430dc47d3ff83895d
BLAKE2b-256 ab0f03a69256193eef0e4a5664149188937711a278394c1a66235b2ca0888bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8ef2d5bc49bb3cb43f4da9f83cd1d956a582d3ab8470347a7243fa49790f8f2
MD5 0c579433acf0e9573e663ca938e91f01
BLAKE2b-256 4b408faa2d88c186866ec0ec8a21ae6801b48d792c02656879bd1633ebe64f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ede9dbb0455ba4e86cb4e6abec6192adf46bdff3adeb08be5899d0f0033afaf4
MD5 d2f56ec89a5db5904d38e8c24553d8a0
BLAKE2b-256 28fa07ce7b88c455e7305d249e4c1d5e8179f931256357c42d113323823fe7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d426588bea9b027aa922d5aa67170a190c7f367cc9afd1c83844fa45236364a4
MD5 aa3801c8ba0b014bb4c061313b44be61
BLAKE2b-256 a345749682b1b89318882852c390bd387ea1fd48f74d7df3e95a9db22e53ccb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a0b4b870a19d345ff655e4d5568cbc3f70041ec055bb222bd794f822c7819f15
MD5 df1003868e633d9094bb8186ad5b26a4
BLAKE2b-256 49d1885d357f3785a02371207d0d6c727881fbe98ffce9da0f2ed0e316e1ea74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3dc897651e3ae4e6d169d6f28565ad23f2200063fffd041c67d8806787b45ed
MD5 045e0c41e10dd6eb22778fd3ae8486ea
BLAKE2b-256 b810dc776fb79369f8fe596bc8de00e2e4d63ae1cf9f2d85f86f0228a458ef3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe4d926011155703b714a360a7e6801de0dd85f43bf257d8ecbccad4385362bc
MD5 90f98ab9802314f24e356ca24c2228da
BLAKE2b-256 e86847ccb18b4893e95edbf29b4a1d3dac2534e38c7b6fa74cf6be6c2082566b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80dc3d8bcce8b61c2193457ff81fb9c45e4a5f84c6966433a582f0626db6183f
MD5 38bbec2be5ca2c72fc46e0f2072eb91d
BLAKE2b-256 f0129a9df4c529e79db74519529ce7da0d5110576ee543fa3ba70bbb7610744a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee9518902633dc50bc3ecf5db720702104b98aa06b83db74dbaee3ddbfa22282
MD5 b8df57940fafa378acaab43d8bc30b87
BLAKE2b-256 6120bdf9c927fbc94cbc928172e9180641daba8a8dfbf68fa0ec9419deff7229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a30f688c8442869a0f9b43a7884de54ac7fcb3891dfd4a7f14f98517351f1faf
MD5 ade824506a9fb0bcea9ee250c3ad7593
BLAKE2b-256 f5a20d2e5d16be6c173deb79e104539d4f2689c85c15a1e0476d301b489c1118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0d623f49373e8330e0c5bedcf7fc5d99d63b38d86acb0127ebee183c9eb0854
MD5 469fd9040fa16831270d7e6d9f2cac66
BLAKE2b-256 da8974a9d5dfcce8342dbac8c1816b318b122b0b603faef02108ba68b1b11568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ed72b41daf7681c9e3e358071ba2667e659909a5f668c4529dc5fb3478bd0c7
MD5 fa5881b2bd7edf76e51a7edbe4a0d7f4
BLAKE2b-256 477023003c130263e75bf68a9f7c8084c04a63bf45c0b39d01b544937cd2ce9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2895f1ec526939b6a602172e1685f1747c000b07785b38caff0e9b781f42620
MD5 a7cccd8c41de7a6a1639d357faeac01c
BLAKE2b-256 a5424d15d676e95c309ffaa8cae0df802fe8942a30ecd0639a7aa9bb8a05fa9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449f6ed412688b53eafb3577fd4a641a4983f7881491480c0bb2a195c7c12205
MD5 b75f18c88550095966cc18c289f15c59
BLAKE2b-256 d859e44b546084e53fec7f69daa1d379472ca64c8c06fcb973b881402481e6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9658065d3d184a6bb3ac29d0ee1365fcba4309bbcdf570510597c29fad5d3177
MD5 b0850e7cd3f934122ff25deb6ae295b7
BLAKE2b-256 80c0f9e55694a56a64187b495864d2a652f3513143cfbd6c4af434e77f7aaf7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df01c285e56fcd9e03b8df156502f1630112b4c806fae64fc53b863df416edda
MD5 37b2a8299282c08c1ceb9de49ba5240f
BLAKE2b-256 d2c285b876506557f5e03f496d93a46dc755f32c051c9f9a506a0537f621fb82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecd5dd56f4dd413a81219d6c4fe93828e1cf6d8939675b53d9aa912785f28c1c
MD5 dbda5f483ed9c2e82e22a8817e5e3ea6
BLAKE2b-256 984ffb85ca33ef87660560f66e935f5b74a28f68c501ee0c239b5544d9432b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 beea73839b1103317cbd38e8349dc248796c49776c80007890ad44c1c07922e7
MD5 18e986e31020f9fc460fb762351d90bd
BLAKE2b-256 5f909bcb41493aa5ff2405d383eb6931e736b7a16bf2d8e2c24aabcfe3de8429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12367bf8a21322e3f120bed4aa33a31f510afc37dd55e4c6ca4948e0a91ef9d8
MD5 6b846ec318fd6fb63c1252d12f6e01fb
BLAKE2b-256 1d62eb451a1498be42f25c44da7fdd69222e7132c96466d6a082ae7c0c6db96b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff0981927782cd2dc404d69e571e05c899b402a4f0c260bdc34af8e1cb520c41
MD5 8c06360444c59515151afad76ff13cc5
BLAKE2b-256 a6592fb8517bf8f71d73e400b8b1acf8c01c9632d87e77ac34af3411878128b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52512cedab311e5a110a0fb10f7cf39fec63dcc54e980801c5f4084febd2e4a1
MD5 1b1f66cbb5c0d715e997aae563520be1
BLAKE2b-256 b04ca267218f695e3e5b0ab49c243a1d9303f7c3e1619ed4a8e736aed89213bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ff7d97eb62fefbe75769e6134e3489de3858ae27c2cba380312e5aa289c5ea5
MD5 071e0081a376b3a5c8ab01639d0cd658
BLAKE2b-256 8046a957f747e27274c8b38d7b78f4ac135af335619e73d5e2c2fe47c2c3ce6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1bfca37a2ab6e329ec5889333a837dd50d314145ce8a46d25d1929eb4f2314f
MD5 55ac51f2ca81e60e552795ab7bfe4e40
BLAKE2b-256 b68dc2973c465e53ab112703c4400eac9c4254b62903aa9596ec1ff696599a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c79f1d2315b8f703d37bb94145bab5f619148c5015ded6b7001f309cc310ed6
MD5 fe13f8c8dbc163871968ea49c9c80cb7
BLAKE2b-256 fe27e02f493262c186ae0c8fef5109a301ecbbc31b661605c33ac159f8a59bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef37ec86a724d8f70251ac612301f2074802a00ecbdd449515bc0b0601b07120
MD5 46c40bd08f8edd43d37485689b1af9d2
BLAKE2b-256 8c9362c630a463765276265ba16ac12f8cdb70e14e625859849ce97b60a203d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 241268c7d95db537e383444af1b8abdd724e8606db74ee5df999da4908928c2e
MD5 8d0f24a0bf582a6897506cee3a004e65
BLAKE2b-256 6caf4ac34b18efd343d90fcb6747b908bedd7e1556d97ee4ac93767c434223cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9543cc16ee6c3da4aa9147a7258525929851a0fc73f8051fe5e391e54de6335
MD5 f5497681827a1f84f9ca4891989e3e6f
BLAKE2b-256 26ece563721a87f09782d3d27deb8fa929e1a69f68759032f53382b9e675a54d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48987c9a65a39199e83284a1f82773a8f8e2b0e5808b23198f54cc83eb715218
MD5 4f163f6886e0f1dc52cb2432209463aa
BLAKE2b-256 89d85ae4b57a97cb224b417cd62fcdef14beff1436971724487898adb0aae597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50799c48b7150daca5e85920bd0c366466ec63b8ff60af0e663a089ff3b1e99f
MD5 8e1c18f4604b1315b8ddf7d076ac95ca
BLAKE2b-256 23813ce0a2ed2a711d87b9a86ec70314b8f3e6624804f24d5d1f1e636f482cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d2b6add6499c30a54a387437867bfcd5500aa191c1339bb1fa786eeaaf0d802
MD5 7ddb92ad7d1f05367259f630e765e14d
BLAKE2b-256 850ef91d12e06facd4f6fc02f6e733d8ee7fed79cd253eba783ab4e15213ce62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91c9fba71505ee20920cfa865f20949222a855fa170440f45b2f39e5bdfa97ec
MD5 ef9723956417ce2c3eb54c0520292a85
BLAKE2b-256 33974624c2f13a680ff2c553b9c09755a2659fc0c129acf02ac45c04aae7775f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8aee87003eac631503003a9354468b1e68c69cddff40e21b22fffbc8571605af
MD5 f4f66353307be500067e087a1c89d6c1
BLAKE2b-256 ed298411966964eea34cf64b90bb91e4401d8547c537b01555e70ed8437b1c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b04acb57044cadb5be17557772d5717239a8c323615103dc8ca1a6c0691fb6f
MD5 4b3cc2676c1f34cc65e38d2905425207
BLAKE2b-256 2d88d8d2e75482482dadd1d48ebd51d966c7fe333f06e8776370453150c42de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa527feee2bd13ad0b3f307190cf7e3534331863c6678f2cf4bb9e02283529fb
MD5 9ae7641d855f8b6640edd470201362e5
BLAKE2b-256 c9323b1b99635667e283f52543e1c270290ffb218d9ba0a580b2ce3218a47ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c0f2e7310c308b4c10e9dd7aefd00ab257e1a6f0e1e9540746ae09eecc1ed2e
MD5 c238a621a3bd1be2431016cf5deca8ec
BLAKE2b-256 b28c327374b2973dec31e97fcb41818a63e0aced567f5d4835a5034882f0dfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d455037b0ad334579231bd39389fc048c454f8d19ad8e1946266a827e2280c22
MD5 6dd3929395728cd21626f4ce445b167c
BLAKE2b-256 87ef169445f406326d6e03926200b4c2301ef923a2a6c2f21315a0d2653976bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a134c46986dd71176da7947c3d16e574c91ef5af3650a848c0c4673c900a4216
MD5 ce101bc299356809bc2e3581295d4b7b
BLAKE2b-256 7c6a12052b3c41aee2f89de370dd708e9cafbc45b7eec534c0cc84edbd5dd40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a810e163b2eb38163832b1bb2ccc1bb4ccfc12106dae71fca293e3a98707e2d6
MD5 38e2ebad37de93c7fe27ff649db03d3a
BLAKE2b-256 07f8d1a869797c2dbef93668b8a977b2b92a2503c85864feaf431271f94e5bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8a369a5e42c63b6de4801b83eb04eef99a75093959872eb8bb4ebd88e1dcb0b
MD5 5094f4d21c694a5b581a1630a0206336
BLAKE2b-256 400db636e498d2ae2bb69f669e1d78973f2aa62467cd55b910883160945eafdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c46b828166e499c3a5a22becc9347dc5816cb1ec53f9c4406b7f62c448b9b6e6
MD5 432dca7b2605aba2f6f807ea1eb2a889
BLAKE2b-256 52c2771b1f52f1a7d0226c7a5d86af088139e6341e4de9332d24fb7d83fb2b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d62da62ba2aa7e4d3677b680c836a59db93b2c5c0ab3c81f45ae4500b58ba0ee
MD5 d1a6f8a8cfbc6eebf98479177176dcee
BLAKE2b-256 b174b8991fa0a5697acad31d570bb4eca5edab4cf383b2a570e1c2b153de7d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bc8cc46f33791ff46ab0420dd914a6c7c5ea430e6877686170d65356e0b3520
MD5 ae825146aceb930cce685f0e80205ea7
BLAKE2b-256 26c053f0697a32fcee6a43fdc846d43305bd86b045bb0ee77b2e84e976cc0d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb4e99b1c62b809a0f4c31d3d8b1e57716fa7fdf50e87749d0dae669abfd5aab
MD5 a0b5fe10ed8f32ee35aa12e9238832b1
BLAKE2b-256 aaf2ab3f56fdbafd7fa9d465c408b902b10a04bf85beb1b2a03e1415e1d431d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 006c1f3312f14184d1d2afceb7f57d3db7a10f15dc6b54f448c68183ed77c7a6
MD5 181fe3470c5ab062aec5c076f6d2edde
BLAKE2b-256 e3c97d967bad1b0c63c613f0b87a4063f55675776e343258759ac0a6d35c9775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98b5da3934a6722c0de4817e1240bb7d589e7e723d57eaec0213508cc41b6eec
MD5 16589edbd8122942d6d97dff61b43240
BLAKE2b-256 8607617125e16c24f39cd1e05f6b88871ebee2d960d0a974c649aa8e61af6577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f360400c5853629a8c723d2a4beb4b545967e219016c7028adb8f7854fb9bd89
MD5 524e17f7095dd2171154bca1f5958047
BLAKE2b-256 29b9d474ba70de2fbfe870ad9f4efcb631c9c342577091309db30ead415c6138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae980b19b4ca5d267b79877781a31ed39e4418b4aedaab7690a94a80d35847f9
MD5 3755d57685c71411df0b0c1d95e280ca
BLAKE2b-256 ff5931a975ede72342d401111cb21df708e619a262a701504f4d5abaa1dc1c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9db41d0d0b1c3df42a9c2d48e2f35a2e39720a5c93f832a31165f9917b37c2a
MD5 ef5109a8d0bc65788d06fac476ab1de8
BLAKE2b-256 7ceb5df0e505cec72677171a8f0a14bd6c0b4342d9ec56025552a5e23eabde9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 369b883fdd6ee1dbf23f98db85e6fa15e2dfe9b60c38924540a3b36b05825282
MD5 41546c4db3979a90e81ae5b89b403d70
BLAKE2b-256 f0a4e075699d1e3b42175f1d6ff000705986c55e114c22c3c80c29abd9cfaaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8af4d958c004c0a85ced7618163ab74d330e04f819b7913d6756d1521c959522
MD5 019f475750fe8916dd53e70dae667ba7
BLAKE2b-256 9679f4b419d8eeb167abd068c9873b80018964ebc79109b2236ca7d2f96a86aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23daee20024e94be8721756d63d959cecd2f4f038c216a9898f9d02f0488fb1c
MD5 9b9c1a83734624a4c8cc088302c1667e
BLAKE2b-256 620e1f79b0d09e14dde8fc0fd17c80400dca51ea7afe9178f5236228456646d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd0ea0a9a3e35dd96eb7ea707d6d04df7089cd0b8d61303dff0d65712272cc13
MD5 cead72996942137e7bfab6e1f6195e74
BLAKE2b-256 96df9eec0644e0ce56672da5a0f4c95d43c5232b9ea541a4ce04b01dc9ade929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cf3966b65c015f8f2577b94ef38b3d15c9566dae2c3688e02036d20719544ff
MD5 8846f79573ddc723e84e5b883c28d87b
BLAKE2b-256 b4f591dcfc2c428dbfe5af56666a43ac20eef674b628e2ded1ecdf4be6de3b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cc9d695582cc0748a4eda82377e111d2bb38a3f0c50916696d13d48230708ee
MD5 8fa85d5cba05cf0568dfab1c2a77f83f
BLAKE2b-256 4233f47ad1ec8ebcccaa0767009c7b969f0d1333c9fe244d03c9424b5aa12ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e5d0ee7f8a827a840a921afa5487248c189297463d98b98b105130d7304da9
MD5 74e97bbf45eb26d688d8116bdaddf3f1
BLAKE2b-256 a99b48cdecebfbb644ddd2c198091d2b115acff996393ae5a10b7e8795c97ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a36709d6c786541feade8818c9d8f4daea7d7d7700992da7f5dcbbd811c2a4fc
MD5 f567a4a8cdaae0bb6f0293869cd9f280
BLAKE2b-256 1dc9953b1a353251accb7f4bab31c8474cdb185e1ca1580e0c91eb1886a8f90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3379cff7fa26713318c44d19b0f33f5ea4fc06582e4495d80ee03f3699efe62
MD5 451af67c5d0e86207f07a384c5783ca0
BLAKE2b-256 dcaa9a8eeee197ad138478220f410b75cf06abcec74be0eba6e42b567ea9fbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da2de480cb3310dc63550f26387bf24a2ac104151764382279de02f97c4f9d21
MD5 995a4cf5f059d631c4f12569cd751194
BLAKE2b-256 571aec9596e3b7d588dcdd94465be60ffec456d62d757e88d47587060d0546f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d21724b31aeeb7e5cfddad4c1ed339d784613d2d894f881deb33b8bc963e25c
MD5 e52fc9433b31269194f57da8115c93f7
BLAKE2b-256 bf60337540739e14c225fae39f32694cc8a7dd4292c195e5ece034d4a4957fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46b56bf36e09b45c8e8a566b40b98cbd4725bbef02d5fc2fc0189364cf318d48
MD5 fb49f198c2d7a075bfa045c951f92c07
BLAKE2b-256 da8a1fd6bb0c4c8504a96f54e2bd0ede576edaef8e2f18577088c93a4513e1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9dbf33ded4194e668c32de9d435037577b698e9945d3203ea8955bf2aea50ce
MD5 f4972ec1b24c2624b3180079ad169004
BLAKE2b-256 4a57703155ea9fb79940548c05b2f5533b18c060d06dacb417b80fab5cc8c9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4240875326bb73c3934b0214b2b96756ec3440881720219e77316c0d9524bde7
MD5 e44c922ce6005f0b8b74f2efffbcceb9
BLAKE2b-256 825f26d0c4be415a3bc400fbf9e9eb7b529c5ceaaa13b501857687d5de0e005c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d507621f1cc6177224dacbc6cf73605e7f05beb5e27b053ecb5e1b52b0c775ca
MD5 59667615040d51f65a8e83f242b2f91c
BLAKE2b-256 b20bafc3df9ca4941ac460586962ac0c762164ed7f3a9331628de94eb07fc94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3fbb997a2361c2665e51aa7540b988780a839e885a22bf2987872b12728b5af
MD5 41611949af41427ef5a21e4701fc4d94
BLAKE2b-256 b1dba8bb4fc45c859e5758b1cc5910b95087926902ea79e169bc7d99f9b92697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e4cc7e1505666f5cb74a1ea7292636f52243fe87b1f17a7551124e5a3cedfe2
MD5 3f62c72f8de101d474dc3f8fe4f534c9
BLAKE2b-256 9339d9e8a27d31a1908cfd65481497809d9b97344bbcd5b5d9185f7961a4c46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4e93c6acceae4dbe4c25a6e0906c772f53ac0b507e39aa980e2f6b9f0109866
MD5 dc919f568fdeee413fe4153de38b3c78
BLAKE2b-256 d17fea6671ac0fd6934e598b2dbe8961fdd53dbc2d0bfb542c4989c01e7c48c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06d6e3b26b1b3ecc9373e7b211185cedd444ca351ae995feee01ce20eee4072d
MD5 9823190261fea0d4ce50dfd9c83e1b29
BLAKE2b-256 0b425a0b4a755c5681ce406319aab887b0ae8904228f15b019e1b93cbaa5f9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f40d6d942c97ab93a603142bd54b2ac9a6ab16ce88736b208d8f802afdf2613
MD5 e1401806d8646c9eeb753e35404e3f4e
BLAKE2b-256 2d170dc706e83715d2eaaf7b73a2ea9959ac63566f60da2ad700e605589bbefb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b89d5a9d7702bc883a6eaa648cd77addace1efee60fce38184b5ead2e9768a56
MD5 76c5ce80f55b4e240aaec9d4936ec9b1
BLAKE2b-256 2b79ff1db3f2dc56f682b48b4a1394bf9a7f1563ea3b023e2f7d77636263c64b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d91d829f3c67e44d0865e19719572bd0fb173f5d8f38e29d4f5961f07317afad
MD5 f2880ee3551a4e5f274fde27fda9404b
BLAKE2b-256 2d9a0b7d4216f5c71419103bd669e85f11f1e16dd96de35c365b8d210780c11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b02e209f2e6c1b6eb2f50e9855c4b8d37f04f7e21835d0c7554c300d41a57f98
MD5 5790ddaff6e4bd368ce747f25e5715fe
BLAKE2b-256 0f0cee4d64edcd816ce304e80969106224c6df0d92050e0578093ea70b94698f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5713357a163272c0253d26b681d595c77f82d5f0f2606574f6c07a26650456f5
MD5 ee9de70026a02e066b463d2930fe7568
BLAKE2b-256 383df74ff9f28ce562f6f50f049177db4b8c04450440ef5329c53264a26135e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ba2af573353318fbc0f513639538d6b07544d214a14f6d3db34909d5397a6ed
MD5 aedf8eb92f54f2f50d4f45940b47a384
BLAKE2b-256 d08a1268f3dcb96cc8dd0ee563acc1b852a88dee29ed14801947d68d159131e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 125bf831020445cda0efa4535328c18973fe7124fdf9acd0194365e121ca7adf
MD5 b4b4d7561714cd2a6d9ee79974087eb2
BLAKE2b-256 31926871fa16c285a94e64cd4a269722c876a270f308e5fe49017c77506ddac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6af2b34ab81b9d52a5d2a741b63acac199c8d012c0051183d34c58f4a4311a9b
MD5 9a3096b09966acea3b01339b719d4e25
BLAKE2b-256 7380944d460c5e283c33f0aa2284e0f5d64566b0f17aebdeb6ab980ac37a62d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b44a33b942ba1eddeea320dca657150e74fda5d5ba635d1d43bbfe0c6eabdba
MD5 1624f471978f152f641c8a6025100ba9
BLAKE2b-256 a970cf2fc6237b227f4019d2b98b2fc8b8b7ef5644fc4424762a4df0b5ed6afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18bc3ae7cebb3bfe513b3bae43e1564f7281546003a1b22346c1fedcf991fb3e
MD5 9ae5197fe8603c474bca50a9abacebb4
BLAKE2b-256 8f47bfc22d3a852c26ab8c1c47eadda347628bd1a39f6150e5117140d241853f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36bf339d5118b467505190c6cdcc29363da920db94b08e77a151addf8e93d4a8
MD5 69e0fa3a3d0f929d4b54987a9e9a4903
BLAKE2b-256 3ace86c915058b4395b3d813725cb6c1497425cb5de9cd98375a08bceaff083d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1a0a0bba2f7efa68692264be2195e0a0ce765becd48a9ecdf881cf2f90c38c4
MD5 952dfadb6b5ce6303190258a5bbb8018
BLAKE2b-256 e56663a20af8f9e454de67607919602f290fee41664f7c926ab15a4202ea91d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7741da9eadf3c4d05aec18813dadef60376c963964d5a16561ea5116af638d05
MD5 a0aed52cf216ef77eb9a5ad4bd938f59
BLAKE2b-256 1b7afcea949a50187be37faba66fefcaebd376a5d3a2a2bce563bf5902a1f67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f2c0f25ebd82c3ec97354a382480867ca1cde491e3dfefc0dfd69b5b174256a
MD5 b754f1e5c09a8e322cabb4828b720dde
BLAKE2b-256 707ea2bab28c4ff67cda67cf9dc1dab829b041e1cc2ccdf0c41aeac56bc88175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 086368cd97dd51c6d0eee2a846534b72d8c554d81f224e9bdb19135248d22a5e
MD5 c59f20647f8dd912fec1b8eedf5f27bc
BLAKE2b-256 7f2b450f5e56634278165941574ea2f86b7b6dabd690ff319af98d56d841e44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e65b87c56b8775f110c3eb933827fb306c48f93ea4a6b4268b7626d53c90b8c
MD5 2a3c8cbe87894cab453bd555b452efe0
BLAKE2b-256 5a59055a46eca2441cf150b4a571f9331ca45510b6f9684b4e10bd7957306293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3def0024233cc679596b1925027081e832ce9a6e6116f8d91b5784d31226f9de
MD5 72eca5d9719a3a9cd999adfd985db30f
BLAKE2b-256 105b0e6724b8684a1178972e6c26cb17c0fc5fb81946c0a86f7ff82e4275b464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eec19d2b63cdca85d77266b29d071ec8f2385782541cee9c2cfeaaea92bae23c
MD5 33c8989a95ef9a53e409f14d84d63338
BLAKE2b-256 689b898dae952a45773400c06c218f686ee7c6fec36fd3aba86aee34763554cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bef9efeb88c65ef4111fd7adf20a50063a46df546e1e14ed960d1911ef427ee3
MD5 de0848077270fffae90a6bfc7e43c054
BLAKE2b-256 f287d4e951c6811a42bd485ea8ac855185ac485b0f7eefe3bef3707236c35064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b63e3fe83cb597fc078e793ac0cca72ea4faa1260d841c6e5b84bda03a4a4c0
MD5 88f04717a9953f96b5b6378e875a76b8
BLAKE2b-256 1aeda4b92b08bf3b8eb635c656d83e0c33c240e722055cc77b12156b3e33838e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2171c381fba531acca504a16132f32614cbe31cbd8665e2bc54ce6b1de34ea4
MD5 43ceaf84e98f46138bd7df027ae858e8
BLAKE2b-256 b132255b3871bac01794b7d286f09f00d51f232a2f768213654c1cf7cb18c3de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9e9ab5857ba32ef8d2c89a543e40c18814c38ac59ca9017ebd9d2d0f1872cd3
MD5 d2369d4108692551b65b8be3ad0aee71
BLAKE2b-256 d095571da10677e51127c84350b4be79f7f71fc02871e57b8c228c48d5407e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b41c4542e5bb17d221d449b1548c51769ab4e615bc363632c1c76fd9d00a2091
MD5 be15a5df05c35dea0d049df00e6170e0
BLAKE2b-256 602f0acea124871e88ba6811da490454645114beea7731b5aecd537ce51d3e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae600636d5537d84631206ae9faa324394e0f0ec08f162487885a21166cdef14
MD5 49750dd3df012297c8b50c974e598a19
BLAKE2b-256 9cf81bb00a176cd95940905f5cef48756bd4d1208a5263276a61e1752d35444c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9467964608927c33b34af1d197d3d941e3c3e92e9a616db53bf5571cfced17a7
MD5 0e4f64491eed539453eeedf4c51cbe57
BLAKE2b-256 348d59ace941b2b7537c016bbbd4bd45021d8aaf91497497c881738a7f4b6e66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4d67e34be04f3e82b48972099c654f261823aba254e7514f95964eb571ee3c4
MD5 756a7c7cff62eda1e6b605056262b958
BLAKE2b-256 549fa084a37763298e145d7a8220506fd968b119310d89647b9c3e89dedd1aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ee36cf2050e0a5965eb292143d7b9e4c85c6d6a17a3b28588e025dc4b00a315
MD5 ccf79d5c925c0442ec6a0686b914cf1c
BLAKE2b-256 4b07dfbdf1e6e4c5fda44eee7196508f23eb2e447838f2786b1b012b5879a0bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abe68ab8f5182c8abdbf8cf6ea77cc32262210405781919e7a55d2cb30cba35f
MD5 7fafc635954b786a8f57edf8ad5e4fd1
BLAKE2b-256 e270b069e419c52d387213d7a1affe0c0c7e65d02064f3cd4e634e7490195c55

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