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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pure_magic_rs-0.3.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.3.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.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.1-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.3.1-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.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.1-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.3.1-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pure_magic_rs-0.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.1-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.3.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.3.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pure_magic_rs-0.3.1-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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.1-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.3.1-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pure_magic_rs-0.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.1-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.3.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.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pure_magic_rs-0.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.1-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.3.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.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pure_magic_rs-0.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.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.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pure_magic_rs-0.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.1-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.3.1-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.3.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.3.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.3.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.3.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.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pure_magic_rs-0.3.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.3.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.3.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.3.1-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.3.1-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.3.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.3.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.3.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.3.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.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pure_magic_rs-0.3.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.3.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.3.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.3.1-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.3.1-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.3.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.3.1.tar.gz.

File metadata

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

File hashes

Hashes for pure_magic_rs-0.3.1.tar.gz
Algorithm Hash digest
SHA256 68452917695ecd8915cfaaaab3969999840c831e7d6729334d4ec4b9096c5e38
MD5 ee462a1d690ee4d7b20243ef66f591b3
BLAKE2b-256 7c85c062f4cb2a1807d42eb3b7e544c27585d1f472d96248f30764047b464701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 776396ed97f8165e38f273794859f82ce196a8d90f617d529e343f7b372aa896
MD5 f95cfdfdedff67bca7d08db6e04a5bd1
BLAKE2b-256 70417cf33327566bfdbf0d828f950d70e1a8f06e2f67fc15c668805584f5099c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 160b7c7889be02cf52c316204b8b8d66426bcd1c406a750788a9bb9c36601519
MD5 8f4c4f02371a8f364972ecb5f98ed293
BLAKE2b-256 d955f2e45b9165a277078dd9017346c0e9f5bbaf7489f3c5f970a070528694ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77293ef7fd0fc40de5f817f960f7b4cd4cd2724ef51c5e639d05c8d5deeabb74
MD5 50ef3543064b4dfacb21519315957978
BLAKE2b-256 0acaae87f9c7df7d88820e2757e3a3fbc13847147800d254ed7e1a0e1dd19261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28397af0a40c8cd570d5556ff179e8c3da23e3aa46340208ec669776bf0ec4b3
MD5 6cab4a7d142383b1e43bd376904697bf
BLAKE2b-256 bacb7e6ba0024e8a61d293aa37a8ed5511031762a88c61062506188cab5ffa62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7592c3738b7e9e120f909d64c2d007a83914f3ead77d49eaa57ba93e4d56e0a
MD5 8ba8e229cb85dbbad3da6083af00721a
BLAKE2b-256 d0c3abf6cda97eec88d9ca528dbd927d18ff7bf9a788a5af060fb1872f9d061e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e1f88bc196fc940f9afad156e81e7f04c0ee35db89136a5f69f43a7536f083c
MD5 ad576f5915c7e6b9d3ea1bd9c09545bd
BLAKE2b-256 4b7cdeac2b93f951be121dc1a348d8957555294c048ff07a5c91960cf095a1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c5c1a9122828fa2c6e3398ab962452c3d6efb101ebe708179ba53017e6d51d4
MD5 5265baf545aedd987131a6bd39ab99eb
BLAKE2b-256 5873dc0e796675ed5cd258df1b03ccdeccce84f24d22d0630681ed7ede2f5b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b094eea5ce1a5f0b1520e20c9ba3743d52fbaa69e8e4b8f096b9d9708789118
MD5 db5d7bdc4582ceffd13fefc79a465f40
BLAKE2b-256 9ef1b706cb135d78eda30835d5b2c8073170e37197f4637b97ebb026a07fffe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 780371efef68d479af67da3bb94d1de4491252ecaf3b23b071057f114bed0946
MD5 7f5a74b6752401a5e497c5d40f681cb8
BLAKE2b-256 9fd4b7b463ea0faf5dfa503c6edbb8b100f2c7728a5600198ab719ace6df1399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34d6ab8772f53965e9cba8dbdcaee1d02e75b9c76e90f3a29ad5d6425e7f5830
MD5 a83c6c3ea8e6d732f110d717104dcbff
BLAKE2b-256 c014c5e3ad6b0bd40500cfa8a2641d43beeb83b2438ff80423affd385939cee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1efbe82f6f46b168c0e80a8b799a3116cbb98a29b8b658c7d36cc2ba5bfa66
MD5 551229af9b096912deb8a2ea79938191
BLAKE2b-256 8781440ae2e6ef543685fede2b3ecbc70de0bcbed09576fb75b54070c7c3eb10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e274a27e014eaa61e0f7a4dbe9f2309f2fa1b37625a3e34c3ef2a2031856a28
MD5 cc6d3afc54f8da388578fc52cf197c6c
BLAKE2b-256 aac9a9fbf38682863bf214746804371491306547ad0c19c2409c97370ce283b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e87d10428ecbdeaecd4213cfd1791179951a67750cb0201dd82d7bf1a5c145b8
MD5 420ae25ce43cb83d38c30d774cc086fc
BLAKE2b-256 d99a9223f5b5dd65010366c233be4ce1befc2b70449747b959bd37645a3d7422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcb033d38b157d948fb2a1565a6fd3a61a4a233f21b92addb4d6cdcbfa41095e
MD5 815f93e3297a9e83c9a93385f6a5b662
BLAKE2b-256 eb770a9eb8c6950fa338eedde236a1f1adba7f7b28aafb35f9e8aed3ae6289cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef30169ea0b400fac33c5be8c9fa5b1f12ac9fb36e6199e5bec55ac504809d9a
MD5 c17345b39376377a7e3fbd4fb67cd5a6
BLAKE2b-256 37ee1f633472fa8c4ced53a79d308eb33c7beecfd7c008d412af8b3c16fdd3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 137cf8691ed732d707334fd25c9987958e04264766552a3d877a7738c1942812
MD5 9184cff0bbada4db5ce15aafd27ca24a
BLAKE2b-256 321ea5cd3b65baf9c3a40112b71d89b6241520505ad0d6dc6f91d28e6e94606c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f2b9044dd54eb182d587bccc4dbde227a05928c159bccfe201170e31fc21e7d
MD5 56774bbfa3f39e12e5001fa9b4d6c56a
BLAKE2b-256 1e7eee931056eb3a2db7722eb87e5a2d8ec0499c261e793f5bb02ec02a550dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 435f2a682f21a081d9c48e2e5ed72527358eebc6cdd03a598d1c6f4e8862bdd7
MD5 41ea09c64e10cc6b84b8f52c0fb432d3
BLAKE2b-256 2d72718c64ea083e240304182ba2279aa0f2062781838c01541398d9714ab8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 178dfa2bb822e6f63eb1917b7180600ab7ac1e6e7af40d61e3c84e08df6f468e
MD5 99f5759179f65ffbf082029e78cfe048
BLAKE2b-256 5eaf100b92769c52cbc773ebbb2cc90b1b346efd1e7f5aeffc62ab81360cd1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 490374187aaa6e4165cc0a542e50d6cdda7e5674289a4f8ecafba557cf43919e
MD5 7171ea169094033dce0db735cc9d906e
BLAKE2b-256 f220f4c59cbab8cacd8a95a09a7a52597b242014cf0b45c43eecfe378b0749f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 512e4ad99ee71489ef6e9fc4ec4f914eafaa02a3b603ee4a1322b8d2dfa683d8
MD5 ea1b775f55a2368352e390d2a0101473
BLAKE2b-256 855076d9e206bd4f078db4478f50cb81fa84806b50cf0365ef43def2def73468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44119e8c32b09268a8f1cd414cad64af5ab129e82fdd8c6b0cdbfec9b12fd96f
MD5 b2a138b418bcdab100f203651874c39b
BLAKE2b-256 b65da884471fa12b84d8c3937fd7fe6a2bd999b1e6ff2fa9d430a3051d35f098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9e48f51df74f8e3d774857dbd801c629a606534f8693a2c42fe5d4f97c05596
MD5 148afb2a3cbd9e3ea56f68226601ccbe
BLAKE2b-256 5c8c3cd250beccc3cc440f25d54d8a669f2550ded5766728f7ea41ab4bef701d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f11a1019ab1eb1489e5421c33d279e9fde877637a6bdb4a2dfab95359557a041
MD5 0c74e3cec6960536e79d12a83b0ae725
BLAKE2b-256 cb9ba830573653c1c18c408690a69170f9641b39a12e12f4f0e4d5070a0749ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d861bf7cfa55643b6436c46f01ce1a4115b2a2dfefc4bba95dfd857987d64ac
MD5 6b96f8fd4a9a4aa7317d212339434bbd
BLAKE2b-256 066aedf02c2426c04e52a71ccfc84ad65fec6c4a34b5215e49e440a3f7f5b0ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 878efbb989a00a773ed4abcb79fd0e0b4cecdd1b22d8e3da27234bfce9aaaf4a
MD5 48e5b77b8075599fec5e49a1d41c0e56
BLAKE2b-256 8de0cdc36c93ab12cfb9a6f706c3c124ce0e0bdc5b5828503800192da7599cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1585f2eb029bbbe940eda850d164ff2663aab6a390164e6619fa03afbffcb5b3
MD5 b55ceb20fc102e1ff5cd2730c35e013b
BLAKE2b-256 799d5abf851c00c94db1dc592164071439e0be0e2e35464086382e6daccf5103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfffc9d13430b50cd83abed4b25a9eacf8326632d272193f2bbf8a4c5cfce86e
MD5 0f2100ed5841f60c2ecd824128fa59a5
BLAKE2b-256 4566999e09d99aadc182e612f7a45091a3c2d76ea3e8bb574277e5729dc636a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f090f4bf28c5e234837b9f2a67a74f3c9569c3fb4849f0169c8248df291ecaa
MD5 8cb0f6d08bd2994a9c5d4f0459fec8f6
BLAKE2b-256 2fd380e32708d3b5ce9b0f46c264216b00c229490ae36bdb2405e0a434fdf47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da280c6e2c1d9bc0fe3046d0ffe467b969339efda50ea30dac24eabe8ea28f21
MD5 0f3d737dc3a609209a6fe105ee10e90d
BLAKE2b-256 e718871e62cdafb38bdfa535ea744bf6aaede71604a4b2bb4a308046c50ae09c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b83f84c5db0741faaed73810d429bed681cff56ea6a07822b6a51a36ee62f5dc
MD5 8f24a4eb3c0efefc7c9ded41b258eea6
BLAKE2b-256 1f4e02ad2b608b7c165193fc86eac5a158d7bfdf9373f409a37c89804e18f454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1641bb3d592e0c3c66e3386017e23cdc34fbe565241b454f9596881c580197c3
MD5 af395687ebc094c957fcecefcc378d3a
BLAKE2b-256 690fbdb5765624b06de4b503a8bf3af783e21ae09ab8b235b0186083b5cfaeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba7eb8e50e8d3330c946139c8a926439bfd846dc7c581249970e53577a19d308
MD5 4f2c03126536956b2a451b738aa5ad34
BLAKE2b-256 90b0c6bfe506d0c4c3a7c2b62f85052c88e8fa5aa3a25721e97a1f48e29d3b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b9a5c6a72462f6b0ac6725cfbf99a90669c46e2f022ba9110c0655a591ddc19
MD5 7975c1e5bc0bf8a0d506a1d4db3f8919
BLAKE2b-256 efac2475db536321adbaff7fa00d009c0aa86c8184f558ec160bd850dc00660e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b243401c46e4a59c28a146467b637ec209de6eaefecbb0413c35c2c7ffe60ae6
MD5 5c5a76b52abd8600929cd8fc392fe718
BLAKE2b-256 44c49807c6cd36b9cdafb751f80e00aabed8deb96ad2e0c9833d363e12eafe84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9d89f68706d5077eae2e7c78030f47f752f0e9cb67cec5db9197c24223ef63d
MD5 0ae3603d881965cb954be189d2734d98
BLAKE2b-256 abcf43d352316ad6b41319138563bb9151798db6fd7af5ff768525b53d5ba4a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55c1df3a00a16c9439b23c75fa36eed125e11327d924dc20d491b1a5d8d73bd6
MD5 fbd23a81aa3b115a395f85e7a5d97927
BLAKE2b-256 98014f7f3ccff255f2aa89958276ef1e6376449c046703b71fe625227d5fd427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc42fad7d490ce7889df9ce57bfe7bb9027c035e24a7857b07edcdef054283fb
MD5 88a63afd321d29b34eb4f477c7d272ea
BLAKE2b-256 36e5baa6fb62e01d13542bee1ddb8454c5f4e64c31e9cbe358f4daefcde32cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4daa6a4aff31bb660429944f267a747ffe6a1dfdf0c6ec49c2d586becaf80c0
MD5 f479d35975a60c06a79f575f19003b83
BLAKE2b-256 8a15ef23a077ec9a29d6b7677174a4b84230206d1777ea73726b61670f41c9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44f4d2db81a8b8fa48b82efe503727a595e7955e36624c73df0589bb041e0a32
MD5 79f4d1d47edbdb1800b749b2989de756
BLAKE2b-256 443f887c8e05e2d67ae536543b50c11ac5fe8d7614150e197a3ea884eb29482a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3635f5fc97340b96ab5235c5a80676bd6a148730801ef68816bbceeb5c1780f2
MD5 31817e9043a2e79cb8a104d066695f7b
BLAKE2b-256 097816760aecd3df4eb7b9cf784de579e3ad37e05d5821644288dbdba750b883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 530f45647d3f8e9bd98b6c097f414216651d7a9cf9a4b39976a4daeb1568462e
MD5 6b0194adf4979b28881bc4665d314757
BLAKE2b-256 23caf4bd60964de671c195ddc60db334faf33cb80adc3d5db3b97209c0ed2947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cb8d72bdf1f76f7001bbd9cef6f8f83245c541560b0abde93749efcce27dcbf
MD5 d85115c275f4c20d2ea73c6eb218f31e
BLAKE2b-256 3995c5b46afb586aaee0b1fe0b66e91fe9d1f289f6efed53e321665b1d5bc60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 210fa3f2426d480949e96f1b7e0f955b61f866227e5f5074ed0ffc4681865d04
MD5 f023130ae358419d20b8f8623a5da09c
BLAKE2b-256 366b4199538f48f356a7f5ead040d86c4b7a11a5ad590c3770a1144713c633a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd63dfb27b31f8be7dd186d72329826a1aee641c4d65bcaca9646c9e034b3e11
MD5 3de79f74c53aa0b75b62ca6e76aa2a56
BLAKE2b-256 a58ffe356485424a774f72d217921b435a66c1a0899278d4e319988f704a8648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ff0bb18af079603f7b0fdc6b4fe7f3bdd150c77e3cf77fae397d7ccee955b9
MD5 13a5bd2977a2bdccc096dc0f17d73782
BLAKE2b-256 63750e511bf2949579288270c64024e7b82f9e39e13230660e5f781464c88c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fff63f4dc5d6813ae82d9079f03d186f0ac46c72c0ffb934772dbe52657d7015
MD5 ba69154d124ce1edc013fc5a775d24d4
BLAKE2b-256 83c57eeea7fb572488e3e9eb88c5f0c2446aeb42dc4cbd1ebea4b41c15580eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c48fc00b692768f9baa19a81a3b9b2ff39b4c4cadc71b12adaf957c22ac6de77
MD5 245fdf981614387585bb72a05258d3e2
BLAKE2b-256 d7f88f0e934ea3d723f8b5aebfc41d70a9edde20934fff49a891c0e1d5fb6d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1446f871b7c7b23c15074d45071d7156452e9a53a0fc867e0e9ac4e14bbc648
MD5 b23b9eca148ba5d4869a85f63cc2ef2d
BLAKE2b-256 8172eb6cb8a54fa05c9bdbf8901ea0a90af781ba81671ce694a663987c3f4bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f307ba6cdd74670d6bdf48ee8bc530965c35104228ddd2abdebc30eefb6d7c68
MD5 dd01b78e59dd3a80b85af65f3f5d1a39
BLAKE2b-256 5430537d3b8ebfc8b3000f11ef0b5392fe93c6ec83d13062c8e1ee988347b267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7a35bcf4f375c3273b812c85d21e5a65ad257ab7f3ab4e43026ee8c29a5b4fb
MD5 ce7d993b3f5ed41760b014336df6d4e4
BLAKE2b-256 9971707879942575a597559464f5a6c7a3808498afa98b9f6ce481d04fa19cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 035771d873c5e96fab320b7b95f65fe0a4009d72605e1c1d0276d8a5094cf36e
MD5 db0004978a72aea35f231e8d6cc38537
BLAKE2b-256 13e1bebe50dc520f47273cacc2af306d74f4824c82d6b7c068d210437c814d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0403331bfd3546df0f3c14b13e0b60ca489db4f477d7310daaeef979b694bd23
MD5 4147bcfefecda61ffeec0e9940407d4c
BLAKE2b-256 eb973a53f7ad28dbcd273a29ff927199461c8cb28d839399590f5ca462693f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5527067cba24333994db87775a8a0545e1ba1a373c30ce7b50cfdb0989d9f298
MD5 bb4f597dd756aa5ebf3cb5b37170cce5
BLAKE2b-256 4ab4e3ffba7142f8b7ec88ff9ea32118157ee74a31ec6c3f8c17ec6580a92262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a7f72a5f290249823d53ee38f9c99e9c7e3e1cc5b3b77d9da4fa52cda1928ea
MD5 d889f0c7579bb5bdaaa93ded753eee98
BLAKE2b-256 c133bf020d7c750c00b8f18fc783d45523357ac8f679eacb3a9933477d90eca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8aa1aceb2eeb5ea8607eb4f29cc67ee80d28014ac722cdf1875069f38b7ca3e
MD5 5462f4740fc8b7412ee2698da08e8f72
BLAKE2b-256 7ddb8ac0c108835074c8286e888ea464051fe2a83fcd5d8687b2408b87e37861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ce8499f289300d28c2bba69aedef2928ad032f45c23862d05d23ddbf1cc0069
MD5 90cb8f61cfc9d41547c5698f4692b415
BLAKE2b-256 6874e126c55b6b18a9e1bd139efbbfb49a072517d8d316c201f2658c072b5049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e0e4e2b546a03af8d94e10431ab343524443a3bc40b8420376ef5b6ab8f03b0
MD5 d21105157e715f215bae956597fd8b2e
BLAKE2b-256 6b57a601d85a103c0cda74aebac189bb01e14a5b82cabcfb6ceee635491a07c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe979654886d335d027b5b4dd9c3784a6351948d96b24a74697d9f505947f6d4
MD5 f75bf9b2342e190ae0b573f61ff3929d
BLAKE2b-256 cca92df07f780d663b55df5efa8d0ffa4e10e5128c6f683c89ddabc23a48f623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2fd0baa2558089e3818ddd33abf40b188c7c53ddbbbd81ea4ee4c741eb34e1d
MD5 79fcfedaee0abed0d88e9d05ebd255c4
BLAKE2b-256 7c75f73ae78102817ff6c5bd965bc96575a6e8f0cf5262ff4cc319c6ff0ba9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 107d758657991c420afe14c0bf265f5c540be4af3e782bbc685a4935009da4ef
MD5 4d37b9c1f798c5359a74fc216182681c
BLAKE2b-256 aae7abcd3d615a5d010c1cad3012ced21a6fd4c3d0481135a7467e5fceb06058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cce5aa3e04f62982ed331eaf0d48854d38340285b39a5c984d322243d8955a0
MD5 42b4b9e479f462b1e928d77121b9372f
BLAKE2b-256 9024d0638e562c2bec1575ce22aa90ea73bae5fba0e464dbf3a424cba1ab861b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afbb29b0406c8868af95dd30292ae94a58ac5df86e32a10739fc4fc99ef067d3
MD5 e48be2c4d2e5efe3581a6fed34bcfcf1
BLAKE2b-256 854d55385fa76551792c1e939cae96c700fb1db3283b03156e7c64507668ce02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59de0163296f94a30c488fa5ce14b301190a20357aaf37867e2367551d0dff4f
MD5 246de4b035298a33a6a61c0ebcadd753
BLAKE2b-256 73a70d29bbc7aa6d33c032ea11a72800dc41be097229d8408e77495923aa320a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18ea0a17e7211054274b5937130445739eec790a38f41ab7b09675e9bd684713
MD5 a22d356e66a56ea79e9e33ce5ca7f0fe
BLAKE2b-256 b66e713e99309e4feeeb7fff89aae75dcbb9f6408990476a39746b37458a0e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e09693071cb1ca0d13d3e0a871220b2e584801bb76a25c93678c258b00a455b5
MD5 98979a0eb205616757285a1411af6ef3
BLAKE2b-256 d4d997f0d430c699daec741cd425126d817d59586696a952c07e21f2cd8693dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5a362d5a83a6897dcee2b0c82d561dcaff9430c56968dc8d36deed11e23be8c
MD5 c088713c72364afefc81233e2b5e7f4e
BLAKE2b-256 70f2592dc804f62b87e9ac8bb348cbefdf70091fa55482e83e8e1d2641e49727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d225dc42aed4f4e5e7cdd1030d8b58f4bde6072868503c0c7b0599df2d08b53
MD5 27cbdf643e3462d3cabaabd5f4d4571b
BLAKE2b-256 0c41db97d225e23b253f14333c4127c143092e5fc58f45bcf997acd3e03430f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3527ad41252ef78ba2fcb95a6dec96fa98835ca3a71a44852a568f412c0926c
MD5 438995abe96de0b54eb2d8e722a5569e
BLAKE2b-256 843951087fffff01cc76577f6f4300c83b4be46336a7ba0354e59ce7d98a6410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58ab0f900ab3c50f844f60fb448c435e500741d4ba245f4678baab4529b0fd24
MD5 4a46e53a9a9156ffab0e71ae58a489e7
BLAKE2b-256 580ed1cb3a4c0d551416d9c9ff3610c2078862f1143c8ae8dc05ab7134ccc1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8b0fcabafa5ca80ba2ea69f5719a57e6afcfc1527314abcf1f0e322dad4c055
MD5 c68524db97ba448c9a5844d8ab1399e0
BLAKE2b-256 f82065f1db9acdbba2a6a01167109877a3a0117c7728a5d95949d62d5e1fba74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a4b51a4af93b362de58c5548acef920503f59ebdecca6d69ec77bc3b65ef5f
MD5 28d43fc0fcb1de9af398c5425b73be4a
BLAKE2b-256 eadc3f070e298fcbc336cdd38a6b966bf15d69aa5118782ac8fc1375bd773798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b73656bb9dcdd29271684cf4915792941f1142a155f7a035789efff4c0488bda
MD5 94a17279e69809041bb496628f35c0a6
BLAKE2b-256 a8cd64d7c5f4f90ee6d5ea59323432be1e31445a3320518e343ae7858ff977ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90534dde349ce67afe2f249a526709805af58b67bb74143982916fe90f7cf285
MD5 0872a492aea72b1af473843b8270bd4b
BLAKE2b-256 623b0130414cdac40d1d10c65f780b02c0b826f7cba535d8461a9531a55e9870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d28fa50f58f5cdc53de6363d3c0b6baf16f8c5d05a9aac5b8ac498a2950bba8
MD5 0631bb37cb85a3c282845c6cbc39ac49
BLAKE2b-256 557ad1df79f01d002b3c7e948fe883ca41dd57b7a032960b0bbdb073c2c70f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c58b893ebaa5ce242e69fe30506d4cf8c795f1214978a233c01e3e3874b0abd
MD5 78a71cebd516cff2695e0049efbb0355
BLAKE2b-256 8313c876ffbddc776f275472277ab56729f318d9279ad5a929858e1ff7d1c42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3074008e9e0a3e64b16b8caaa39fe753329ae6783be9dc3351f31f547a158152
MD5 718ed80419cf9168293a728ed95a66b0
BLAKE2b-256 d9271a1b7d9b59dce4e71bc31f0f4c37432fae4ea1f0e8058b54be10a4751503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 205cfe60e914684baedd9238483d52bc571a2b8d8191c9c1e1fa7e38677816cb
MD5 96ae5e6dcad16639aa4c04f04ae6f34b
BLAKE2b-256 c3908bef90b5aa981bf27f2bf8c76e1fb2f34257c496bf33476f30e989ff65a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a520e0076068bbb6d74ec2f77d77f8e88fedf492208c2700366eac781691e2dd
MD5 82064c20a4fbc81579621391b8f5e883
BLAKE2b-256 f0b19746efc3b6d4bbf7ded8f894dc73eb0a5485e29b08e4d3eabe0ca7648371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 249a49f73be2da59d09ed7b71bee184f284cb3d653f5e89f4a06f3cad5ae69c1
MD5 a1717e89ac21f6a01e34bacc45ce680f
BLAKE2b-256 aea6909ea55d2d597f479f976f0d30c41529160c461d0d37b736184785b38cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f165c69b125c9bf9e4f6a9197e435b46ce4bea5e18115bb423798f36ac5aec7
MD5 9752f1e992d6af16d393990c828fc3db
BLAKE2b-256 cdb6a142983251ae9f5c73f8aa1b245480bff4d0d686c5b11d4b4b590f91e6bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22265327d456a0463b11d28e6bcd9684d82eb91833a68600a7a1b542e26bd64b
MD5 87a794c4be8d3656372eaeaf1c048658
BLAKE2b-256 595be9a9a7392f54efc8935e9581eccbd18b87b93c0394cfc21be0aa00fab54d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8dce530d986339da547d2a9da13d77e7f3fc3ea08a18a412cd9bf3bc87927f1
MD5 cd6fbfc155fbf318899f7e3d7c1554a6
BLAKE2b-256 bdb7785fc537ac409cb21b66c7a117b3f8314e6768c8f3cab5d422f74a4ce192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ad82cd476408a3b2883bf2659c4e1d933c17d1d0ddeac701bc450e939f8d0cf
MD5 6a99791849c74144cb6428fa316810eb
BLAKE2b-256 67f25a2a170547c89d840e49d55e043d32ac3fa4cccb75bcbea7ac273b1565d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7be206bd0559444b2b2d150df2165e59e660b6c78a37357540f8273e429c68b8
MD5 a97a111b8255e2ba979fa86c8afa89bf
BLAKE2b-256 b327f3618e69f749f75e5cccca4ea83668fdcc0acf129ecbf84bb7d1a1b3610c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a41cab99700a296f49d6629c1d291319923528c78319297b4e26e495e30021b5
MD5 20bd35ee0fc51742f7e86346e77ac1e4
BLAKE2b-256 3fa09319db7d268fbae9eda1b2a4da79fa132c4636fc04dda67750e189a53585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 094646fd023d63df80d0b1b814302d4c7a914966a9a6b3e026c20f2b4a3437f5
MD5 e5a3c4d2dfa6b08cb2a0de3223990ea4
BLAKE2b-256 2ecd3a4dd0be7da33d57156a8ad33db07c2dc76046be25a1dcb57a1b2b79cb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b4120098410728368918569cdc8fc611386545518c742ce82d82617bced5484
MD5 e242e3e535fadc6920653fafa428ec06
BLAKE2b-256 00956be887e5aaca4a198361a4aaafc1994837ebed6b788804b5ed6f636cc0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 509ae8b9547d5800d5293b0d00269c5105f4320056b48c341741f0b0eacbc57e
MD5 868cf15ef3fc84cdc23943968240085d
BLAKE2b-256 15e6ab864009ab890c805e7ff3c193fc39760ea01a766a5cd9a409e34e573b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dde388cb8edceaa860d104c687f18ad73752124173b77d8571659a9af5a6c014
MD5 9e7d4abe766f420ab8d25be14c96ade4
BLAKE2b-256 a430e4156ec0b3b44200622ea213e4b428ad2863ba2968c3a9413d298b3933da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ced705ddc52491a465c8f418bcb925d9186e2066c0d4aa89034b09ad7795199b
MD5 8873b2d8c6534c01e9f864b6d6817d49
BLAKE2b-256 62d4bc8bd4ab3fbb60156688a8702f3208757cca2eb014ee80c8ab65f32ec385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f2d27be4421263198689df12507019cefadf8b49d3540e3971980dccb288164
MD5 e4e20bbc4e06019dc96a5483231c4482
BLAKE2b-256 22012fdb42cab679cdfee83f572f988e35cfc3ed2d3ccc9d638425b0930ffa0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75f2c62ddb8561a703e0ac030f38965dae76bbbef34819560757f8c6761bc881
MD5 71fc7a05e99ab03e4775871a5276935d
BLAKE2b-256 45a50cc29f175266c5eab4ef3ffb337fb154479ae164807684e0953da96f3982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5fa66a1559bb174096d574bb45343bcc20c122d6e4fd8e462508158d50b3e1e
MD5 608641f47fb8cf6c3e502e08c05348d3
BLAKE2b-256 6a1a25ce83822730cd89f761f2c0f9590184b1982051f29ae515faa3b448f0ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dda34fc3e5c9cb187ef74fb1d66244c44f5f0ec9fd3f252e9c53ab0dfe8e2477
MD5 030e94ef97c79d899993de240929fd1e
BLAKE2b-256 9336fc0b46e7b5898655d848c0396044dae17ca93c344e8d1f5e0ed16a17f1c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eaea97e9e4912bfe30ece92e88b0e4a525ab9503d5f003aa4c5ddedb4eae3164
MD5 32d912610c3c2011be52d28972f74f5f
BLAKE2b-256 cac186f25d6a9f8fbb8838e003182d2caaa3c8600f9b3bf66b8a8ea28d5aca23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c31950a8b7b022a5c906700331ad2710d8fec1e7e34ca4c69dd07e257110eebd
MD5 a819557431e62aad422fdff375d4cef3
BLAKE2b-256 2b6d89eac3e3d2576fdbf7dc3d1c8c5ae4ec2c4607bd22635941542c7df175fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2520385d15d0d0f6caa24184aca78fbbc6c5ddb21fa539c4035116c9f6a71dbe
MD5 dd3c4d2247173e780c090f3d777b1d54
BLAKE2b-256 55c336a3648c39a07a91bef4d517d6ea09cdee9fed74131acb1131d4ecaabd4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7392cd2d85ebb3b755748a8812831d5c6acab3b28f6edc12954cf929b5f6d77
MD5 6e50a547efd7b15041900c674171930c
BLAKE2b-256 c946fd7d55c2e2270dfc48e38d114fbcb217ebec8055473de549660e72fcd514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d531dddf4ae2d86ddfb8b6050196b024e1146158dd5260f8aeb3f95a104ce88e
MD5 15cd5b8eb88d43fe20be1a1cb837098c
BLAKE2b-256 ddcdad16bc4938822068d9e5157caf5a41850045dc4b787348ef4b1fd398c7cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f75263b21ac398cff800705ac29121ff4402d7e495b9c6df9a09f36f320fcd0
MD5 dd6219d2542fb79016f66232d7e741ad
BLAKE2b-256 077b2f7104f9a613ba37d6931d2019e7225a15e4056bbb2fa7ef36d50a4d1ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30cb3726aa87af5ddbd44b305776e4f475c413eed396a8d214f70524ab6bd990
MD5 c3b07a4a5c7ee0c85b14283eb6ec8bcd
BLAKE2b-256 77520c3f384efa795574fb1d3cb1ddddc9af96e4d4c6dd3db2797bd158f41771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2be41ba829ed040e9558764adaab8060fc38e9bf606780e915eb558c66962016
MD5 160112023e47e1750ab6b3ffb746252f
BLAKE2b-256 befe763878fbc91178b8e410bbb07dbaaf9256631d65e4f59b21ad3d0fcfd6b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13d7293cc22129fa69e4a11caa5783897178a954e92eb2e2bfb7e901f3edf4ff
MD5 ff4a3c012baabae47bf521f2dcd651a2
BLAKE2b-256 4ce92815b7da8dcb125952db1b959eff97ac56b74a27724c52cc2e40e278020a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 658d26d4ccc2cba7a99643c9799e25c0a5750353972b1051e15093c1d766ca75
MD5 90cdafb72af6eb9e57e14bac76e8c4db
BLAKE2b-256 7d77bc5a682ba689bd218a18b4f594f40adb166d3da6751c92c02d30517a4966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4b252dd61e7c5a8a9b9e4f1d115d0df0158110fa5c719103d10785673fdcb6d
MD5 fd3c1458b11caaff4c64160b33808262
BLAKE2b-256 0164760f877e0a376d837b328620ae706841063b778d34ee19deafa0e6c34e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37528b11fb8d6b31d6e84a28d9eed7c86896213ed4d1c2a3e11ccf395e3a523b
MD5 91e872e4a2237ceef7318bf7a0db8566
BLAKE2b-256 1318ce7574f54d8a45f23a597997a82f9ad7b04e299284d0f4c960c46ab15186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66c823d6f8b67f8414fc366f38cfca61f49535a1d90feab2e2cb58543fa4d85f
MD5 3d6ca62032886caafd073ea93bc15f19
BLAKE2b-256 339c10491ae27d339f9a5b170635cbdedfa4cae13ebde5771105cfbab136d494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d205ba94e4e61614153b931bd4f80f877532f986e546d4c612178aaab1c75e8
MD5 20fa46750069a623aee9f243302fd9ca
BLAKE2b-256 db793b65fb015a2672db8ba8a5df050824a8bc52a05753d37cae1d450abf36f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7b7cb9f1d7f4ef40e6d8a01e39258f1c1fd8f98c2031a445637db4355f80f18
MD5 f2ed42305cbd8c62206713d7f863a5fc
BLAKE2b-256 ed81b858de7747d252ac3411305c9dabe847e0523e93ab1c0a92e19d58c0fd49

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