Skip to main content

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

Project description

PyPI - Version GitHub Actions Workflow Status GitHub License

Pure Rust Python Bindings for File Type Detection

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

Features

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

Installation

pip install pure-magic-rs

Usage

Initializing the Database

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

Detecting File Types from Buffers

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

Detecting File Types from Files

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

Converting Results to Dictionaries

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

Handling Errors

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

License

This project is licensed under the GPL-3 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pure_magic_rs-0.2.2.tar.gz (648.8 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pure_magic_rs-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pure_magic_rs-0.2.2.tar.gz
Algorithm Hash digest
SHA256 77c7b7383f180f757f2a1641395811c1e9cdaa55310738ed01edd714d6085cd1
MD5 9613045c0ab11f608a369f8540e108ef
BLAKE2b-256 7818b99395458697728ed4af5ee0375c043fab3545a012b7c58fa154b4388669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d30df638c12d5d68bca15687eab87f8d0824521a9563ad900eace8cf435d1c18
MD5 05ee66cb4711aa43d46a1b5c9e9740ea
BLAKE2b-256 9c8bbf3306d956cddcd298f4301268b2839232ea788b75935df8a9a42fa98d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31b4317ba71ac12f14f9eca34ddba6435966acd150d575a1f55d61df21293cb6
MD5 d501338f83012ab984a92ae32299b826
BLAKE2b-256 6f106e125ec99f461f43297e2b0c4c1709b9ca86864fe4a924f568064b315d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4632da3d3c51b6f474db0ac4f07e25046666727a91d45654158466689a883098
MD5 a945d5e5a83cfc43b71b7433de5dea27
BLAKE2b-256 ff9a14e46bde5f7928431e9c3636a4c8d81ab002100e032e70a693b316a7ee1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dae97c66b01baa78e547fd5eaf14039bd67c865bd4ab634a822cce1db985d973
MD5 c720d7bfb0be9e18e20d03ccc85b5424
BLAKE2b-256 598f27add0882b959958f66dec1e800046da7234c35e559bbf13202e5043f416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c0853cffd68bb57a146d1efbd3bd285f1d5583920dd560654ce3096e6e7b23c
MD5 a84d8fa70b7f9c2757035e58d96e45ec
BLAKE2b-256 df584b9ef50cd23a6074911d49a102d89aa30382b99f154f04b3ba8649b4dd63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0f8eff9befa442ae94d2874cfb77e22cd913d7491ba7d8b5031cb591309049b
MD5 aa640a368957a46f587ca5fb209e8ff7
BLAKE2b-256 70960e62548531e70b175e96a96c4b63a656607df996daa27c8281d9e0d60774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aaef70c4bf5fca6c41790613ceb142bb7cf65f41661f4d032fe2816e1d3dfa64
MD5 dc80762d03af184083432f92645ebb6a
BLAKE2b-256 1afa75449d7a3f7a6be184f71dc63fba235d55f7710268492bea3f0bb5f1147a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c9c95d256f8ec952d6d40c5b166fc44f62c57c2bdfb961ac9ca54f248e15d97
MD5 68afa678fa5a43a3c2b81bf0a660cf49
BLAKE2b-256 339498ef4d4381224a1fb97fa27cf2592f806c7effd9aec8f8b28d324c02c465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d801f1547945ae618a2a59c5bd38c4439bad7cf8bc7bbd14acf1af156fe61e7a
MD5 d682617c50f953454ed7f52831f69ac4
BLAKE2b-256 358ee498688257825bc3a6df02c9e9131b7f72a2f148d51fafe55e26ede89284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64d58542b6435e6aa309c2727a3df9ee188377f8bb32a6e12dd60a9eb078894b
MD5 83574fce6313a44fbc4d3c9ee8dd595d
BLAKE2b-256 47cfce3af74d1f9970cab5126a6c7ef36f26dbd4c79004190b8316df183fd0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 520aeae4cf8cf6deadb1f92686a04e1d19dc48e413071e4623bde0bffbaf2b9b
MD5 143d8eda8828ba14771311b4bbdc35aa
BLAKE2b-256 4ba37d4a37e161b01a05c272748fdf5d3ecbd3309eb2e1b5443992554baa8d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1f3a7aab8fbf05c05da4e632a84d44f0712e4b63e99ad6c9d5df281f3d6e077
MD5 84d60e9db79db37c9c49e93538298940
BLAKE2b-256 8d6bdc4ab39891c2cffa39e03f79e95370a9fe1bf62979be2d57836e8e6fd527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 861dc222485226676659599c236c74176d5b6c149591e8cf2fc9b2755f1d7d0e
MD5 23bdffbc034fb44db7639d6cbcf99a88
BLAKE2b-256 1984262aee85c5b1be7bf94adc0046f632b36d4dde41459dd616d481f3e25eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58095b33f1668ad492fb25752cc7dd5438d6437e8ba20d1332dde2dc3300e9cf
MD5 7a082a0e17c797b90a92c2b93608364d
BLAKE2b-256 4f538784236bc73dfceafc7ed11e423e8a64184170dbd408b4f2847183b1c49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbd21617fba107632a5d89ef13ce27c7a3e741d0f4253d22bed56cbd4a972539
MD5 9a167cc1533e1dd7fab687416da85257
BLAKE2b-256 57cc8b62c825bc3a9d8622b293fc182cd3da50b9df3ddfb614e02d7e932a4468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a68d293f025525c5b33f08f51086b2e654cf4b48262cef15ac731fd8e06a008
MD5 5f26320d7f9b8241c5937cf1e76d79b4
BLAKE2b-256 d9fbe0393bff5a56aa75ae0546bc12dc714fc912046666063669617e43823ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e69f26183e201c6e042bbfb6897cf3447cab8c4c0395347b5fb34f6bbe81e7c0
MD5 97dfb1c356d5536ff749f439fad8bf28
BLAKE2b-256 5a7793a58167a8162d6c5c89b716c440a03412a91c7ef6dbd6e7d02b4f616bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69b413cf65129ed85a068b0e5e3c40bee97375a3c9a5921225364925623cd740
MD5 6b8e5a5231a210105f5d82b5322cb695
BLAKE2b-256 788517f13f4b624ad7db58cd8ead7bcf75ea616cc28a070d2c8aaeb0507f30cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e5efe631481539674d4dc30b2622f3936932ad71dc039a98c874e5e4c621f475
MD5 c9e2a5a510956fece80bf86a1fa426e3
BLAKE2b-256 a905510c252bf9f2b924cab2beb0a1402fc134decbfb76558b29bdf317b44460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 644d3d2654fcc74b15a50ad0b5dee671814801501b71c36cd0c133963d6d7c6c
MD5 d63ed5357621229e02a19307afed1df3
BLAKE2b-256 687b2026fd95e11e3e89710dc0ef4f7243e7e3de56b107bc5db15e6bd0e205fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d9dfa5cf9465000d270ca5349f97fdcfde50c95d877063b0444af4cf7c07d55
MD5 3364dffa6263c00faddd3d6752aaef50
BLAKE2b-256 3a80f92a90e2201699579208ef1d80f05ba3ec9c89e8a95f33c23c2cb8a3144a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64fb2fea6fd3a2fde6591c59d4beab772ba62e61f0be3d68003af20fddb29ac8
MD5 b984576d7827831dedf2328f0c72eb7c
BLAKE2b-256 af443e127ab987b1ff02c2fd68c96deb2aaac4cfded54315a6f59f823a17af96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb613f8f8eb976be079f029b1798040e8f36323bcdd11c46a1a0205cb23cfdfa
MD5 f84d4fc4b99805f12d0ac9f9099c6297
BLAKE2b-256 a33d9168ffd2a19f52cb697fe612025604ec6eb9774ecda0d1a80485b1c27b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7658fe4db92ea5f523d7c6de0b680b8aba0a0be7240fa11acd2c7dc90c55e94f
MD5 d9ff69a9f3bcc728048790424701f5a8
BLAKE2b-256 f9c9507ab6158eca0cebfd3d84318d1a4d88430b932390b0405576621f470c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8af77f3c445ab59f2173dd2066004db7187ddf6bee1e74acc95c7e4785f68f7
MD5 fb76d7aa5e436a8f60dde4f01e45d43d
BLAKE2b-256 0d93e5fd4cb1f9e3d933f529a1dc6d69024ed7858d48a4578128a1355204eb23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de5ea29b0790e58922cb2bf6d4475c3dd11c7fc207f82d52c512995e9d76cba1
MD5 384d9e4838efd0638f2692532f496c5c
BLAKE2b-256 299145b4788fbcf132074de82263c3311280b51a5918dc62c69988c1f628d1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f1571839c0a821494a023991b33198d753377caaa07c162c9b59e8c7099f0a0
MD5 d8a7475519af77ba8f9dd8dcee60a7e0
BLAKE2b-256 f3949ed9125d437cc8afaa6d5872f798de0da800fbe6ab4a5fa336779e5b6a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b5bd2bbe9a181d961b6c17ba82d9aa67ea964108e0ff4184b88a88842d4c633
MD5 12d4ca4e1635e95385333d4aa4da6504
BLAKE2b-256 b91f0099f544e972f77d165323995d2d4429d6a4060f29abb7da8f95121eda69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a22c104c4e47835a7f5f5a24941e296ad0b59cba6fc06910959ec41aeb954b60
MD5 31b1252c3fad3046f7d233460b7d8d44
BLAKE2b-256 8000a7b1489b657ed10d9b68e58d23d79d248099763be7af3a69d5f10a00858e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23eb9b3e1c696bfe863e62fcd72d6d4f632ddaa7eaa66af7d976b0864a28426d
MD5 c7a3bf8e90c9339642560ef8985cbfd2
BLAKE2b-256 08458a61610c552162d1874def6dde0e42ded2be6236251a28fd47f7895b45ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb01066c498f0f4ef4f95e72500c2800afa9ffb9d0bfb1c690a8485ae9c2176
MD5 a841f3bb3f91fba45f49eb93dae628e7
BLAKE2b-256 3bdd118da283eac262e1b58503ddfdc70a382979bdd4bbfb24ca3ac719e15966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bee566b8e03290e78ff5db8b3ba42b09a433aae669248ae0a36ddd3a1363368
MD5 d376f9689e5050ad8b39929e44ed0fd1
BLAKE2b-256 6f1c4838320cf5ff69d8f9a01eb3937815b27dba27f024b71979059420b3e3ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 315b615d2a0041fbb7987742769a011fd38e7dcf8ac1e792e7b039938cf97850
MD5 a4ca02570495507c37c0da5fc94f126f
BLAKE2b-256 40c17517d4d70937cf4368114ee3492c2e3ff659f3c00acafea720039f371f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce57a97d72ed63876a95573c9d874bb99f8c85551931ef574b728be1ca00db2d
MD5 5e9d8282ec9b5716e3e48b6305ad298b
BLAKE2b-256 8b0024bb2863f08e8dd2425a49ccaff77d5bb067035f6de258768b3335cffd09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ceee6650b115d75694ba266b5e389ceed3713b512743276c00e3c8ae6d63c2bc
MD5 649c4ec05e4b9d5054ed9998f59753ef
BLAKE2b-256 f0ba09d3121dbb5c871efec165d4daee3e2e4ee58d41bd58ccf5557605739654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92ea10c345af456ccb16bfc6b7d05c2041f79675a468e2279ccf7509ed3c3c7f
MD5 2260497ec4a32c2e7320f781b7aa2ee4
BLAKE2b-256 9bc0900b9a7438ebe8fc135305ed9b5b3a517ca8350b198b3e0e28c61ec5a545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7aadaf3657c78d302afae0c7848f43cb121e63eb765b421d7da0090fff8db47
MD5 298b87e76a847e5f7900f078eaf8135f
BLAKE2b-256 461edf3f96daf55befc43042fc1f8a8db2982ca3f52081e1c56e35ee9a9f5a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc20c8787a57d065f43faf8eebd9dcbc872ba0304814b76034d92d8b5c989a55
MD5 f0f816dec429ce37e070ed59da0c4c21
BLAKE2b-256 8462ae68a14cdb2727e297e2197d59039ab3fd38eed32d3f6751b02b45c74376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 490931bca55e50597416ddd51383219e4a090d28e3f375b4f5175ec330ba3c2f
MD5 fe5fda6125778b6ea51895560b30caf7
BLAKE2b-256 d1afea36b095dd236a4af798fdfbc6e100d97589b5b70941524357df0bcafe22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dffc37e4e8b6f4a81ac66318eaf09334ce039a811b4b91ac55b7219435bcfff0
MD5 144e264da31a88cd3677f193c4cefaf4
BLAKE2b-256 5131414abdf7bd7057a873bbfb2b1ac5dbb9aefecbd389cd1c8fce3c859c71b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba5a7b8473663cfebd3f86cb8539cf33ba0ecc836de7831beaec996a06df4874
MD5 a563e445e904d3f06c0106c21af3bf91
BLAKE2b-256 d30a9622b980ed05fa61f688f764ce28ca33d494c2875f0708eeb6337f5ccad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e873bc40ad1f6f839a1ed8041c13aaf3563746f03fa169a0c7fb5dd5600bf53
MD5 c688f6e7f094525959a85b429a1e2003
BLAKE2b-256 d6568b4d212430d339e11771ddd7aee57f9540384da82328ff9bfe9849597703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50e2803a96a601b402715bbafdebc77b96377d1298401297a75959014122d8f9
MD5 531eeae53de587c80da62576dc845527
BLAKE2b-256 908e356537b427dc1f39a1ae8f84f7d68bb124dc471df65adb00a0bc4ac4e24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cf8aee8d882cdbafe1825f0600b58fa3b477427b9211e5e51bdf9c7fdda5817
MD5 77d2d4b90058121e3a6d74699201b6c7
BLAKE2b-256 776958ab57b6773dba5f78ed0b0f220f792774bb935fa2a7db165738498ec099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8eba26944b04063e13a3654f6495418e83d69413e02483d8a199d470d9ccaed
MD5 af09e393ee58acc5fccd28f6185999a6
BLAKE2b-256 58420a0397c7fcb146ad43464719d9fa57e5e78810110e4daab6fa0e1001e645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97c3d1718222adcdbb38fcda4928d8e6e68afc79c3de4f55f24a3036c818ebb3
MD5 1f8d1b598ba7d6121e2ac6c67d1c9181
BLAKE2b-256 6536badf78cb798cd2bdbd767edc521b360e506c73209ad1b3a5de4d1b468930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3121f5dc04cc3005bc03a00b3e2954cd2c66233d6f74f08d682f2bb3f69b2f3
MD5 b64ace262dddf68801fc2677e25a9a5f
BLAKE2b-256 b3bca20f2e947a1601349ef9d8273e0235cfeeae8d4501ddce882f42338ab641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be3444e1e0c5967e4b7a0ad4ee8fcf236f1ca1c4fded7ea9553a405c3ae7cb57
MD5 508fb2bb8ca99bc71f6919ddbdd8c847
BLAKE2b-256 5c0836f19e2e7b0ffd4abab2613f7ead6c9943be3c6352365adb29ed795f4f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 effe7a30f64ba070e3eda06692026f1c20879abc09b73c1f37c83cce6bb9b7b1
MD5 b1a1b149976964208e631c496adff673
BLAKE2b-256 fdca22777774ea51f3e2beff8975b963f351794f5e0a3f174ce1dbe65f47fb81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ed09022e6268dfc88ed266a4828b35472261b5919aeb666a770d9bb5d9a00a9
MD5 275a458f412a724603b04fbe44f9dbb6
BLAKE2b-256 36a321d000e809ab7c1ae10160ce0b553727f641991e98de8dfff3ffd91d967a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7afd7b7c4c5ee6c44c0bf2d2947e21dbb200c50c467ae0b843184cb4b2da16c
MD5 28a804600cb0f27d6ec11a933f97ea58
BLAKE2b-256 eafe24120fedf7bd99102df954a33f9ade1c51c141357d52c014a1d582882cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f7edd2214120ee791249c835d04d3c90a51ca1b35d0617bed0a7a66240a543b
MD5 92495fa10964344c9f17ed40105331e8
BLAKE2b-256 00bb8eb6c08251c07836f52b51e046e907a254b0e6b0e09615f8a1a4c1395d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 780767d1c5dd837788112b397c666799488a12d8eeffd99f493e378650ab7e58
MD5 2cbbc754486b5424bb0395a269c02614
BLAKE2b-256 69e2a15cf431bee27e8943029a8e865bbf4e375715d691e00081d142c7f36e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2211f94f0b6385ab4cd0a3822fea9a899f8238e7fafa8c097e4fa6a0042a2a9c
MD5 8e1bcca99b257598bebc265e4062a394
BLAKE2b-256 3e28ccf324afe2f00b6c94eae0c093a536b9a653a63ab611a844e59cd170c4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ae7b065f7919ff4f1cb5a0b703df6b09d3d9cfe5e50e0d512ccbc29b5f2be80
MD5 b41aa9eae97ce6764fb9d069ae6fef83
BLAKE2b-256 2280f0520e1e8cb75e9058144446044243de958e2743125361e0abc506676860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfe5aa2f1c279b85cabb36c9c1898f3c35a5b2786ea1905d4151b16c087db7a7
MD5 3354dadf64c7f48461ed65f0687714e2
BLAKE2b-256 fb4c6dfdf1a56ef14f82e6c25eda37012c5161e314696b6e005a5e0e667a8aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a5719fe81de63814d721ffabb48ccd2c4ad23269234d2e18f17234efabe6ede
MD5 a9f006919b6d7432f874ecd3bc238b9a
BLAKE2b-256 e1f29306916f0da43fce514ce4c72ead0690c173c17029241891a8e074261e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a11168ad13c872f44cfc96aab1bf0ac59ac51b46f3230d7309879900f27ba297
MD5 1dcdbc7d67788a7ed1a8ade48d2e091e
BLAKE2b-256 43bb5575a9f9e2bfe462c66786a55d30eaec06c6bdaeeb28e8c1b3da486a79fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd4303edb2d65e2701c7ac00e5abdeac4da6ed6cb080406e535ee9488b796620
MD5 a9ba1cbd1f12df4e212d7c3ef0a8c12b
BLAKE2b-256 b656ee4db6bb39b29ab45bf1ab15804f3c0ee3afb782fd168c971a899989bd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff7d4f9aa6b2aabf3b9cafdbc5bbe45cc8a313a9aa9db14258600fcd2385deaf
MD5 570a48106c29e2c3daf991b1622c726a
BLAKE2b-256 c8a7caf18deeba5022cc64146a69dbe18e6006a8d0366d93a260a32d54e23d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80183facc6f071bc4b223bd48fc4ae4b06cdab9a35701254d458d528c60fbbbc
MD5 b0b0d2f0c40adcbcac95f00d515a4d4f
BLAKE2b-256 0d1a2558025675193d038863ab2c830dee19ee339f1f1b59705b92c014447c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aeb337160b590bbf38b2550333fc83bed2e3fcc3bd73fb1c85dff9b4a1c49abc
MD5 7f86b211a7e8c5befa06171eaa083d36
BLAKE2b-256 9512828a2e6b89486c9dd5b868a9bcf9e7434f91ec1a42e20dc2c6e18b1e39ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8329c99740e373b63ef1f9a6b9ee13301fa4b334d034621b3911ae29cba3d048
MD5 43a95a4fdd062b2518353e50e823664a
BLAKE2b-256 5461974f1daabc5e74ebb8e8d032ef82fc79199d3b31c3921058ff5c1f78285d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aa8ef0a9d5f3ab17a4dc1227ba009ad105a6d5812ecbad3dc9ddb9042105c3a
MD5 f0146debd9d19f156bc9858080bdc0cc
BLAKE2b-256 b9b7d07beb84f5af570fc0b370bc6ea30f616197994a139a5cc49c3aeb505005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a13ba2efe9555c4163dccd956938c911cae540e3cbd55a0fb6684f55428f1126
MD5 c8220201beb64fe33c92848ad77e3c5b
BLAKE2b-256 b375150d7e4432e07176f2152dd097c707314d1895c7bb99d1a5ae058a2b8fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0ba956f64ba5b1a2d654d84e589335dc8f8ecdf706e8a3d5242918c55dfe41a
MD5 3f628862fa24ed1bc3c1ea268429a74d
BLAKE2b-256 4fa8a9210976081a376fd6de524a0bd2b762ba8c0afe2a7596b97500ad1d448b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e31a55bc159e79144a6b22eeb337ba9521dbe5bf6a12a01adb8dc1a508bb3e57
MD5 a0384c9f020a851e192b1ca0b7c3aadf
BLAKE2b-256 dae64df2219f1549722547fbd2ec866b5a6082006e14fdf519c88223380ece97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddb54161604e3dc49837005e367625cf3d4a8125e5155bd08c514b8fa2be5c08
MD5 02b139b16e7fabee8a5949bc5da7bebd
BLAKE2b-256 0bf85dee582000921803a7393280347f42571be6fe0ec7facc0ce560f8845d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d74c1229911c2d3ae31d775787f56c41e4e01cae28018147ca592673bf97556
MD5 dcf5456fa0b0d9dac4950e92da04b781
BLAKE2b-256 40c59dfa204bad79a5a49d2273fc296ae750b9bd286c611f9a2f61d6a76ce97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a33f5fdde05f8a16a4de9e2f0062adfd4bf8252e6a94eb81535370ede9ceaeeb
MD5 2d550d2615e2e54c76bb6e9fd8f2ebeb
BLAKE2b-256 54ec00df5b71b7f76bbadb6313f22c9a67384a24e5460f8a98d56af493f84e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ab872a36dc430c9ae731f08c5596abfa739e9e814092c11dfdad677cf0f8b54
MD5 ee78daf3ec5c7a66fe17965094f5f106
BLAKE2b-256 6804fb78bffee4c2f77542d2dab0a7282b2c54fe5fe47babdd06722303236538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92e8b19194d0ae420cf704311e10a8c58f1acd25c7c6cfb4ee06dd6da54d343b
MD5 c5489e91abedda46faf4c19927e07ad2
BLAKE2b-256 873a4613e82f08cdf026f9de8c580eb4e0fe311a535fff4e639697a69046d5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 625b4fd558bb3fd337f9d4fcdeb9cb765b7f7196ab52c5e9d583afe87fcd64e4
MD5 ef15e72a0ca4413d57fd367ef816c926
BLAKE2b-256 f3352356879a37750c78f04b1bd9f8bec91447b0e9d916d9ed0c63ec94b8eb22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8ccab35d220c41f12891061e929ffa6fc044622d0057f909f9fe7f04274071f
MD5 fd27b4f8d8e19b6bd30480a2b866d47a
BLAKE2b-256 238be08f2cd1d1c21243224c30275d18c1074083fb303ac5306309543befe837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 123b3dd9f04c4cbcd6fe1844393d966aa4dd3082ca4bf87c2e08d6c548b29b6a
MD5 d04ba193798e9c9e616151c052141a9a
BLAKE2b-256 f701c7b253adfd53acfb6f94ba34816634bceba8392ea642430504847ce90fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c48e285760c26159cb2db47db4c20d676d02f69d5b654f25f5be8bbcd2ffae26
MD5 48c2132626f7911d24ac09cb8a4fdf7d
BLAKE2b-256 57f552afe080cb003117cfc0ad54183f0502a4e6253df7d59163c76152df3fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a55466cc3869beebe5cfe59a7f1cb485ae85b5b779847486e701ed05ce14d6f6
MD5 ae7957dd7ece2ada03b3391b43cc812d
BLAKE2b-256 57311b951efbe94da53294fa6971d7c3146078b59ae55b478685716157a91454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1d0b2ed3e89e09650554f6328fddc099132c328d6d595fbd689543551c3b0f1
MD5 4e938f69a132ef0a4ce133aee798363d
BLAKE2b-256 f6087cc336a280f94dfe270f570be99d3a14ab750b2355e4c9f672eda806fc06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4d866475b8ded647441a94627eb0a4ec751eec3a9de4be0bfb4a8c57d9c4b1d
MD5 9a09da430ae2dd911470f06eb067e4b8
BLAKE2b-256 646824503421dbe1f2d664ae75292272554b77f3ad01b9f6352949cd9ac0e06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1212c47ae3f2a0bb39a1c94cabbc50b9f2d197f7f809c7318da9b5ce6fedd47
MD5 c3c38de3c3f98a005ae0367a33baafd8
BLAKE2b-256 a413b3fe46eb8e6411cd95206071328b0ac8e7d83e1dba5c938ae931bdfd6e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 407a0f5cecb3aad0fa63f1b71aa1b25b4308b700f6bf3486eb095ad8f6319d65
MD5 b52cf34eab7d997dae083982432d33b0
BLAKE2b-256 327dbb5bfa1ed9204fac502fb8938e6c59161be2246bab453c739bfa2c6cdb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 487263409166ffbb86af25fb0a5cf6dbf82743d81804eca0d131770da445e2be
MD5 2bda31c74edbcd1d98985cf085cf941c
BLAKE2b-256 42f8a405126020017698e39165aee6fca3218be34423d5f9fba3e8f37f8b3f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f62b50a750d9251117f6e79ee0b441b789e1b3da780152421382bc360cc6db9
MD5 dc0f6bdc6ce71905c7bb1fe81922410f
BLAKE2b-256 c8a6d5c954652ebc336cdbf3d8896251ac7274fcb8420971b773c879c3dfa3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4338ff81b828d72be348973565335c0782b5d8d34470063fe571140f7715c064
MD5 23ef78dc73e9c5a4292c07922dd4b54d
BLAKE2b-256 113a7ba95df66d27f3111fc7d94bbf68a0efe629eb8f0ef32c2a40b94df56b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53207a4485c2e2a275e2af5805778beea24b4f99fcf7332b584db5d52919c092
MD5 d985525136758e22cc7b1ccc18141d1f
BLAKE2b-256 a28bc854d2287e9b4c9fc7f07a0a34ed1b7041d08029781b741ae46645f6cf9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e540b311aef07ba7e87c9b858dea2fb9361fef1111bd1fb8e102aaa48a2905c
MD5 a36388c48a4c8768613ac1e8032553dc
BLAKE2b-256 c27c66fe2748d4b0e962fce1e03debf92bd356424ea17cd372a5b59c3347d07c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f17f61509bde388fa45810a8b1e2e3f248b0dd3e504387b1758eae3e9ab9dd8f
MD5 76be666747ee21a25a16749980461f6b
BLAKE2b-256 024c60728322b2c5b02e59cd6732936e59aea75c22f8bff44e4f2fe4fca541c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c74e4ca69861324320026226ac932bcf9825b8e97a72156a1600cb1a2d352145
MD5 a91b8430ec59ad642027f073eea02377
BLAKE2b-256 adb77cda90cadd0c314115cad0357ad9ec7821635670548bae46876e5d37806e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93d6503533c416725977491d81849eb046da63580ff890370eff52bab2be3442
MD5 8e9970f2d8130ea225e4e29eb6065187
BLAKE2b-256 4dad21ee8293a9fd080fc04fc236dfe7a2c1d70130af746f4a692064b75af3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb57cb2eac71da30284634bfc169e794e38c5f371d0b8e22089ad2e3f859854f
MD5 2f60236cd09545490896af99338900ba
BLAKE2b-256 7093520d90ce1436a1e722edcc4f72765cecbfef54df20a8068f3464360db2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f8b3faa53a1e9538ff1680100e52c5e480d5fdef17d0f170a543b204af01026e
MD5 ed68c07593439c7af53b5b6482d13d12
BLAKE2b-256 3ef87a71568b234b2858151e74b5cc9f16206736a5d5a9b32e7d18076a4b780e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 063f59e647988fed534d55fe2b6ca98e577e36a987e95be808c326bfdc566fed
MD5 8b766fb88d8386d48b4bea07a809db36
BLAKE2b-256 13a76db7061bbf925881a1c8fb5f42a152b5987ffc9e3c4b77a35b245e469263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c5022c80a5d6a360c0e9dc198a99dce3262786056c18b644e855999caa23f9b
MD5 75d19b05ee9df5f1a3e9af28e3bd761e
BLAKE2b-256 907e46cc820867b827ad0db8aa546e846b9afa0c0b08df5d1c9ad1a798a69184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e073718c10242e689d210731f49bca0214e4511fe5ab25994f4ec30fb1c5536b
MD5 0178c98d73374f79f55b3768fe98bf8d
BLAKE2b-256 27194a5febf25bbb94403a4fc8bfe6a6cb137c263307b44b9186786e956aaaed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fb6c2e35a4e9b951602938f7db26f9097f46f49d4ee5095400a6231bd8a988d
MD5 cd158e9409715500721f9cd411db4f15
BLAKE2b-256 b51cf2ebae3b1c653fb2117eeb2fd469f423a042135874680a04337ae04fbed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42057a968ffe58a2b9669a0300dc899ffa726294b4b6e69c4e09796815c82217
MD5 ea7bf09343059585629e25cf0e64f9aa
BLAKE2b-256 6f80f1e37f5c9a386cc42033d025d7f5015e863487295bba2e9182f4348a5a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92dce785b49550402aa0baaf25d102636947d0213d5a8b2fd071d683f7980adc
MD5 8034cdabd7ff8958ac294686546e8dae
BLAKE2b-256 0d3b1171d98aeffca1688bbe2980cfd2aa584c7d1a1d3a6a5d6ed722f7c5527f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f51784345d12281b851781a834fe0abba388e999b1ccd465f688d53f5377742c
MD5 c6d5a2092c014261f81e5417f8761bcb
BLAKE2b-256 07da512d8cca2c1ada81dce588f3536ec804eaad9f769da8be481f1527def42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74d8a28fa523a85532eb3c63c85d2c9fe1b7d47afb0fae254aadc4954e44823f
MD5 7f2676d056627db579489daa50ba50e7
BLAKE2b-256 17768edabc6eaecd4b50be7b6acc2bafb31f2f915691043cf3dbdda96836c5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb0257deddb197e51f66ed82fc025f3ac319b7fa8ba4d45a51b88e78946c7b78
MD5 b66b305e3126a440dd341f2134624bfd
BLAKE2b-256 ac1530423496d69b5eadec09b90f19432c854b3693f13b4ed5d74126ebc329bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbdefdf57d2671f7df99a5f567d721d0aec29204da3b123ed6810924bf585c34
MD5 57350b49c9b6a70ffd882dff816d4426
BLAKE2b-256 c3073e8165ccc0c5e7c84a7ee9e9afe981258ed1061bb33dc74234eea8e52acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11418806c49f6926d4e2a384a1f220965bc5e9427db771e51f7d4437087e1fc5
MD5 ebdfcf4db5d6c29eb4d141ff517b1a2b
BLAKE2b-256 f17635336c689978f02dfa2590c714fa59469c99f77fdd9d5dc371b056991d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05bef41e9e4b60632d8293d9d8cfb03906a66ebb81437681b42ce007fc76a639
MD5 49027b6ae4a3a79a14a7fd9ac439450a
BLAKE2b-256 5a91da25b1bc84c80e09cd86945fbd3b771e2377383005b89e7c380b8d55344e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2830c20baf6e4d61474256a1713bb4affc68ef217a38acaf53dbb1feffdc598f
MD5 88ec11b362de23a946b27dfd1b9ce9b0
BLAKE2b-256 927fb5985ecc3ea507e7e59e1d8c8d029fb6de9716dd28e34526c493f8954e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade377104acf3a921a735c2e997592e74d0a717eb9ef6723909cb92bac2e55f2
MD5 fc1c3ff4735c40a3ec0a76dcad9f8a2a
BLAKE2b-256 fad417fef0d1437aa347ffc152f3a31c78dd4f73a3bce5e7d2ac98a815ee9951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5db3afed9b4a3aecd771a801670efc642d886427782d8bebacb817ef0028a858
MD5 b03fc8dd92a75e5308f92d68d3213fc4
BLAKE2b-256 9f07d65f1fb6bf921b62450540d2668d4a3fce41ebe1eedb5f743fbe9319a583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60a966f166f2b2587902a17490740aa7442a8a3a59ce692195d5890c65014376
MD5 6530cf2830d0f8706f1cef2033dbff1f
BLAKE2b-256 eec216da52897ae014ee7aebdc2f533d4046f7d36f4aaef2f74847ae2569bb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e8647db1da2b2509a9d53c4f0c305b25ed573d9e02aacfa363bcddfbc9b8ad5
MD5 8985dd8056b2504d84b01fcbc715f656
BLAKE2b-256 8e225eedd4b5b7d7204f84ccfdce6d1172dafd09689ad9bc5d527d90a9abc672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1696005425754813af2c010ed059264ca31bdde2156c71f6d39155a7bb713d5b
MD5 560799e27115dbf4e9205503a88c449d
BLAKE2b-256 14c41ac2db4dcda2ac020dbe77cc91ab1641d4ec92d0c0417a5722237b591d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baa9c00047c3d13c6afa6b8331344b6242438fd9ac5652c9a883616da96fb6d6
MD5 0c4be3ab5dc69ec65abea1f24e84dfcc
BLAKE2b-256 0edbc8c677b4e8bb4e965be0daf035b6484c91dda2c8e8fff4aeb9773eb2f341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d7d671d0b0991928bb721ba7a5d9f36314e11b26604440ef31685df21643a79
MD5 85344a4678c03fc3aa60d5d5d21a0d9d
BLAKE2b-256 1215f4339a37a6eac7e81a1958cafc8b9f456e87637cdcb843a9c01be418f227

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