Skip to main content

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

Project description

PyPI - Version GitHub Actions Workflow Status GitHub License PyPI - Downloads

Pure Rust Python Bindings for File Type Detection

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

Features

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

Installation

pip install pure-magic-rs

Usage

Initializing the Database

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

Detecting File Types from Buffers

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

Detecting File Types from Files

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

Converting Results to Dictionaries

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

Handling Errors

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

License

This project is licensed under the GPL-3 License.

Project details


Download files

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

Source Distribution

pure_magic_rs-0.2.3.tar.gz (649.1 kB view details)

Uploaded Source

Built Distributions

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

pure_magic_rs-0.2.3-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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pure_magic_rs-0.2.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.9Windows x86-64

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

File metadata

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

File hashes

Hashes for pure_magic_rs-0.2.3.tar.gz
Algorithm Hash digest
SHA256 8140a70857332ed24cac75c30cb519842fec8a9d58ac1c0df4850197c168058f
MD5 6e0900f043ea6bd5fa7ef090cbff5839
BLAKE2b-256 ada577cb3e844a77844eee0db3596f201a4105a0c2500aee0912a7caa0f51fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9402fca3dfbca0d0a0e75a1af7a000be0916e6a402c94029e9e50fed29ccf225
MD5 3b42cf480439cd237c6b5c5913fdd625
BLAKE2b-256 8100b63606ab3e84e2000513652ce8c64f1629b7a8b549c94e1e6006a9546a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ba3b9c20017585b2511301731be7cde21907d11d2f58f50220219cd193d6306
MD5 11238a1221f42092c931b79c97d1400c
BLAKE2b-256 699a62c7789016a68add0dccbe69186857ad2c8c213ced9d9ce94ecd2d820a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b8911a0f43667c31fff52fbb166443bcd0450dd2843456704d99337d30cd40c
MD5 e8698ed16ab957ceeb8f44b63b691544
BLAKE2b-256 8ffd49b37780f4ced0d5163df44687c0c508828bba43ea17ade6fa58315320c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0edaf8a6dbbcae53c21dfe9b85db9f9fb5e74a5fdae1c817bfb9e59256a2ada1
MD5 82dee01c1dad6825cce3a993fc941ddd
BLAKE2b-256 e15228e0355a59bc015b2c106420652730c45c093822bb5753b21af07690cf82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20df3f361028f144219505e741880b5c64728e484579e481e0bac9564c01c374
MD5 1488e70fcfb58db23e3fca3f936cbe44
BLAKE2b-256 077bd63e180cade17153dd7ce0600a62d23ecc9bf18576388a9fc082e0f78508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73174b2dae57bc74bf345802386ed4f35ee65574bedfee66652aa9d4d2bb5a03
MD5 33fe3c417574cd0dff8e6603d8bdaae7
BLAKE2b-256 e9b8c03518ba10242927e1c1e8ced93fc481c1ed6fa8333469607a24f908cce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf7d9578bf37a6ad2ff1d71d3e7136f8d2f5d841dfb73baf726355522807cc69
MD5 bbd2d34f7d8d8e7968326e27467a8cb2
BLAKE2b-256 fab2521a285f6b0d9167d55e3da8b563535482dd35dbc03b951a02cfe0cad49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 006c699bced4065ea454d0e95aa658b933c4e2348b34a09c784cfce79acb4c5a
MD5 9207f96c107eeb6ccbb21127d1570697
BLAKE2b-256 84481b3ee15270050f6dd03d442aea973999c3063b390bc1a071476f2895d7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61855f401bf90ac9e0dc2c17835760e70cf97586737bd09f6540a6aaf3050b89
MD5 9bf1cc29d117ed32cb944b7dff92450f
BLAKE2b-256 5fa5bf25d76ccadb1f83a9ca615607d26e89fdff73b06704b5bf4b79f7c6b97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5990049b8dc87cd61c15211de15e7a213d17a89e98ec7910edadc0784b63fe07
MD5 ada16c169605f01a10bc806fa3eb7f4d
BLAKE2b-256 ca2a9b5132efa14655c085f78bb91cc4b1933cdc9eff570bcbcf5e5346d95657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4001bf2e153de0459f59c72c6bf9d7dd9947505b8e992ff5f8606cdfc8694d05
MD5 d5c395e5d6e1ef2038e787056c676471
BLAKE2b-256 30950d67ad92073cdd949123f6a89e2b9902772185dca2d9f27b53355ea52205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a1c18e90e41f48fc1c2eeeb752e7d2d9f23ec1444cfbc342406955bc4c9ffd7
MD5 f790091f4e4710a3436381fbe6b2c512
BLAKE2b-256 f7c74a67d22a043711cf158754fc5c7755e277fa8cd273ef0a80e7e73daad4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31774843f461f5f22f4b9080d7d0c093bbb040bd07e7cbb60cf9ed8901e9c786
MD5 b7326cf610ebb5994390a5fef7e80dde
BLAKE2b-256 d7344b6b237169cd86d595d79eb260e1d08d97e190b1a55dcd4cf4f93ac73369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42b3de28775f2050b99da698c9002043ac61d40c2febf52622ba7568dafd4e3a
MD5 26a959c4d30732f086e4f91f1d4d4afa
BLAKE2b-256 c0e973211c4e119541fdd899aa7686061e4432b9d7a63d7ea2ad27f00b6e0cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0903040c67b28c6f424d5d4d8c7c364a7a5fae5505967abd8fc1870747c1a37f
MD5 0aadc0a4516dbd464a986640fe646e0e
BLAKE2b-256 fb06ff82d4cc48664432c78bf15cb15eed08558a425132ebd0fcb2c0743c031c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9cf9a60d17ba39baf70700ea9bf4e9cddadd60e10e6f0f154915c1afdd01afe
MD5 0b98329f4b08cc2b0e785945460927ab
BLAKE2b-256 49d79b77cc2acdd80bc3d6ab2c2dba78b2015f0b81435b66d46c773bd9812796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 440ffd31fc176b09fd6c8d22f578f0f0ea3fe332e9bedaea7835afa6dd3f9672
MD5 e181b62d67d8d64ec8cc862904e69914
BLAKE2b-256 a4092ab874227093702aab9b2cb4ba3ca15f3f31d6d487e238a26b126a151430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ce1fa621e112627156ae5f972f19010a88798d128a9a9ac4b7e95ed4c6c6ba2
MD5 19b9fd36d401f1b93af8f1e70d121a5f
BLAKE2b-256 34e3911bc8d5bac072c2da4d821645b197cf59d214ff5ae6d51180f3ff6e42eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 333e95ffad2c2feb27a6830450d8b88413b51c8f3cc8cd9b2bfbaad9869b7fea
MD5 fce0e65dfc452cb9fe4382f89633d7cb
BLAKE2b-256 c54ef7c8cf9029f196f0b2734579e55353472f1d85d0305938818d821b1de45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 25703cf47b700a8146aa029f9cc3b0141485f903a27115542232b3ebe9c13f6f
MD5 f7757ab85ca17f0275d121f360e6da02
BLAKE2b-256 74c2d1e0eab5c2bd25369134ce0f70f95406110ea8244e180a5a82bb50b2060b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a135a69c75c034a85fe11e8e7121f0f1b4d5d22a7bd804526027f98e5960d9f2
MD5 1ac270a7f4e3fee99e6c12eeff9ac5a3
BLAKE2b-256 374d931ab650759651c1c783975c2b205e9eb588bb5d6f73f887174b21c89e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a957d5f5940bf11d29ddd7dfdc7576cfd905409cadafb05cd1e169687b8d5685
MD5 d50d93c67c9f075cf8a42b395f2b5f0d
BLAKE2b-256 99e3083b5318516dc70be1daf723b1a862e78ea59a1ab1009044661c324fb45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77ae260af6b09f91a3c371e694535c347fb1b4a6efa6a780185e0c6e61e22fbe
MD5 1a61440b1dcdc437e9f555332f2c7936
BLAKE2b-256 c1f7c2ec88f589b17bc4562229ab21010488ba742fb7b4fd37af0d1397f0d909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36c571c59e3f3f110eed2ee054db8568bfed7dabbe3fd844f8651e87a6f55912
MD5 8dbbed551cf0586cfd5c3192d761c7fb
BLAKE2b-256 5469e523819c60bef04bf41c08b0beea0c2fb0af2fe30b561049f41edd640237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74de7c7a3802b1607440e19972e51c8748c642c079405cdbf04c4d79e4b77f87
MD5 59b101afa2596391042b45781c2d0d6f
BLAKE2b-256 d237eaadec05acf24232c029e900b6442aaa0d06430953243f620a720d23473e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dc297d9cccc95dd30024fa95ef4afdf86b6380e8e8303a8e11d7e2bb7bb3a26
MD5 178762c07ffe7cb1b1dd1d230d80d686
BLAKE2b-256 59f0f7b1edd6fc5dad9e0aaf92b20e9f3741f76546604b133d1a05c7db0d57c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c100c99586b7437ab13b56a60478a630613c8f9b5530bcd0bddfa2a69a9d6bcd
MD5 ae35b6865dba83fb4d31c533bd707f68
BLAKE2b-256 9e800e97558efbae27529ebf74c3dd3728bb62b063160c038c2acaae8793f0ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1abb94d3dcacaa49773f63d67f6fd637782189bf8415e2638c9a2e6591ab5ddb
MD5 a20281c54f741c6f33323be670773821
BLAKE2b-256 24f07022e75d25e9e9815bbf07f5c1073845b1ee3031fcd2edd46e61dcf4cbbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eb629f7bca03436b0a4fdfbf78c93524cbf8f727a94831f6e8d7d41e8f70d5f
MD5 9e0dd831778cac53a96c3e12247ddbf4
BLAKE2b-256 e4126e2fa49f5440f36fba651b87a2286429e045b0a69ff7362d6adae564a8a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 800294fa55d17eb34fef79191bd647b69dd816a72bf1138cd023ce89e69f1900
MD5 18d2bb6de6c372e7c1e18461b9753205
BLAKE2b-256 4b9305b32483299b1648c7d7475004d7d49081c906755aea4e0d8d58d87bed2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e50f8d07658bc2304258e6ea18da42e022a5740f8bab51ab902a82a6703f165
MD5 6925b251c399f445a04b16d72678b93a
BLAKE2b-256 5c227428d7d2c5b1aeebee189c214551057a005694051fb7fbfa1addb81e4dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b7db81784e8e6c56507e9034257dfb4837bddb1a9dbe06723b277391e8ed9ee
MD5 66b93c311a90703febff1642d0742816
BLAKE2b-256 188c22c41633291183bce7f13c92e28904df3adf952137dc44c6a2aba9701899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f87265f074ba23f932cbf06fce4f2a355fe3d827b4d039cb53d5b9d00fa3806
MD5 830706552be5d576ee6848d589511a2a
BLAKE2b-256 5213c5492b019b39636e951391448d5421ac88b46a897100b6e3840cefb33634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61b1060b20bd4a803f2972437b493f6e902d49024580a57502b3ff09dcbcf10b
MD5 4faf0e2bc7db1b5c1c4c5218a16139eb
BLAKE2b-256 a40a95a93e02fd25ee626dee17ed066564a871ac477d43303d92d04bed1fa84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4607504bc7a1ce513e6ebf26b3f767b983a1e38599121de828e4f85984ec145f
MD5 d3c640499e954288154ada923d116a38
BLAKE2b-256 47ffe1183613037b340fa308d7a8e7fc727e7864826f17ccdc7ec93b8eeba59e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b63aba703961815cb8a2968cd04a13416c14a2eb791df7d347a7028fe64823a2
MD5 5367e9591d6b718483851d72babe4d1c
BLAKE2b-256 542ad5a573beb59d33635e70335f167558af347f8f9c1262a0c3ad63eb80bc2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 347efa1ebd7a58fdb7d5448699051046be296beb7bb4c6d5d5bba074ae3ac13e
MD5 283b85966137371456bccb1dfc8e3b5a
BLAKE2b-256 e05e534bcfb95a0f058d6c15257766a65c3c809cfe0ad65ba5a833a3114d4e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b5715e7dd630a3b9a403f66606fff847fb2965257ca8d4b76db03ac45f5621b
MD5 f310b75072bfbdc3648a53e526c5f613
BLAKE2b-256 8befea330e6f2c05e739d8922854457fca3518a6b06ae76fbce026997f4efdbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09a9ceb693374bd21f9ec8b40f6516fc99bc77bb9aaed783955303025669774d
MD5 cc5f81b4aeb64361eff557fd392af206
BLAKE2b-256 e561e1f84a3837a19737b1c0ed1e6b2815fd56e0079d2704f5fc795272375d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fc7e06d818bf2f6bfdef7c727f159eba9332baf3dff296ec1c314f5045d5701
MD5 a996c796d35df9a433935f5d202b5273
BLAKE2b-256 fd77432f288a4f9ff9c6518e054fc71ee45328996b1467ca046d0514d6a26bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 63f4abd2b502016d90c9f9aa4dcdc8164e22bdce26a978a2682a6189af3ea060
MD5 2c93a3bff0c38976cb9daed6f29e5156
BLAKE2b-256 4304236b5781c268add9c79865a00fab4a7c75e6017e01ade193418d94385064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b6ed9021c085c315b0dd800ae2917e02fa3bd93a6e4554951f1c0fd5921e848
MD5 ce14125ae4e4a7a641febeb421377d46
BLAKE2b-256 d523382244b1d7264c1e34a0085a636eef041f96e18bcd083b8de579665358de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22810da7e31b39027dc86b30b40017051d964764773159605ae348054c0eddb0
MD5 b9ecce0d48ef9e7d73a723b588c6098d
BLAKE2b-256 6b119caa05dea701b25a68fb7c16ba15e138e740db4f986dd06ff84abf782669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20582bfe5feab27f758f154c22ca0dfab96811eb3218ade2fe9557ca15b22434
MD5 4648fe647ee75e350cb13648e984d46f
BLAKE2b-256 400a9c3347d83344d622108ee975a260ede00bf96d544f9385fc9669689be6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d114ec1951075220ae71f434c05c6ea015fdfd68c557635121c42153e26172e4
MD5 f7e8b19bde7c9ba10a80ac2dd3613eeb
BLAKE2b-256 dc4edc99998c427cf81dc231905946a32041097139a975f4509fd1bd86777fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e800d6c1c2e3139c38c124a20037df691587bbb78275c8272ceb5ac701a7343e
MD5 3d2c3fc69825483ec362dc7b955cff64
BLAKE2b-256 80802145893c3b3df553cee9d9d89deada427567f6553c1e027ad31ea1652d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c50265da7265fa0a47845167cd312b37577fba3bb4e4d8396da187478692134
MD5 77018a3eac0aeb9910945ac789aff367
BLAKE2b-256 d98de13ce653f4acf0abdf3b247eda6c25ed4a9b45e0f75a585701daf622c8d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f157ee47a2dd06ef6fb7829543456a3bc8259cd7a94100c5ea8e37d8756daca6
MD5 6291456350ef261e40f1590af7604148
BLAKE2b-256 e5b0938c09a0da928e612d90c4a6fb6c669dccf0c1add7599145095cfb254623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94cd35675e89297c421f4aba5aadc97804883a021fb2a5daa3694d0736abb184
MD5 037a8e3afbd8e46af7c590ee785dcd1c
BLAKE2b-256 7cbb0ed5062a77f92ae95926dc8228328f9ba0c37c209ab2a52613e233050523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52fba96091ad86dbd58119429986acb3489d7021238c7d368b43aed74e7d16c6
MD5 ed75a12562db895a38bcc96e4913082e
BLAKE2b-256 ea895c67d8399c35a5ebd34447c823479529be048cb7075c18607db0739f5e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fcf152f97907b82ab09b0229b8ee2aac5eb294ce408d8f47bf417d3374a4cb3
MD5 0ee5b2d3b1b6931ce0fc17cd50be9063
BLAKE2b-256 fe5c77807cf1507e43974bd70336190d0a8886a9c36539f66f5e36edcb70fc21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70bf3a1a326c5ad68b25523901dc0170dcb483658062b332930f4a0622941134
MD5 eb2bf8bd31235079f49d6cc921323ddc
BLAKE2b-256 d896166a7b04849653b091b60b808f6c4dab8ca3f0d3d3f3a8e11eb3aa40fefd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 799eaf7c09272c1f8bfe1ce162e34909fdd1bf6327dd7e8b543066ff76dc18a4
MD5 2b76515174d043cad67b87d11d55c12b
BLAKE2b-256 672591c4c79165bb2b41949df0facffd156c55d6af3ece38bc373e8567484d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61cf00af889d8904c56585baaefaccf749b268cf61db38f1a078595796ece2a1
MD5 9ef280734c8d5f4049b1d9cf1b1cd649
BLAKE2b-256 34d4d34a32981fde0fa031d7b16b3a6c5ab951ba917c906237690b27351d88f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bea2fc4b667ee28f9f0d9fe5d2590056730ceedc4b8a272fa0518009fe201023
MD5 9ab8fecd5be78977b69a7fa08a1b3dad
BLAKE2b-256 56a28a8fbfd66eb4502de6e072d5eb0c76d0b6e6a6659902b40ef06c72e83862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7936eb34ef34b62ed4067910e8e9d84d8f788976fec2c64f5faab4c92aff95bb
MD5 ee0af4ece87e745b2b4948e5f6c84914
BLAKE2b-256 74458c9fb2523d52b6f4d21c7bb11ca2d4d2c2bd09f0196af2708e20fd85ba0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 972bca6d2b0ac7b6f871322843b5be7e1e6e16ace4a2085e1fe735d01b44eb4e
MD5 03dbe45f278eea4d35d7b234c56106a8
BLAKE2b-256 c8b6f70d1a47e7e857a8e2020e3a009f560f577170f3cfa78989452ab50a307b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af9672094014a3bf33d456cc76b6d9e2b4c4d7ffd72769af8d24bc5c1a8fa29e
MD5 57a4025e34de9ff5215b36b214c2daf5
BLAKE2b-256 e27816c4920356a7493a17574cb25becf48c2c50f83f3836fd069608d47b6eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9a2e81579590d202a6f8ce301c962dd3efc63cf0d993813fb847a6f00ba963a
MD5 e5cf29d1cbfdd1ac05eb208080ba2a50
BLAKE2b-256 d07c87c35331a932dbe77bab3910ff26ce71132a860fd1fbf45574d7857018e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c29dbc2bdfddd0bdb3980859edd18fdaafdcf09b6f1490b96eb2d7ff59f59b3
MD5 eca1474e5938ef7369b69d158e1dec37
BLAKE2b-256 753ffe47c1b794ece3d7a8dcc626c3333b270d94382697b3103ebf84631b615f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbad39e51dfd6175f095b5b4d860f39f93934fbbd60a0a713fe3d55e521cc24d
MD5 585b5592845efbbb170a007df4f176f6
BLAKE2b-256 f35930cfde008119955d798785c689f4083b5cacb448282c1f8db3f88f1fb55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8de99c8da5748c079c1fd02853345cb89f1929a6da8f7d4bfb0d3e7f9a7cea1
MD5 7903a3b5c5c17ff36bea089e41dce10d
BLAKE2b-256 e741e21dc7bd844321784387e93f220f4895ecdb7d4bee4cb039e587d4315343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02b39c3c658857726e808b78266140a4b354440196ff4da1589e4c561a3cba89
MD5 c19edfcf69f0343375fcc572784f16a6
BLAKE2b-256 84369d3f3e081ed1269a2fe16b425c89380ee0cd8fa740606f598e4b82354cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd59fe089263a15facd09a21a0e33c426a688e2f0acec831c877e9c8b863465d
MD5 746adb3afe08a673bc8aff7216992c60
BLAKE2b-256 92a49fa42e7f92fba577f25f2ddef660291f0c0b9182fd4d54355fa745b5e41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61cc24211f78f49ff31e876669d180ba85537aee69beb1a54d0c761fca7cef76
MD5 3ad1e798aee3337790a95d5f37c3dfd9
BLAKE2b-256 512188b77e63c8447c46681374f1b8a034b00236b22ba29f62a562beb9277da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efde2321c954a813ca3d053cf2495003135fbb40f0e0c585142fa39c3bdae858
MD5 d65ff24b9a5ae69cbc7ada516c4b0cce
BLAKE2b-256 0aaa4c8eff45165fd421888793805ddbc55fedbc2be6ab020b6fca96dc765f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86615a2c63fc57929535742e640780d2d84f2e167df508c08e606d70941745a5
MD5 eda62083de16603f6908662026cd00aa
BLAKE2b-256 42c94c4177d5dba66e2b82f5c7378b03e892621e38982de6f9ce3363e0cbd1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d56ef8d6fc3380dde9b97f8153eb3b5677fe0ebf63291fbb2dd5e2fd9e83da3
MD5 eeb6277ae219fe1dbfa155996bbe7ed6
BLAKE2b-256 2c0ffb96121619ae79dd06dc193dc72e606e359956f115f10e119b56debc63a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6be28e3e3101821c495cb344028ad30e6712ee47de011a5c2dc3755f03a23a4c
MD5 ba0e63b5b1de617f6a00e585ecdd23f0
BLAKE2b-256 605f6878429aeda5172926e20ceb2c44cfd952607c5f101d26bf9731b83b8d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c22d42fe527aed06ad9930bca2a5e6f9a3cbd25819af955631213fc68975e9d6
MD5 f380640abe4889699c87c10885530f45
BLAKE2b-256 a8e6592148347be2828b570e929b1811576dda778ad96614974351b77a5a68ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 458808ac766439e9c3adaa8e73cb47b054bbf6a2ba72cc36bcc792acbe33c1ca
MD5 39e43f2c7a3396668bf5303dd94ff106
BLAKE2b-256 8113f1bb9555bc9528a57a2e2a05c8f1a8bf5446385d09025f1cb7631898a7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea0e24ee00fdc79877e90d0d3a48e06c2c8a2c46a0e7387b68315d115fb56346
MD5 4bfd3a41923123caec9dacaf4642d798
BLAKE2b-256 7b90fcba30ce473cd420a2e750e3ca037f16fd77ca88ebd574315ff4e07af6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9420ceedb8785ad226f3b51a93c25d079a9f0ba502aba45471fdfe0cef273fd4
MD5 2aa91f8c363c0f5f9dc70a499bd5a761
BLAKE2b-256 5f1ffab51bc660838ea9e7c4c65bd743323a4a1a579c4ed69f82b52c1bea17f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fef4e510daf0609adbde502261694f7151fcc76eabdd31c0c27cae98c4703580
MD5 06cfa3f42790f568447bf16b0de768ab
BLAKE2b-256 e9eef85c97442dcf831dd051fc6c06c5fc5b41a489f991799c5b5d1c323f51d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 396fac57bccd7dde5eb3b00e4127d1694e0626f6d57ac6b0b09370680a25a641
MD5 9634bfe9f0e5981ff83a37318ff0c2cb
BLAKE2b-256 aa8d128039c8dfea7866d038c667b1cd191e8ad18597ab0dca5da2fc57d0983a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 105e1486a1bdde8fed8d5cc3ccd5c4378bf4c7718e52b698e546b743cecb1607
MD5 a863fba8a9560a9626d3b500580c7c11
BLAKE2b-256 d445addbb075c0571547f3e2ffb2e1a289629d9a60287e6c1bdf50a7b98419a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbab6e811f67ff13845b307182d1a5a5888777c1b89bff469cce832802ef510a
MD5 c4c2a2ac2e32197af4866bd404bb2776
BLAKE2b-256 0d8d9ad1db773eac175900def01bccf2be150795586c3aebd24bac6a67b30c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cae204a77b83cca9abc2a3f630598ed28542c7c79e76affd90a341070d8fac5
MD5 7aa516d4abfdaa3daa20b740838a21ca
BLAKE2b-256 c7809c565922f803e03d2829cbec7a74d0724adcca649cb3be96a461cb19fa2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a03f0c8cdbb61f549edc3c825f8e9f2d317c0688ef8538686f96ac9e1ea2dac
MD5 3cc93556b0c5b6ed1f66df14b716935e
BLAKE2b-256 530cfb7b698167681a8ea0a4ef857eeb735205f19224028fc9670351dd34cd56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a1c90d2074baaebce08f93499170d83ad0b3e2259554f26d8d25ae8045ffb1f
MD5 13ec623735f4be58589e29e4058ccc54
BLAKE2b-256 4dcc0b7bacd522a085fdcc4c17985fbd4f76c085afe1c50ea161de0024dab63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b1e059a89d39763da8fac51fdb487beee91a88784416c8cc978ba2957351e1f
MD5 fb6ceb06f49827cba0c8b21606ac19b2
BLAKE2b-256 8cd13ec708951a5539eb70696bac898314636403935ed06607e8c30be1a9650b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0bd5436aa33c99915f37fbdc2a233b0d7b976bd8f2d4ddac64583bf031dfb9c5
MD5 1996c0df006ed8303cb87691726ede4e
BLAKE2b-256 c0b8807d74bc6f90c59e1fa7e9816781b014169e00c65b6def019f59781c7ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4c0994913f8117196197bdc58435dad20f90d89eadbdf11da903b56f68cb746
MD5 596b2cf4a8d7560dc3277926f6821302
BLAKE2b-256 a30b19a44ee7daf67e537ee837ddd92601713023c7fd6056cbcd23663e915478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7a8e46ae57f68a489b11390f11e1207fde0651258f20b62072e93a10aea2f0a
MD5 84425d83747bf2b26946828bd309ed88
BLAKE2b-256 d8871fbcca450cfd24261c58a41919ac94512e33dbe734a2320bdcbf7e4eea09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8175a9c902d88a07fc3fbbe742203937ebec9edcc0068db77d41077ed8ae4790
MD5 9a9df6d8b4cdba2119d6ab33ec327e5f
BLAKE2b-256 9b9e94df101b7b50fdc056726420ac3123379e2ecd0a38f9e1167d73ebfac6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6664aa9a04191ec5fd5ab6a9c424bdcf8270a44045bfadcc38f9b3f8d0d2c44d
MD5 73ed09ac0632df365a907e970cc8e77d
BLAKE2b-256 794fb1c4e08e3c05851c1250f9e357f6315b1e00d362d1eba26235dfedfcfd21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf8b5f2e5aba4be2e0dd6a66475d47952a02947d28884d79bdbe53d3d57f6bb7
MD5 821b2ee3e4e5a4a43833c405c170f22d
BLAKE2b-256 e455a498ec43c35c849c5ebc7d6432ce8b2bced4fbe27e683b34394b4b87ebad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03ab0f27ea74dc81122413b63c90160e7b1b7d45b792c3bb76b1a3ef5f5db5cb
MD5 387a7fb56c4836f404ff397569a31473
BLAKE2b-256 58cc983627c0a09c9405c7b1dfdb3730f396dce8f0ab131b83bdc0651845f276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0c63e1b39bec6b1137ef89f8fc97e00aa19880665b0e6efaf863ad6456e39ab
MD5 0e5d61c5bb99081e3f1c0511fe16134e
BLAKE2b-256 aa9c88d8e72c91f59c119ddcdc5a4ba3bd19c6f84c5913433050fa63371394d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04e114bcdf05991dcb201fec9231352e75bd8c5a2aceeb95d4f856148caac31f
MD5 c0116515968d7d377f6787a355e143fc
BLAKE2b-256 a1fd77935b626ecccd7b349e98a40f749aadb170ec7a76c361f074e91e79a66d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1cd31013fa50443dca6336bbb333971571e9cf8c01fa2f65a483db7d754a8a2c
MD5 46c59fc85f4386043df0ad035598c26f
BLAKE2b-256 18fa368be63f92e14c3905fc1c1e338084c5933a25d6957813a9bb8797c1bc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b13afb17c2505d6bdec1d423211743989f0685261fd02a83d94996fe215a963b
MD5 3d9db960aaf73bc218b90845a3648c60
BLAKE2b-256 dd65ba3dc066ffb84464f0f4c3865936784a67a894ac68f487e9d0a4d6c996eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57d76fdf6382a3bea18ce48f662e6b2b7402c153bf777f15d0639b91e624455f
MD5 55e33178af5da0776567b28d5ea78501
BLAKE2b-256 f9a9a8a93fb03e1e056dfb99b3fe63284928b57b6025b7f938f0ca5d71330a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 910d8d27543ce73dd10561f3f326ea28b888b4d9ba6acd8177c9c929b23c9c46
MD5 56efb05f426315e14f4a5d702c8a6a75
BLAKE2b-256 4e7c1164a61c08c934f84d2568d28d4bf99e46ccc369777be8aee755fb4bf1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48207463ee3498c6effa57dc30851bdcacae3396163e694b125ff51ea5daa229
MD5 eaadab97f7bd30973c5a998afb07c7c4
BLAKE2b-256 1b4c3b3608bc05e8d6b32d97bfa896a0a7990b415faf2d8bfc90853db078bd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93e7eba1dff6f3cbdd9307ba82b46783d03024c36a7763cf5ed8eaf2b7440a17
MD5 de4078ea440060a671495b7a404398d4
BLAKE2b-256 c2f632b69735d2ac93f7cb3aa2e538169872aecc3c06dae3242f8f90ca364aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a32639557b661036c946c664be1b82b180197b54c1fd0cc6e4e13b3e51f2e90
MD5 be1e3f4add68b3a6262d87aea7782726
BLAKE2b-256 ac4e2ecf8b08ade4931df35ee5dbedfed77347efa7fc0f1da81e3f03b1b832fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a67f40ed370da5ba30f022778028363f8286ceb606260fcf8b73c34d2585f448
MD5 595212a49f554be546f5dd81377c197f
BLAKE2b-256 1c88d90b661f2ab95220c07fcec11c6ffced771e936c6ab2a1a73e077e934855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98fd169957fdf3e0744954a9c2a43aaa2a199d17517c18a21ab7d021f0b0110a
MD5 eb2b2f953e93995eaff64f8f831861b4
BLAKE2b-256 eb49e7366702b5402fec0122633cb55211de178cb8e3bb7d3c37b400dbdcac60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45c3b8b5a857ac0f5aba355b28aa80173a039502c3a121d7f2eb47edcb316e8a
MD5 2e65a18565ba6c63649ac7594838d001
BLAKE2b-256 4726f003a54166c05a53144396aedb980f0b3fcc4826cfac653b2f8f374c0ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e75862803c63d7d3c1fd33aa88800bcd7985eb612f7f5d1bc2456f64b7af119b
MD5 dbd5549d06dcac39ccdd3bccb7b2cd4f
BLAKE2b-256 865eddf01f08cf3671b7efdea44a3ced8ec99ca29b7d793dd8b79cd8089a2230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8b0ec5b3637bb60b7d255f780a4bb5fd6488f99e95fd410415123e7dd7f2297
MD5 517778bf8e2f978e2ecd950a750c7d6b
BLAKE2b-256 a838e192f7f37e9e345edaf8667c1fb165141f1c05501fc5b54c82ad494c9dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c7241086dcd3fbada6e31a98e42db3574089de47ef59a8ce6aa0b76777199bb
MD5 e98a2d3a83666259822da72b3ef227e8
BLAKE2b-256 f21d98e9e995804bba1f9618846f12a45b2cbf55b081900e7b58d128d3d492a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a526c746ffa077fbc08ec60562ef4f801de25b5fd408f2f2fa4a378847359ad
MD5 ed6aa7d54f49bcecda643fc8f038da4c
BLAKE2b-256 fd4dea257a6f164766d7d6bba74b564a7dbbfed545c3090559327061a67ba372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0c047ded80c9e1c5d71af0b70f1d03b7451c42b57c5ad42649f62448eb6d37c
MD5 6ab41477d7198fbab095fd20f54489d6
BLAKE2b-256 10b5fd4f9f4e767ef7e6e750d60273e38720ee75d9ef4cbc65ba7f56ecd5a11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae3489ed5a10e999e1ffe33682229a8ee4620687066979ce13ffc5a4afc396dd
MD5 088b0d3c3cd47e3e07fab05d34e3582d
BLAKE2b-256 f4fac5f20ebc054d77951b36cea920e32870bf2b7d37ff5376b534d04e71ba3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9be37cd8da2dee3a372f0baf9c9718c43c0ac4dc7a4fcf86a9a652025b597c18
MD5 ffdaee6261a1b8241d614449b3f47ed1
BLAKE2b-256 abe18be76f2bac88bf8e328c7d205337dc492084ae5d07bc94f2019453b0150b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d4c7e765eb217f5988fb8c803f99a75290d8cfd5d3fc7c7b704a49d9a7d073a
MD5 3160f89142af7e6d906761b5dd9c25f0
BLAKE2b-256 ce3eeb61b610bb3a7702db671db721a9448032776667cb506703c472114826cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 665899f105b9803bf22d734fac2c444024bf18dff64d1db7f70edee89a11db04
MD5 9011fa615247e6975fb34368a5fea3da
BLAKE2b-256 65d0e75705a233720e35a962a07ae7055a469fd1a9421f23b6218b8bc53e9000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63594036e8da97d8397acb6d557b27453d82acd86a260b0c4582b328b5ed44ce
MD5 a3c6212ad4ec5b3f349cddc63f7b174b
BLAKE2b-256 bf4798edd7e1aea14ac5a09471a90e2642832a5c781e811a408e393232fc0fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2494a5e9722debc2366d57bf87bb76aed59bd574712bbbdd418ff66195142b6d
MD5 fcdafb0f8a0f1346703082857e7c628b
BLAKE2b-256 8c2eb73099afb983aa21ce73a20d44a8f0ac9c81d03b8854e26ac1ff5185b18b

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