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.0.tar.gz (652.4 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.0-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.0-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.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pure_magic_rs-0.3.0-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.0-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.0-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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pure_magic_rs-0.3.0-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.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pure_magic_rs-0.3.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pure_magic_rs-0.3.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.0-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.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.0-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.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.3.0-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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.0-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.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.3.0-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.3.0-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.0-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.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pure_magic_rs-0.3.0.tar.gz
Algorithm Hash digest
SHA256 80228985eb989b4a83becdaf158a9d6ccfdf634d06f6dc42dc4d2526fbad6370
MD5 fb2be96fe706173602461a635ea4d258
BLAKE2b-256 8e05e8c67b907b62454c8f1fc5b0eb945b6819d2a7acefdd41b2fa27deee082e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db3fc973ef0fba97730c967b92ec3645648478a76cd22ef826aff53e1a92cae1
MD5 5a5c3304135bbba858e62724c883b64e
BLAKE2b-256 ab20a12194cdb822c22b991cd527e715a1e7696244ed5325776139d7ad2db5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c9c1957175cbeb9a94d1f7301679ac2656f347d180f52d7302a8c70878fbeb3
MD5 66b89f6ad9623f8f6fe186464190dc64
BLAKE2b-256 4881d80a44961d648d4fc7c9dfeead64f3d04354e0cf38fed6e576c1e5446217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8df18bbe655c0799b868f1e4ef347781b944a9b8dea5d035ff510eddfdc3331b
MD5 f6dea00e19292a6351d0dc110857a9b5
BLAKE2b-256 cc8fbb64fde5ab166af0bed44a5127e61105f8328fb8957cfdddb4f5d83087b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36d4754ad6ff3e0a740ed86b3ad45ea62d888a3c8d2da34d297ced35d62915a1
MD5 5aa82b74a99a8314c9f9ef926f8f04ba
BLAKE2b-256 77587305e35724fa5e1762f22e867f6463026b8bb987fe7d9f9eaa6efd6ad1d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c420de74adfa17f28eccb44d5b4474ccbe37d276ee002ab883420d0aaddad80d
MD5 430c823fa3e572039f94fd2674ec560d
BLAKE2b-256 4f2b46133c575b2aad4d8b431b6c0c51ad692ef95e48a869ff7368f5c61d5f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa1c21ab342317afcfc620b6ef5379a554057bc81cc2ef85b61b8f4701075f52
MD5 91f5147064b5b19ed168cecbd47b14af
BLAKE2b-256 75befd8390b057ce86a7f6d6c32bc0f4ba70394d27265b4aa7d2dc64537bc93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05a3102415ff3c03a69dd648a7bb76c7c070b4c330ebfaff0e3b8c663b84b75c
MD5 4d0e9da13e9706cf27ea540b680b8383
BLAKE2b-256 8c7d5fa011f149f85e056b1d4b55d82bde965177d8db9bf92214632b0ef68019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 403732ac6a34296d76f861fbd4161ac75122f6671f007a6ec92c303a24a97081
MD5 c647c91d30f2aa07c29b8b8cbf63ca3e
BLAKE2b-256 672807bee6198029c270707b92cf30ed2b34464fde06c3702b8274afe853b32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6881275a0ee5427c6f4841947f7951f965a11467282ee8a5b7e8a315086d5f1
MD5 71c413df4dc8602e83ac4586b115eaaa
BLAKE2b-256 8a980f7086afdbebd749590e3ce09adfcc5da715255fd3f38c3d76bcae5f8a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0aaf0ebaa8d2fef89558fc02a836151437772c5970e049212d5939a9be72a310
MD5 9ccae760c0a355a8188f56cf81322430
BLAKE2b-256 cf2ee4c9f85f84c74d3b9b2421faeb832595155e10a4d453c22a68a1de9f8f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c64e7f99807f820039c91f4830484726aa5ab4fbfe532629b4bd02ab17725302
MD5 2543437a0fc008fac14aced28f48459f
BLAKE2b-256 65b7cc577bf3185c2061f55eba79419ce5a9dffd3bc99e9cac1e559dae7eba45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22ec9b1fa23e2aab1cba299ad211674ddc35a18e91fa10b8b4377009c30ee37f
MD5 8b7a75891b3c1a08e4f307e2864d339d
BLAKE2b-256 a5fdf9cb4acd0650fd30cdfbe57c2f4769038899ec98ba8b5d08047370d4ecd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52ea7c9b9ca24f293a7c940e1b3559dc8d17c5d3ba9fa282660ff1813bb65532
MD5 8532e2f4804c6022cb0136cd3a15f5c9
BLAKE2b-256 7ffafc2bd569f92ceb2694f007d95e670648f178566263552c0bd501dd272828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfe576f0ea3bb0545c66cb1db216100abae29729bc54ab11017ec8af346f7c3f
MD5 b92f8d69b73908eea17e7d05427f08d0
BLAKE2b-256 1d55325d2ff3f4064b91aa90db121943524e98cdb883d23e86a2382652e059e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cf3baf4b6ba63246355e7f39355a4040be3ca29e09f6a9557cca8802195b94c
MD5 f53447e2bb1f969ab0a82d1f64f3c04c
BLAKE2b-256 cde966dc0a0510769a4334aee08f43bd5af076adef70d2c3deface9eb2c1c8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0024f220f39ff9bc328ee536a262447726fa70b832f0c8a498700f7ec677307e
MD5 8a0c17bda33752a4714f03b5e9c4a04a
BLAKE2b-256 37747d4c7f94eb84da41feb28f0cc050470ba3ee5539e764f8b3c05dc1d63378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4da042cf5e7ebc55c5acf35e993328d31062bcd0c7d94378316f29f313053d8
MD5 922fabb55c79da01a6755dba244eaca0
BLAKE2b-256 b49158f993b679fe3aa4a7a6430d8109429806dbfc1e7bd69fb03f23eab1298c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3ca1d2be80f4e921cb6a1abfab5d3dbfdcdf2d85d0b2b531f8e120ec99c46c
MD5 426418421eb5d0707a0230d220b5dc0c
BLAKE2b-256 7377a64ece7c9d6fa0bc6c6c3b1d051c17e555a5f3b70c43af226d68b753a673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0c50ae7706ca3d55a724804ac76925e80f4aaa55c6f12c63ecdcab8fe7f1179
MD5 589b8867f4206f039e14b57f675efaaf
BLAKE2b-256 9a9800f64ffde5a4f2e96d4398e12adbc63514de10704025ec65c1d89436e279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d452a1c6d096f31e655281b23ca195adc7cbd06552d388d196fb003baba86d49
MD5 f89ebe997e23ef5cb284f11d010db44f
BLAKE2b-256 d4217d5962f75db4c1d876a4803810f07174f97cfe33b94f80d1e16fc6cf18a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b55f155a0370f85176f98064c49aad525df21d47367bdb64f4f2dc8eb855bfc
MD5 4476ce810a4e32ef844016f955bb0d19
BLAKE2b-256 3249747b2ef01dbda128e774f1415e6c1df0386b6d369a8fe500a6d92f08ec01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8654a2d04103dc74a2ab4ccaead8b2748f4bfcebd82b145c81d526ff388681d
MD5 692aa83e0b5134ff07229133ce353a5f
BLAKE2b-256 95fbbffade27e8109c6eab5762f1a50ae0ae0f547db2f338adccbf251492db9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 895805b4b68ea2e2d6645cfa07e733291a95f29ba0962063f977cb1d93c3c3c9
MD5 39c3016c017156e5a94b0813d6dc51c2
BLAKE2b-256 334b7ef0d1ed491ddd90d2058a123f077cd4e566dd76c1a0bab1e98e4f30af89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a18752e5c5d6630f2a173e1e6c36bb65345f03dbb1f65a57d70e84c46deebbde
MD5 e6c760bc71ca6129eb76e7aed7bfbf09
BLAKE2b-256 878e9adb7eb44b75694fd1fb5a34cccd35aa6ee8eaf5e053d3a3f44fa1ae7210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 967f16a3f8521fd9bd0f2283025e9f984f740115a30cf7441d1683d21f887706
MD5 951db4b6efb13e9087756cc1983d5a0c
BLAKE2b-256 95622612972c56f967e0c570826ea0f69de7c071be9fd76cc09d11ebe99d6b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f773a57ba4c6506065860f176233b776d30bbb2d383ac407e4e1eca5d2d39a39
MD5 4ff72d6f1767ccec6c181f79139f6499
BLAKE2b-256 7cd2cb541c2eb772c55e4fc004290f16f97cbfa2eae5bd52497f834e1350d3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0330f8597abcfaf21ce72d534d6ab96785a4c43adc9163653510b2f1f0db720
MD5 05d0033ff9887f23c062c6cfd6d97501
BLAKE2b-256 9bbb21fc41b6d3b96df923dab8573073b951f28f39d051b41284829bbc98e165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f2bc1fe70a118beb06db0d5b9ccaec2cab407b07d7268e35018bf2b48a50619
MD5 3a1554307153cc119adc06690a0b4b09
BLAKE2b-256 8ca1e27f90df93a13b93093e73bc31c27118433da515ad1ce14826582c5b0d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73713952d189dd0b6f28c17087fa78e02279fb6109802bd35b59728e3a2b2d31
MD5 ed8b0c5bc1cfc2207a5916d987fc23d6
BLAKE2b-256 dfa027b287a77812db8fd630881088e5ebc7a48b3eafdc4832eca7725a9c7c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b40a259904ba0fc4c270b5c3684dbb4f61b408dd60e4608957fcee900d78f03
MD5 72233c8a79ef2b5b544dc1e5dea6ed29
BLAKE2b-256 be849e5a3d1fcf57d06a3107be4c5599f261c4b3fd816103a7c81bdd21ea438f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9e6c5bbe6a60a6c1f9fa86ee5ac573278b2fea492841c61f46257e2d42b53df
MD5 0359758102ac9cee54512dd2d7cfa565
BLAKE2b-256 715e668ad1d02739ddd9e48a7ec47e019a53f335fc6b18771d7fcb441ee1e1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ab5114255fd472ddd2e129ceab34403b7429102bf959b3121b684bb933c0424
MD5 4d201b67f28a2765292861ff595913d2
BLAKE2b-256 d3e5ae0687812cf4e6fb68d22d925db77b95f6073d980448dd94658073f7f8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15e7f4d8bbe604f63e9d267611b2fd839165ddfc0834a2ab64fbb6cbdfe502c3
MD5 cff7d2d1eaaf2ca902a3314c3a6d2752
BLAKE2b-256 1fe5885c552a249c5feaa686572b9fed9e443b4cf2c4f942f65d7e1bcb8dd1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78fa31527481596ecf2ef66e198885a98a185cebe236c55f580c4af45581a682
MD5 960a23f258a7ca0ce39d586f96b57157
BLAKE2b-256 ccf45c60aacdddc13339dfb6475dc88ac3a9ba2457baadc6450c3d73e563d491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c6778ae0b8c0112d2c2b35ad7f887288976f0bb69938083206e33c871cd80f7
MD5 1ece84e71354819b06858effdc1fe3c3
BLAKE2b-256 07f6de3e1401b1709e0f03a3a9c60e07ef2c6755600a8d0e6f2be8d412702f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b94a06f3dc8ef1870dac735cf6bdd6e367f2e91afac35983cbbea347b1df1bd0
MD5 49951032c5fed8b353e49422f895c5c9
BLAKE2b-256 48ac6215601c5eed9b14e24ee8f1247f91bffb8c09341569f760cb829d261ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3ad12ecd79baf1bce9f3ee79b23b1e449068931409526d2f1b2c2713b36b844
MD5 a07c2d7dc6f9f71bb3b5501d8a2b9c7f
BLAKE2b-256 4d278e47ccfd9e2da3c6bb807d868f327f227256e90365ed0266167e7dc43f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1acdc0256b9586ab8d6659372e1b2d7c03fe7dd8ccf35f88b9065169b74caaa1
MD5 8d0cf4709de20e1b6b5091a43fb0c62d
BLAKE2b-256 1781bfd9767f0cc6d08a811b46a1c5e01da3d8da6281d0ab22d8c090c06d5c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 391c8fadac7a3482c0bbf458e4c1ba8cc6019b54952eef46673ca37de76807c2
MD5 1337caec077481e340595ae8fba207a6
BLAKE2b-256 b3a2096916185e522a1ef87fd7d1cc09f713096e45396bcb23a54b587540791e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d08ddc291f7611afc1c3670b380b5aa77d4569ff8604c422b4141afe47ff30f
MD5 2bb4a02e57e535cf0520a6a7d9ea056d
BLAKE2b-256 89b545519db62fae5cd8a09cc3407f11d0ceb0672db8e958baaecb676e122b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed545543a663c89a72b5a724113cdc02b47b3de1c3558b02840e42b6a541d77a
MD5 0020f4d984638fe12ed32bd47cb78fa0
BLAKE2b-256 d1d0536f2a6e347b2873bb59deefafb6aa94bd7ac5e5459967e65fc5a3381586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24ca3c38cbd2ab356ae22b1748658078a865718598f85f9e38f40aebb443760f
MD5 8cfbdb4a085ca1f70f78fb4b4c2f7e6d
BLAKE2b-256 b57b1465d879223cf45ea8ced98fd728fdb96092a573b36379a2458bbb7b2c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfc1007345978bcda41bd6f1b648dcf25f93b616009716ff58c3cd9f59bded40
MD5 c42ef49dc6e6e4690bf4a2b65b0eb8fb
BLAKE2b-256 0366ea5969f9c9b52c757f68b258b5251a64773429846e87252abdcd9f1ca69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45779590f726785e1bae606f5715125db3e9f76d2bf652f1819970c3178ec446
MD5 53590559f74ad5176eb7f0e6701d40e6
BLAKE2b-256 da8065e9ce339c129c33fa8b80d171fa1d55a5a2de55d2a193ce1031e71fe3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbc5475abdcd400f35d5f5f99c51cd7a00b20d61f2a37929d4387390f7f6ae0b
MD5 91735ec5b0858165ec2a4e3712c8abce
BLAKE2b-256 313eeb274426621b8618b60216ec0bc0587445dfe45fbe2e7fece1cce2585923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e546ad0c446ed8601535f84d32ed9d82f7eace4b396606f99759f6e9e9885f8
MD5 3c9f2e69a7c231dd1cee86c80525c6a5
BLAKE2b-256 afa2318935fb5325b58e4a00775d238bd97a504668c3646688c6be194f19edbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63df6e94f970084ae1454baa135c67e6a5b80ae58a6834a7289eaf2a8bd1e2c3
MD5 1f0f50c19863aa235e47facb76b7747c
BLAKE2b-256 da0d5f1176f08a0c92070b322f04f7ee12e54e8c1fe549c13f94dd8f8b033de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0ea2ffb6962ffd29884da18b06c00564b481374df3f277a90936be62fd4eb2c
MD5 75c8f97386f467b1918dac10b83a0e90
BLAKE2b-256 87f82a4385806cdde43d24036c256ad6f7cbc415d6dc94b6cf45d84a7a6b5228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be47619a036492359d59e1518ad5310897d4dbb8fe490adce1aa20ddfa4dce4d
MD5 24e7d116cc6b0854b192d38306903d05
BLAKE2b-256 31df47a6bb2185bf58410939329508d14ed745cad54434566ce51bdfdbdfa439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51ee792e26fed3d3dbf96999a24e6475c44c93de80dcabc017d73e7a6652e6f6
MD5 fca424bfd193c054287c0858980ccec2
BLAKE2b-256 747a52c718dd797cac03a14801527ffca2f5abd557923ffcbb713e2a6a285c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b8f1d88f6b678f771650ef3bc13af9b598002ff5df20cf509ee9c5da9a51a8b
MD5 6b4e084ba40b68589f079caa3d8c1d67
BLAKE2b-256 81ad048e661c5bcb222f3cec531ba6859b03b59364184190c6699867cd81a2f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f0a5160e1f92bffec0284de3e2b74dc6cdaba4e0d65c570c381e97217063528
MD5 58e1bbcfdb27cbed600a296017f69a3d
BLAKE2b-256 33548f5f2043fb9f9b7a95a64cf19f59e8d8e65d0697db0caf35be3529e9d3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9df42328133de1f6f22c4103a279dd53a668c83d00708d99345aeb9ca1dfdc09
MD5 994a22bc82ecc611ed171c71577ddeee
BLAKE2b-256 22eeb05e484e16e57a37760f803bc3bcbb31907b746b2cec8e0761fb9e7af3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0d23b4880b5ff4427270cebdde73f18202591d49cfe37de4d72d4c67abe10c4e
MD5 0b6dbbd490c55c4bca585aeb4a3283ca
BLAKE2b-256 5bb57e284321acb48b4c6d51a432ff14c830f5e1dede6f43e87bb01118f11cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c195987f9b868c2f95464d4c3c015335251537c4787f73d6af7fdfd0ac1f3ee8
MD5 0b596f1d5f7dcc23ba5892df7a1e52ea
BLAKE2b-256 93b7b03b6180960a72ea60ef142bde5a73441a3e1f679261ee8a1505daad5530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 503e74b8086402b9940e3ced7083b58c523afdee70126439d0e8912ad39fa509
MD5 92672fa5567b03527db9dbd7e8907d0a
BLAKE2b-256 8a85197c6b75985d5a1b238e154a191872c371c766d7f48e6da06b0563eb8850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1886df08376085a929441994ce2f02ac84af339306bce25f45a305b7733e8553
MD5 95b5adbf4101c81153cfbe7b56cf6e6b
BLAKE2b-256 90fde1d8aeb497869679d62405e7e0aa38a4807ebd8b412081973b7d0ef8990c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66b37a92564130159314c7a561b5c659765563f746c1f723f1efdc716d235673
MD5 89b306cbf28c3291845c22d917a30d31
BLAKE2b-256 2a72f855a5e7f149a2c3487e18818aedf8b4b11f438733427b27cef6feaf11ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9b2b8e5f76fc8069a02599f2fda02d86384228d07fd838d1afec40607a81a15
MD5 6256b95cadfeca85f5651fbb6c41be7e
BLAKE2b-256 bf4ae9eabd48b3bd03260a813884dd9b7ae498989772174257da2a43d1ab229f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 576631a21c89200faf23ba73fa3daa78ed42ad88092d47c4640ae8c75ddf8ad4
MD5 cae115d49fa5cad631de84d871372277
BLAKE2b-256 2ce7e24277709c49c68bd0c742485402e177324a98ed213c4e7d76a75d0b867f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fab3ab3e13be8f6bbdfd9e462027b96e43baedaefa73ffe4161a4853bb36679c
MD5 2a5bc277403658e32f177e774c676555
BLAKE2b-256 ca3660ec8066f19598316f50b2f4eb118093356e111c486dac081c618d95699e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 491ad144533e274fa308063f4292bdd3962839ec6e5b76e0eaca9e0206dfc37a
MD5 731c07b7ec9ed336bf0e9bec771f619b
BLAKE2b-256 8eba1166c3b4bfa2ab0f9f1de769513967d07a04d4e0b7a3e94835b9953c1104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72ecd9086488c80ef76cac0deb854660d866315c92919fafe2a9da81ed7c3850
MD5 01f65077d51b844a371f49c89ab5acd3
BLAKE2b-256 ba0888161bac949c351292672772275d2ab9ca1ac26839790707153e6d2303f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a45d237b8f07bff7893e992774804ac48eed297107b58f51cd053b307dc1f003
MD5 68a1a745623eb3e28cc9c8e038f0cfd3
BLAKE2b-256 54b1801bcab6dec30a8d798330768cdc1e56efa28119419bc85a1f3f92becd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db25e1423e960887e9512201d065b77daf4bf2bccacc8503b7fb252f34467c99
MD5 6d71c175e3a205e2cd794765cb20d121
BLAKE2b-256 58f853a67154db97a22393011787d1ea2f246c47eda4f14860be31ebedc56179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f196f5ac6110367d602ff25a1ec8919d2c075a9789f861996bd36da5489988d5
MD5 e36d25c54878d94df73d567b91502dfe
BLAKE2b-256 12f40e1bfd2ed70340c841f15178482d4ced1396814b686e12f1c07fc30ab504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6061ce55fe72c3e9297834343a37cfa2ae203612e1d3e1c5ec7f43a244939f9d
MD5 9067eabf8a1e768ced61bd2219b94ee9
BLAKE2b-256 780e051321f24c0715d85c7f285ceee654cf646d84f59bb957ed6695ec9264bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46deab5dcbc03f054f53a585435cbb9594fd55f56f7c6a516f14a1b93d77b861
MD5 833f073797484995aaa602cd21ef369d
BLAKE2b-256 3d5d61e4b05c4f8dbfa08265bbad1264cdde90c5853c6944f237cc471fac40a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b421b9f905bae67090dfca0f85b5cc8274afc8f1d3cbe6c3cdfee5399c7ef185
MD5 bf30490f5ff4557ed7e5a7efa400d1de
BLAKE2b-256 661337a0e5c2534fb8026dd7f4fa9f9cfce3a6104f5cf8ecef090112f87a7048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b48f873664ade267703cae2e9d884f8d4a87a40328c59d2561bc9972eff3cf4
MD5 7e42dbf77b5e160e92a7dd6fe9bf858a
BLAKE2b-256 115dc936c3574a6327d201caf3f68fd7779935cda6adfb73e47a18dada387aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93fea90d1ea0f6efbf2555b792290544f769c2811a511fd9ba60524dc8c4cf95
MD5 505b59d4c1aa10222ade805e1ffca8a3
BLAKE2b-256 5c95d8be2f3937ccf012c8690b42cee9c228c018a5df6a94b0ed58fe800b5e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a699b900e0a18389c4aa68c2b02276fc2059e7a58b03f6cbc2e6f865f4f40e26
MD5 1beb56c4c95003129b6148dbed012176
BLAKE2b-256 29874b9b39f1c7d20cd9428cc4769e8eedd3da8aa4a860a56e0efa5e18acb2f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7658316077262925f0af00c27816ffdc8251b5fdb5680dc8582e9359ef725813
MD5 c9f41fcf85de4a569bc1e3520b53982a
BLAKE2b-256 90f6f743211a09bd24e2eaa5fc82135f65117ef9074dcd0691b861727d5a1953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3002aa46479996a32b03c0b01c8c672d0d051c48e1e08833830e457e22358a1c
MD5 87d1fbc59b52fe6a5e726294177d6557
BLAKE2b-256 29242c22ac3b06298ba570697e21c29f12d801d5628161c437ae04e044b37325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80aa934146ac835ee485494cefa43c50b9e52e87366444f9a39839d4f6196c7d
MD5 4cdd63af923f5c438da6a4bafa9e92f4
BLAKE2b-256 4785a063523b971c3beef07b44707c68808556dbc57f8ca938cd01e2e6b67c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aba92e444fa618c0879cc90b5e515bdf0a29b3ff994c4a1a51a1da0031fb9fb
MD5 896f67fd07322c3bfc6ec5748e6fac3f
BLAKE2b-256 03d49265aba81a3140e1a8c7e06dda90c313b50ecec62371887895a36a867683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7725ca616218058de80f9fdf4bb5eff3f21984f278ae2f625ce373e2b5f6ce6e
MD5 a9707b3e0d65d4d9a1cf3841e3cec06c
BLAKE2b-256 08c1c2ffa47250c3eae2688f38bd10dcbf7abd3569f70049734adaca88217d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b037abb55c697f64dae38ed57cc781709aec561a6e1c11495a855c653c32ab8
MD5 46d82d2d659b58bf2820860cdb533536
BLAKE2b-256 c29b978f3232596bf8b164965ad91de6c2abf05484314cfaa315f983db9c5724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcf038faaed17c7a326de1c8d5df7f1bfe96d856b9276aa4bbc37d77fbb3d76e
MD5 ae3cea4ca143478040bf6de2acb3ee8a
BLAKE2b-256 153bdbbe0145a5b3a6f4657608b0228274757ad8127788ce3acc8ae738ca8eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f845c8132eaa8d75ca3b44aa13b8719a74efc58ff65bc08e650ee6309501036
MD5 6e3f701945a6e6ada7f4eb26829309ff
BLAKE2b-256 be7849f79cd14169cf56f567486e31aec38e6344c2745c2519c0cff3bd4bd68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44d1180e2bacee99b6190ae362fba6187e422beb139c1dee0eb5e74178786476
MD5 a45980a87e96ca9be09cafc79b74a8fe
BLAKE2b-256 b4c54b646a56a34030df68315c5b3b2c8dedb3b00cf3bf301007b16e8131b934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3299f06cf61da82e98b6b6ad12ab336f40176d36a1951de8e2849ffdad9117b0
MD5 02ae3aead3c30c93c5bdb789126a9e34
BLAKE2b-256 ddc6e9a4067c0ded01be9f7b010811f4f37100b8c6410b589d7d441f384ac9a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69ff3ea22ec23e52d34667abb5b01039a9f69dc09cbb1e7c28b33988804fb197
MD5 77439d2de7ecdfb9a54a575e2cbae492
BLAKE2b-256 fd94983fee11649112f256577db31ac3740b85b3622c96bf3c0dafd9063cd842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd5c4c8682170d871e1590435342a9fc45b62e70b8e5a58dd2b1ad6bf54f930b
MD5 d56ebadaeccf14b037674d795815202a
BLAKE2b-256 3cca9b9c2f0f04cd1ca2a7ff0d67a482f2e0b82f0f2196ff2a3d8433ff970ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 740df0b5db52f817af7bfea234cbe2a94968de4c781a8340e83f17415342235c
MD5 8a27d1dfd15ce4abc29dee5bea8ea834
BLAKE2b-256 41d1af8afcbe900bb85e1e9680c505f7cdd72bc41a9023be4a3bd4933e9f0aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9a9c809e0409c751ca98725f78ef10a4b201d6859b3d49517ec12d7bd874e05
MD5 311e8260c72b97c7970585caef239f7d
BLAKE2b-256 1c87957a339c694a21d544862b344f1ed3bccad51758a5c3a9be478d88793043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baf7e65711715a3374d5a5c0ae15d8bcc8aa1764a66ae40f611ba6f6bbc4b9f2
MD5 d5eeeed8df9c3770daa90b7f7c97539c
BLAKE2b-256 965662c414eebadc317435caf35dc733cb457763447fafc44254228fce85f32d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 503b192e07306b44a9fd61818513ee826f87668aa41675e610b28a958c46895b
MD5 edb3adcc60e6f054c632d291183cd725
BLAKE2b-256 b3f34b23c1e3ec4275e5f608b70e65f500cddc2c149989e67f9d1c3dcf895f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37dc9c71f85e924d68b10b2f964044a6cd0098cb3cb83a81e713a9c3afd05731
MD5 68000bcae69394db2b0499aae59bbdd7
BLAKE2b-256 2673c76bc65f15569d1030d5bd6f76e79e264fcfc9470c92a1bd620c696e7957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac117e08dfe16bd0ee9b860ef0b2d3b1bef8632097ae9cb3a0044fdf17cbfbd6
MD5 2bea44dd9b436a3950708efb283e15a3
BLAKE2b-256 8b2174f426faf55d4e9777ee05e0f30fe0229badcf52813fb0730bb323f608f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dbab755e5be9205487b6e1476a3e424395ed833e8bf72c6f339954ffebd06c8
MD5 10a5da23106f958aaaacd5e2b742d69a
BLAKE2b-256 33f7cb587c4c57d48150e5f0a063bbb366d6ad2c7c2a2df33be16c71980647eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4b882426a05ac850d4863eccb753f7f55b7e7d0fab06dab80bf7679b707d9ec
MD5 306fadf2fbc3f5d246fc58970c6bbd78
BLAKE2b-256 4fa9ee12eb0cd466cd585c1ede50399865e7acbec4425358b1fd8cc35fdc7be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9fd1be12d2fcd7134384a6d97e90efb3449c9ed58ea280f7925c355fb2cae1f
MD5 e6ce1a9bff2c82ae42fd14922172a43c
BLAKE2b-256 62ab6dc233e1f3f4aec993d06fe4ff23aa807f89dcb6e58f8d4fc607ce443646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e9523575478bf4f44d007a3cd84f8ca16fa39be307f8cfb2557dc72251000e9
MD5 5e18e249306faf72655511b2db4b427b
BLAKE2b-256 e40647a1bfd96e7c702020d0801f009bde5cf986e5f471eea78537f8913b80a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c53ae0a04cce4763d06a5e323f6bc5669f08a3884c0c5540605d43132a7efbe3
MD5 7b6129bd5cf3137a682dc3cd2b0487c0
BLAKE2b-256 2c259a6b80fc52dc0bd8d13cd6f607da4f80c30acc33b5f8a6739b4937b57015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77b84f5aa8cab5c8943c934c8dfe9baa347c816615247be118873aac38cdf7b4
MD5 c05db63a7ef6463c4bb2be8e48f17574
BLAKE2b-256 2a4f52b20e07a45082b440267b53075f1bcc9c24df4b9977830c1789e31f04a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a78c00f1d4ee9a241308c48f43dc9ded7801e0491d5758414a215bb4e9cf9f82
MD5 96a4a1f30d64525c59818d927cefdf33
BLAKE2b-256 06924f76913efc4e2608e8d5836bee63ed875fa96969f266d3b1aa11761c0eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81f6a32c3dba84e084efa08b26eaaa02b4f8b81e0301635971f5e070430770b8
MD5 5665708973fc7710cf1ad7d6c3fbafeb
BLAKE2b-256 e387b5c0c412c63638cacf80ccc367600e7c54a3396b9a666cd0c0c4b4e09fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cfbb7ecbfca3ef7ba17235364048b1f63705c68a7520f2332060b67eacb45a5
MD5 577863390dcee72b7b1cd323378bd364
BLAKE2b-256 58c47a1acc5b5bf2d1eb9ae03d97abf23fe06e33ff4d0f77f494fac35d42d606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37f927aa59fa06ce0d3e00816576f25e2de52a4ee2c686c61752bb36799a528c
MD5 f7e8a1e281f20b2432bd1e97f338256d
BLAKE2b-256 6c6ea05bc5ca4e2165ac3113b756525f2f7a2a93a2d9690f434a52df809ea71f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa2b1ee742349e32d2e03709f45522e5d16a70f586c35e0ee0d5c944c0b7efd
MD5 f2a289ff892b988b025c05d4187dad31
BLAKE2b-256 5a77b009540e212e2e7fa7494ff1d474afcc6c4202fa773ffdc07e794bfa515f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25f68cfeb6feae5090ac2cd29d88a03818b82a80feccac3671b2b71b73831edf
MD5 5d8dc27448090080d7fea46596d5645c
BLAKE2b-256 82c4c6dab0cf0ae77a137b769cd23944dee47c113e28c26b913087cc451c8a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3afc95d26aa283c574adb9a49284f3ffeac73fdb910af0d9a4688df53d73f3c6
MD5 5da54fe2ff6ecd941d3ba6c67188454a
BLAKE2b-256 c6443a9ed63e8716b0a07d2a849cfbe181d52a98417902ef15943387f6582cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6293ff180af74c66a31d160c547a5814690673e3d9fdb40109935e6a5e2de5a2
MD5 d3d0931fd86055ddc175c94f2f85117e
BLAKE2b-256 95ec6397fa4e19435f33cf918c431a8ce6cc2e8950b7d25a22676bed2a5d2100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 175f8aa7f6761f064396493d37a55de4b7e87a2b232f3f3d3a433d7e8c8045b2
MD5 40106323a0505a24971249ea5315e4a9
BLAKE2b-256 715540213580d5e6111dd2320dd397e39cb6fe7e9ae1af0ad5ee5ba1695f7234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 555dd433cee35e9cb433a5a77b03383e315dd1cc9deef53580f16dcb1f41ded2
MD5 ff1a7a24f576ef71e63878f5b5f4ad09
BLAKE2b-256 ca94156c5e50b27b93f1549144219943b1989f38cb4db78543c3f1084b44a6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ec537e5fca3900f9e5ec5de7fc01c2f131fd401a0806aee44196a89b0750a5e
MD5 930fe6af8537e7b67851ec969aeec8ce
BLAKE2b-256 9090d497b26b52897f024575098697c75f95413222a13d1c526fcec7ccb6b59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6df3f2306d8d577cd2bc73e5dba468cbc6cb66be95621e4979683dad5097aef
MD5 74a305490585371ca65265144e2d90c9
BLAKE2b-256 c63e7d48c4e3451cd3f92c4ca11b6f87ec2241b728ffc42b4aa15a9421a7fbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b2e4d90dd5a7f7db8bbd9f5601affc6fff3aab67cdccdcc3ff965d5e6323e30
MD5 0f580a3b81865532f8de726a4ca237f3
BLAKE2b-256 9b8ea1fc50779906a6c9ed961f3ef2d27f7808eb071136d05f562642b00573b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ebbe9f19263e99fa55a5d5b2bd647e7d7998a6e0f270a5a4c977ab2d4bdd093
MD5 366da6b09061d7ce5c57b63f66817652
BLAKE2b-256 4998deb2060b5848896ba4652e51ee8f4924e325c034b3d53a338e78cfdd8a47

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