Skip to main content

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

Project description

Pure Rust Python Bindings for File Type Detection

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

Features

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

Installation

pip install pure-magic-rs

Usage

Initializing the Database

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

Detecting File Types from Buffers

# Detect the first match for a buffer (e.g., PNG data)
png_data = b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\x01\x00\x00\x00\x01\x08\x02\x00\x00\x00\x90wS\xde\x00'
result = db.first_magic_buffer(png_data)
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)
result_dict = result.to_dict()
print(result_dict)
# Output: {'source': None, 'message': 'PNG image data', 'mime_type': 'image/png', ...}

Handling Errors

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

License

This project is licensed under the GPL-3 License.

Project details


Download files

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

Source Distribution

pure_magic_rs-0.1.0.tar.gz (644.4 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pure_magic_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 0791965bc287a8dee94c9cfceaed8df37dd9f0aa522a8b4b8b7c0b7f76f1333a
MD5 0bc970fe9ad338af4a45ecfe6e03f747
BLAKE2b-256 8bea98fd2f2c1b1466c42c6be254ae9c8b74f9d06b75ff99c2168f2fc9793474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01064ada5dfddbfe25150e185a2868100052e2efeb59e62ee1e3690f78ff0290
MD5 714cea78fe7048c92017a25cdf828e7f
BLAKE2b-256 e7a6117c1eb49745b31901708bbe7fffbc25495b4abc803cb25fb4c9725ed2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6fb9f82cb26cdc0f87513f48a569289b0e658d57a0f72dc49f158eea3fe964e
MD5 71d9a205d2eabcb3137777956497b921
BLAKE2b-256 63a7f17174e831c210002a3ee065c22540b7e6d24b31edc8e2dcd8ae7a73dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c57b86819817b4734b231cbeb73a2234c5023aeaa663cbcb9a97ddd8f5ee4d54
MD5 9bbbc6c6a212d301bd3ab04e3cda2d84
BLAKE2b-256 cddfa422894ebf45c0132261c0cb2fdf715e5d4804d315bd49ac5f994c7b2765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2a0f082b396e0dc8222dfcb97fbc18fe0cbf29289a462cb6f41badcb8b23966
MD5 0963f8b02909bdf9e883064135b49914
BLAKE2b-256 99e49049cac97fa55c71f6ff7690242ce72b257f7f79dc29bda85ebe35447c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ffc82f0f2efc8c5efe90cb39ea2ce708534affecd764acd5db6f1323171b9fb
MD5 8d30a422d07e4c746655150c8f85c8f9
BLAKE2b-256 dff94d91d0f4075800c79153ccd7e4f2315d0a2e934d14851df80d60988d66d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 791fe0f68cc5e786e9caf978ca62acd2d520432b698a3875eef8ffad5c596523
MD5 78a643df318a8c8f56f198f2a2ba2626
BLAKE2b-256 4d640cb8e3cdee939f6ec5d9b56a4e5e2d9fd73d008b5e24f3f129df25de40f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 489a9fbd5574396d360c31ff5d2827ccc55f5b199e6e1c64009e927b9f530e95
MD5 b17496e645de51a04f01623b835e47c4
BLAKE2b-256 041e2dde57bffb5be65f7aa6d1a7acc1c3c2ec1b02a81476fd9945b049a3aedf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6edbb31cc3f76c1ca1d2fe437c80b8d897c44f89a8a00e0a8d90f7edd98986bd
MD5 efdbc9b88a09277fe5fb33ecb9ef8c50
BLAKE2b-256 b250d85ee3fcb3784797c6667186b358e797e2e88294a3e9076b6d3de77ed36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ebfa5c6206fb0c48a9b910ea2e29f5eb828cdc063318f4b654811c3b6c5198d
MD5 49fd4c6816a35660d23d07e627165a39
BLAKE2b-256 78c51fe66d19bc445de0d6868c950f5aa2c4ce3904e7ecd0063dda58e461a6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4978e767b8947f4a3cf3396b258c60fb8d7eccafc83defda6b631cf1d73c599e
MD5 bc1ab8cb755ae30376511c1064df64c7
BLAKE2b-256 2a03d80b4747ade34274a6ee4ffd328a721803eead215d8b8522ad5f4f6cc128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0495f02a007cc08569270bf41826c3928c44e9b367447284b163d52ea03919e
MD5 2efb97ccfabe08648ffefc969d37a18e
BLAKE2b-256 c129f47c7196e647dcd209ea25effb1cd95be2fb929749a054e13bb925bf13b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efd0e8b9afd374d986ceb69da4670f4075d0bf71faadac7fde8acb64f9e41585
MD5 d3991d42585de38100190d99054b8b79
BLAKE2b-256 8f6d19e7039cc73de2f28c3657ed58880c27f559089389b0f4127f1a6dce9290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ad33bff759ac07dc110823f93405df83f7e135d1e60739ea8cba1f98beaab5e
MD5 b065555ad92e4cede9feed356788c70f
BLAKE2b-256 770e6c0f46ddabd0e786f6a25d82a130ecadc645e4cb830df2acbc05d1fc5563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8c22fe92b86ebb7aeb22a13e0ecf239ebb1bc2b117731796ff3a498b688ef6c
MD5 307c9a45c91f72d73b92ba8054aee094
BLAKE2b-256 832f3f5524feba58505acca292c4b91abde381b152e7e680ae7f4c6684bc7a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad6b32672ee1653cb5102e753ae7434b9ac6d36f47ee3598e347825705446038
MD5 ef00210efca680bead371a65e5d3efd5
BLAKE2b-256 f321aba0b0ce436c25e0f11ec10fd503a47d49b44e35d84825fbd6bd8979f99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2361757825fc3d5407916588e9df1a879e2c3ff9ef90ca0bc595cea2632688dd
MD5 bcae97c0e977b9e982a7696ca5285a41
BLAKE2b-256 1fcef151cfc10e6a34f6c482748df44efe88867c8828454d8c7f6b99a6bf8716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad5e262fd6bcfeb7e1686b0e3ccd02518bf88a071de2b6ac3714e246adb1f296
MD5 5336c9289091681e2cffdf340d493b5b
BLAKE2b-256 0d238ec4c57930b50ee9a706eeb3e7064ca3e1b5a5141d91ad1cbaafcb6a9cec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 235b9a2a32cb2c84114e0fd45156db38eda163caca49fdb58feb9ac055a22e00
MD5 02164a4c2e8aaec9a59c43f965d2694b
BLAKE2b-256 3a7b35e793964b60253833fbf10ffaf0d16ad291af765f8cc536d55877137e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20f43ce4f114e21e64393bc1544e57c9c4011f8a954b1a1e6526f471e568eacf
MD5 32698cb077c0f2cc83834b42f9415fbd
BLAKE2b-256 b9556d6590e9225bf9e81c84ab6c73e021adee09f7a1c5150367a333807eaebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3cf3cc7ada91dd12fb75faa31ad46ab32ba933ca4b7e1fc622b3413bc7920d81
MD5 609149d7522a87638d3f8a04693f8399
BLAKE2b-256 6cb7815f81641bc05fdc44462f375ded7824c7831154a129fd4dc7ded61f975c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 413bf12ae95af2f7955a9edc8a3390c01d45acadcffe1991bcff008993937249
MD5 d82e5e718507998ba710b25a170233fe
BLAKE2b-256 62785874ef26607e9f53ee034792c2464f5269b0b892961b611b6c7aef79020c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a58ff30a6243e097faa41bc05bbcca38ca5c63d340a8594f64b8e9f4a1e39466
MD5 a48d33a9ee8981c9d140925b72a9576b
BLAKE2b-256 24f8c6469c57ddd6f1f3036c8f5de727dfb680a5b05d8f09cd98d91d74e936e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 575b0274301d07680dd9bcc91b408f470fd9d9b30d14b5e1340d63890d6f594f
MD5 288ec030230e59d97dac9d62431c1f13
BLAKE2b-256 8d4a3313fa85baf7a2fac5a4ef5920fa460705814826b6eb5f41fd91e8aa852b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c970059a70243c958d51f253414247f10468fc692d3ad227ac9f7b753de24a52
MD5 f6abdca9805663037c56bce85d68da98
BLAKE2b-256 f074f30ca5857d696d58dbfe5d7e2680f149a2f4cc0749d0d43ff81fb4593166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4db8ab8a7750e367bc20c96e5e59c11b4f5eaadc26206fcdb828483c5b6c463b
MD5 25e06b8c0b9e613bdaf5f5bffc146813
BLAKE2b-256 6fb479a8c6988e72416b4809902cadbb803819847e4c778a692332359a9d8203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e983ef96c0400fcd2cf16ce9be32129ca09819cb8122db8f3b39008fb0f16fd
MD5 981bf1e71d527317d5cf36b84f310774
BLAKE2b-256 1543ec74f7a7fc1d9be1fcc71f185ba155670f13393e167541e15e69d706ab6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 959cc1acda316394b7cb9bfd53d9e238a521ecd881c073a58153b6a58ab10128
MD5 e715b415a1960a4ac6a674ebd9d97213
BLAKE2b-256 457a7c7d3eb3bca20bbde95ce7e75c9cab6b3d80e68e56787ecb46acbcbeb6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d33c83cbddb13ff2ac5bf1878188dd192f5dd8a74d1a4bb02f40f797ade120c
MD5 494453246c42a1d9bed63f966fa1d8c2
BLAKE2b-256 5328ad7aa14f07d82b3297122fadf5f121196ad0fe13b8b9c582bee579737db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b6d2baf6fa0f90181c35686fdd87b148fad26152114e1637a4c9043f14f4911
MD5 b8e75f3cfa705df3852c9c7274960afc
BLAKE2b-256 74e4a590d43078c6bad1d151910da50b5866009e4a8500a68248a325b6efeb4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c1bced1b389ef9270385795f5399fca95cb95605bcb6648161282d8031cf962
MD5 4978cd8f2002eb5de86d996c3e57160e
BLAKE2b-256 13e2b20795377db046fd21cf57b110208639e889a392f0e2c2dad241cd245c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51428058be89df6ae8d81fc4115cb1ec84d295e6a717333acc0e3ae32398cb18
MD5 0265e47031a7f5859f05e7b9a1084c83
BLAKE2b-256 9d94b7cbd58523a0cb27ee56646c1b6d5fa617c61e77e8d86772472a1ff0c120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5da98be3a2227f591dacaed813460b9f6f02e29eef45f5c1fb476f3ec5e86043
MD5 1b83fb364b701574cfb386ea9a8416f3
BLAKE2b-256 10d29ac461c1aef3d151cbb10da9c52bf6ba9a4cb708c780a470e28363e2f0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4c86553655a2f0c62504f4e51c095ae9f29ec0925c3a616a7f389ea5df8867c
MD5 2256e08fdf80901541ab4ba09379a47f
BLAKE2b-256 f14e24565d1c341f98c2e75dbf177243d4a6a30df83e9ab42de7ab33a5d8bd89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61dbafcde0b5e78a5c5e005936b66666716c7b08ac4b5c3d99c66f9b07d62f35
MD5 9133b85cdeb20761826dc610c3559b19
BLAKE2b-256 c0c582aa42bf1b7cf645493420cdfa293edc7062e475c36266a51da7a2244d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2693b1a936177bd50dec074d81e6b6e3f7b82f7a2befdeb2758afa8160bc5d1
MD5 e3d2a271ba68336f2d075a2ca9efce47
BLAKE2b-256 5552ca05e70394fc46543378ff006f39cbcb3339d1f3a354b7cc6e928f60e6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dce3b5ce8c48657256204e389b79de48f010d55af06128a3303edea8105d5e99
MD5 f8a1603891f1f4c33cd4b58cd7cce9ef
BLAKE2b-256 8f5302cea1303930d55fca12ee1a03e7f8dd2f8df8a316dbb4bb63b348ba412e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0cb0a8d82581a6aadfff1ed52bb8c0ce8172a2f077810b020067dbf52ab81bf
MD5 2ae69d531738178bf123af4b2bdc8ee4
BLAKE2b-256 c995d39f6dc3d885e6d96face9c8c88338e09b2d3472d853ade4bff84b0c9f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5bc6576c7535dd3d61155273a73dc40da7209cb3e6575b130eb219b4190b102
MD5 8ff0e9398861abe8557e28d0de76c394
BLAKE2b-256 a53748da8eab1b56c59507c9cf20d7b6a7e3ea25f85b718e27bbdaa872e41a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3649d306ca62803608fc9500db0e189cd1da46d4e401fb107b48688527e3580
MD5 64818500641e974e0fa32c5186f73ac6
BLAKE2b-256 c239938c0aed729a24da28a8d1fd548b2d4b3ceb73e3f7af038ea238584580dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03ef7e0b37654726d74c66a67ff25c08b0089619653d220178c783befcb3407e
MD5 9794af9798c436473b518e13c298e9e7
BLAKE2b-256 234c485349b56f23cc650455b205547ea24e74fe37f2fbb6851d6dcbf8699d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 076352f855646e1935286388db9948750db1dc54d0487aa7195d8242d63da9bc
MD5 b85bcb6028e5d4454d265ddc97e39c19
BLAKE2b-256 21bbfd9e13b05c827d9f191d984bedb5ea639d517c5134aa72510283a40f8788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d60b47a4d216a74eec278c83389e31c657866b12ce4acd15973369f6223c97b
MD5 2283b2ed70e513c8e3d0d7c816b7ff0f
BLAKE2b-256 f9f54df6497f994d2c0b7e1f2a2629eb0fcb575292db61596bdbbbe350343de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b7da77efdc27675e3340c52e7e4ed2e6b816fb88a5e16281afe66ca00d4d541
MD5 601f28ac0b8477f908653fcb77e3dae0
BLAKE2b-256 de26d6a66264b8748fea7b54371b69cbf8c5ccab6206e8d33ab3d00894fe7522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5208a61124b3e27528fe7bf9934d31940bdf8ff8e045b29867e6c9ef46fde896
MD5 670624ee74c2d901d37b4e43ed289d50
BLAKE2b-256 450f7c82e7798fc78700d3f30edff2f8f6b616f187d4351424a71a3de889ae93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11a49f9ce77811e38c9722b81f1c02bdc7f46f9d2e545b444f48116229ac0a37
MD5 164f5fae98c74cd303e1b97c561cb504
BLAKE2b-256 bc1cb4e3d2e28be191a09b3088aa02e9b04aafa9ef7438278f3716fe5a9fb283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82d16ee080fe373b463165ff10d0527512d237250c437291e4631240fb523465
MD5 9eb091882176814d185a5d8c9bfd874f
BLAKE2b-256 6bfc60aaceb1a1c2c3e59085860a2fde4a298738d522ab4eedd090c34a35fe21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea700b6a5072a8003baa53f625ae921847ab5025bdf8beab8ea38f395ff67eae
MD5 351a4f64d341cae446e446289eef43e8
BLAKE2b-256 fdf79b14ad4c7297eae800c3bc97bedcea2894e4f11811177571d68fac762142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fde179f1c3ecdbc65025105bf49483b0a60fe48ffa6fee590c516f6dc6143e2
MD5 a96b39bfdbe40c134217eb6ab808803d
BLAKE2b-256 f2d9d4e6faf3e8ea2cf8b29e1da79d8d73c869b17bb2b030eaa2e774f502b7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ce831f06b6bf2b87ea6f39a77ecec8d72301ec48cdae8559ca749b6eda60e44
MD5 dc0f04f350da062bceed600a4e875c87
BLAKE2b-256 02b02694fe336f1291ec2fbbcc35882b05e01e57682fe06d86d7c87096629c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb8a3f010ef212acfe8e1cdcff6b516c47247efedbc9978a91618c3a3f2a3bbb
MD5 0169cfc35835fb1e23374c492e1bb841
BLAKE2b-256 5a97642aa12e0efec5109cff59a19c72b2e02803ddbb8959b5a794148b34a19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ab003e1a42167fc57fbdeeffdf0898169657b1ee7f10f79147bf66b20936c9
MD5 8eff69fa8482815dafc922af258880ee
BLAKE2b-256 8a95176bcbe091e4984fa848d1b2e37f9bbff1e2daccb53dacdb7ddcd70021e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78cef2dbec8ba8dd933d5fcf47276bddfa53da3b4b7ecae215da05d90d3b1206
MD5 ff8d2104afc4a0a392bae262ca3b6d5f
BLAKE2b-256 c441a3ebbf2456a4b5af6ac6ae28b814d57854bdaad791226643c78f8a3ce1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14c01d41b3510f79808533b76c43b536e83709b9197725f941345c68fffee6cf
MD5 a28cd28ea84d7c6ff3e0669599628d73
BLAKE2b-256 02893b0fd91e6a7767a27a0e4b2a1e454fff15eb18dbd16b7dc75a07526b89ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ad643ff0c4e080b43a6471236c926cd5ceaef6013bfa85c1c581ad52e51a771
MD5 b508a3f43608b940d56cb4e8a0c32abd
BLAKE2b-256 c5010ef08965f8d95022bc461f4e9d7ff4c2d40991516e04851d8b7c90ad450e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96dedb55b8396a50105eeab6bc13d5aab5151a79a339027b9c02377d3ccfafef
MD5 7982484d9d77b47f40ecb6445947a47a
BLAKE2b-256 66a167b20f3a71981e441056657e96cc3386082de8a76ece502e7349dfc3085e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd2384111ce0427dfc32ff66983ba47d786e0ca04c67984b47779fbf337c6fa1
MD5 bcee8992f9f4df2ac1c2d4e24383e25d
BLAKE2b-256 8182afef768caccf6fc6401c95b01809f1a66711c7cf764e3d7f7cb03a5e5cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 319aa8d4d73830fb4a80019d048006e21edd340db69f6db996ff66c668c7bf8c
MD5 558104ac4e64fbf51ed3a49dbd105fae
BLAKE2b-256 719e6896f34d8880d4dbcdb48e569eb0a9c0d3e5794985984a172b377fef8585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f0b4c5d7ea01684f62dc750fd1bdac3e188c6ca1a63c68cb57d377e8e8c4cb2
MD5 636328d28353f7feea7843337ac9a573
BLAKE2b-256 3f95d1da678d2c4212fde72b0e2aec55c193c0d929efec18e832dcd2cb71b2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa43d182207268194bb1f22ab2e38bdee8f2413785ce94324207b0531662817c
MD5 7bfcaa4fe522afa387086199be064ea3
BLAKE2b-256 7b6945135d814374ee2bf0fb7721da0f2c1fe32e63a1d43f35ae39825303f393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5180763f179a562d157d03f0294477e24d11b9f95a20ae34058f49a740b7bede
MD5 6cda64992b05dba0e8e6b9d7d3548df7
BLAKE2b-256 8acea7d1fc5663e9b53147da8bf4feee705e566d8b77af3c7e376e0c1979acd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54560b5660c7025a87baea55d1d47c1af766bff1daae37bda313f185b6ec829b
MD5 d57e76869e973a227fa68317cf05fa52
BLAKE2b-256 aa34d7aff576a55ac519ec9014a6fd7a2c3666c3e46f54025ae308880253346d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0a0efc65c2d4b322c541b1a827d58a19e0b328158bdf8adbd668b2d92041abe
MD5 ec9528c4403bb1e71ce52f2cd45e79e3
BLAKE2b-256 b9867cb1770b79604f34d6825babd524cd9303634c389036d8f0db9d7a0eb15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f25844511cb7a45902fbadce6251a9c1b12b5a85e185cd220f7579be1ec18926
MD5 f1bc37bcd9d97acdee31156769b0d242
BLAKE2b-256 e91771b6398a2f87ef3706295f5d1d90cea6677dffeda18584fc2facbacb178d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9db9e6474c6e1596bf4e95f79ca8504e91a9690dec6ad4efb5db5aed893547b7
MD5 0075a25abfbf559779b19155d83fe5fc
BLAKE2b-256 5beb632a252b8b66690e1c627c901599ef20d5f5408ef8a610e271ebda2f5807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7198aeee430271888ce17ff56767e997007b5e99fdf1968c0cb6d7ca9c72cbe4
MD5 45dc6b286b7d2840aefa9faad0f83f6a
BLAKE2b-256 49a4c9c1e8150d788cf8c1cea406566afc68f58041ef0b403b93c4f7c4adb0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a809a2ed21c5b425d36d9e2ddc0b1a0c3a752ff4e9735fc12dcf428f3327f691
MD5 927f8190ef728345f6e101cad1f0d054
BLAKE2b-256 52e19d8f3ea448942eaa86ad252a608038928fc1e94d0437f72c62a38bedeb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa8bbf0382a16244dfab15dbe8bbb0d78257fe4f8bb5d70cbbaabd6c695de884
MD5 687c56304e57231200e9aa7f23b89bb6
BLAKE2b-256 5a408b25dfc7120239e56f95555443d135389a751e14ecf8a20b0668936a1105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7af7b464809d8f965d038c7188ece20e3950fce6232c270d4c318ee9e3215ab2
MD5 4749becf970037ba3ccb61fdc172f198
BLAKE2b-256 2a6177bbce94f4982bc1ef0f2ef96e3d6bebe3c7d122ae3580e00491821b7272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e37f3c10223e244752bce9fed56f81d5a0e165bbb12147114578985cc30dfe59
MD5 f96e8d6806420e535927fda11aa399bb
BLAKE2b-256 7ba048397022ee764dc4d853265c92eb333b1dadbd16a0d92b4dc9b393c067f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cea5cd9ce00b0661f85da5eb9cba1d39635f4fbd3657d9fb005c62123716cfc7
MD5 67708ce4f2b342168f07830060da02cb
BLAKE2b-256 a7862a6f86b401b55b78a76cc0d0085efacac5e02504423462e545cfec2153d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f79f821056b6cdea2e36dc079a1bb78a389934e67273fa86a8b356b8c0e6a11f
MD5 1fd29176857d53075fb122bb45c7b7f6
BLAKE2b-256 df02a1a96ab74b5d68a73d3ce29646eb5e2edfa56af345b50c6e37ff99ef8dd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75bb86d3d0d07dd6156b1c8860d10c746a14ce772dca7828c369586e4c1d8e1b
MD5 698a8b73e41d8199012e996b2f81f485
BLAKE2b-256 890fba1717495e4326b320fc0eaa3f2353ef2759163321252fa19925e1ba5543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a44cb15261ead6676d076f50f7f284bb74aff2cd244062040c06d9ee2777f541
MD5 c6b0d9c3f9aa0019cb23accaf7e3109c
BLAKE2b-256 efc1e6a19a3fff9bcdf96fb505240d95693b9832e3ee35c5a34ddd3edf5c3d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f89bfdd65a7bd8a28763210e46c1ad6872543efada2146c5b42c67e21d57d3e
MD5 ff617258c3c05fc8107ab91627ffdef1
BLAKE2b-256 72b2f7baa18752c2df8176c900308efc46db3f77aefc421ecd594f9dcbefbee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd06e47e3dbffdfc6816a14884b47c82660e0ae04c1a9c33020ce81ca637a710
MD5 91646cda108a3c89432fb900736ee8b2
BLAKE2b-256 55f7ccf5c02bebf321aee6c609fe4cb2d6ff9436ce7ae64e8a01023354224c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e3de524f4a7a1d2d1a8e81676fd3ee96fbdc8ae6e4206143d9c7b65e677b1c1
MD5 9756bdf89f8c2fa5bb60b0a7a875c1fc
BLAKE2b-256 b830d379a005f2a518009e4f473f7ba0de6c9c72d5cad600c87bb31d5dfbeca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b251b917af6aa91dcb7fb7a4927e723fba2566486e25d99e87327253c0f6d9
MD5 2a179100d60769af8e93a0b158fe75af
BLAKE2b-256 5939aa2dd82f327893518d24fcfcbf1507331ec06434d54230a93de09a520762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d14276c78e161dcb915c77b2c7bc594d8ddbd05eea0be07ea9e6aef3658324b4
MD5 c61a606684927c2810ca994b30411e80
BLAKE2b-256 cc8d2fc370c12db16625e563bfc1cfae183fcbc5dd74235bfa5a0307fd8c8bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b58e01ed6d877f416beec45efa89e0f9824479b0ebf938d2c22bc19d89513155
MD5 665bae2b8346a1dbf37956d4108ccfc0
BLAKE2b-256 d1a211e33f7b81c1520928f9f13a8d7303960fc7f3c6dd040d490e0a13eaabac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95c75b1edb7fa14ef89b790183dbd7e39128c5c07f76f36f9bc926f085e4cbc5
MD5 f1a7d9c2a968e78b5b777574417a4721
BLAKE2b-256 8a837a4a4af6253541050febf2f8a42fdf2a4d3bc3fa76d5225e01d80335c96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68d13f54c7d074bccc7c1290e9a8bf926adf07437434417a06dc5d53665d2426
MD5 e87902096a80f221844a1dc990a07211
BLAKE2b-256 22806a14be8bd76633f791f8d18127dd4b8cee739f22ba8edee1dedcd7cae494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efe580ceb423e9621f5c9f36155666648c5b52c4cb6e22a2edcb53dba69f2efd
MD5 52c10db5fb68e0882e1e869e03c2ac52
BLAKE2b-256 1284b4a13aab5d58f96a733c2a400750c4e8a653040fe7f27d7decc51bba903c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60b20f32f3007db6ae179644867dd9f848513f2abd459c66d386646e9634e8f4
MD5 0f22e6bcdb83800731638bfd601e97a9
BLAKE2b-256 0417ff15f01a1a725a73a73f72ab219fa3d54329ccb9a312539a8a8b3fcecf7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 374377c2473c0fa36306476c25e011c822ed9b2077e575fe6bd11d7dcd26a637
MD5 9fa7ffb7efd7bf022393bc5d9fad7a10
BLAKE2b-256 02d3b560aaa8cc06ad03da4ebea3f4922c18f957e7ddd719301fe6dfaaa445b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21ea7257ffaac4e734bba0c52e35f6bb970a4c439b41db9fe30a03fba77e58fb
MD5 fd7987559f22c05437fe651399fb8dc2
BLAKE2b-256 9b858c94bf52a23b7f90a8d1593516cb70d019fcc82f461540682251d8c3ff37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e56a800e75fed9c530fcfdc963ff2ad607b421aa3febcf983871cb505971f3dc
MD5 1e93b264f59910573d94465b72d1162c
BLAKE2b-256 94f80cb67c9e2d4c16541659dc6a8d02064a8917bd88f31064dbc16e17510248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aaaa77e6efce65d7bd8678ff6bbe283694a83ca20c95ce85422480d38110a6e8
MD5 be46cf43cd1603192ea2be00f16f2586
BLAKE2b-256 55fa55e6006fcda4b0f4c76bd8adf9aba5cf70fca7120725b8a719aa3331176c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0bd881865d9dff01b66566ceb9caab74d351dfccb6773e20563dd414d90791d
MD5 cfbaa31e9e72965c19c1167adf397178
BLAKE2b-256 c57bdb1f077b6510617323f771f60a18648a995b1220b2c855c45aacfa5e646c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e1fb7b0c53b55ab4c9e8939d2ebf236181743a29d2397b99fd593a9a8c08f3d
MD5 356ed9a1fdf28f8891e97af40cd79035
BLAKE2b-256 ba2ac4da1d6eac3b9ba5a3adf0e257e4f9b46676510fa2f1bb3b928faf6df08b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cf9710d60891bd1b3992b5b1d5088b838972cc6fabb32cab42a832a1964b29e0
MD5 24c920dd1b1157e2b4ce408c504a0be4
BLAKE2b-256 83386435f53e1fa2937b4a3c1b672cbeaba2bcc2a216eaa0cb5355977d485d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 663e57ba00e0a34d6e6b7f0fdfbd6d6efac792c4feae2453eadd7548ffab22a4
MD5 0aa3b56c3f76462ffcdd1c53c5f11457
BLAKE2b-256 5a015118eb29ba398f0099d4c9da4b65db6177c8a37ae2e03f58533dc9e236ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f644446878a55c131863bded90e68ba3d186b1e420f84ddc47cc28f13d648d6f
MD5 05b388dc134d15e8865acc8786e36672
BLAKE2b-256 41e64c335c4a29a792d681f2443c994f210fa712f6c1c13d4b69222590b180a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afc1376710737da3eac4dfa9a46c52a176e8857780c53fadfc4fc8bc4a368829
MD5 5071c689b755b8c302df0f9caa921f8b
BLAKE2b-256 8c22ae9721f8b941f928cb8dba20ef752cdfe0ea4054a7a90ccaffcc0cbc7b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e8f6253ebc38182b2443d5d400812559ceea97b656f49d58ff4250f285a7693
MD5 350c9af5432da0bc26d432037132cdec
BLAKE2b-256 8a1b63661ad7f5e5952b399e5405d09e7a521277d185568a358688af78a0c3d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29f8f41615aed95c492956c1582e060b8cc13b2fb762ff66cef67fe3215cf7c6
MD5 a61b4015b606c7331c71c1e2e0c91e58
BLAKE2b-256 a7433e56e0f4cd34c9cbc91a5717e42735165d47e08dcbedece99797c8cf9e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ead1042c31fbfff64eb3d4967b0d2775d3081856ea18509016daf7c991286369
MD5 b419172c288468b47dadc3d3149e826c
BLAKE2b-256 fa4f3c5286fec79414f68bd9ed834b9d43820237cd9c4c47ed30f09740775f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db82430c61383220e48ce1e9c2a683ed5cf1c5cdb39abe60ace72fce50aa2cb0
MD5 727149fbc55924164c11660ae40f48ff
BLAKE2b-256 89cc680d2f7d43fd5c9417ea177d3a124215af9ba9864711915ad733208ddd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 701cd61cb8b342e95ac3e4079b0479e6148f821673ee49a0539327f84e7d0ca0
MD5 e0537dfed8eb9bddc077eb8a76e1b2c7
BLAKE2b-256 57103e1f73f2d3323ca28d5a69c47ead8578ce354365f3465008513a107e9559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9734adc888fbfe1fd108cccca7d46d4e8244ecb482dde8ba0524fe3c71f245e
MD5 701a0a67fec347c55b912044b8f8b216
BLAKE2b-256 90afff02c8d5905d947322c823464db8d9d6d553cf18298b9394ef5bf904281d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33ea4e670f2b461bde1c0d41d402a35a283d9f03845b1901c42c83aa17769556
MD5 d757f339d835817b422535f62f96cb05
BLAKE2b-256 18674e4d590fce35c435673e2ae756e15be5b38ff61c5ac3b442dd7ee8947739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 643c19514a4407815bd74e4b44a090b0f4647ee61cf14af586ceb8c168a602e0
MD5 6ec179a5c0c19612944e7ea06700823c
BLAKE2b-256 759085393464542f561d5040874b4aad5161231ed6291f1e98de9ccfbd600ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f32166179b180b96ee0db0b0bee60741a51258e72853973c1b46029c0025047
MD5 ce174bb3b2823e18a7103e8d5f0e9792
BLAKE2b-256 b359c3af1a41a198d5bfa921c9315e7d62658f59d55d888d3600f6d9b69605c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a57c7100c69574635f27f19f79381a33f97624825c76b2dd474f4e76d90ddd05
MD5 65a33be03da6000c868f14111025a7ff
BLAKE2b-256 68a9dc324901cc4fecf7a984b6acac712d9afb52a75b6bdd5c8b7ba326ecb5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a049f942eb7549781e0a3dd6967cae73649eda741c95a8a38aa9f239cb8d2bdf
MD5 c6658551bd71a134f81a13889a69990c
BLAKE2b-256 73017afd5f034efcdaea8e4e5451019b3e746a2d8f39b1589064e479f150c9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 315a07ba99da9e45148c8a79d19c63fe5af229d6c33e5144a5a5443d664e96d7
MD5 4b265c559cca4fa9046c0a4d93a32ff0
BLAKE2b-256 216701bb1df26b2a7bdbd7594c7cf60174f93e3887db19992a81d92ea8843c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ac009fd4e25cbefb74b945e04d23f0b61d12258c103130b40392dea05fa302c
MD5 fc2959b9d5df311bfb8749702a6b4035
BLAKE2b-256 d4ca4a23c5328636cad46f3e705f44f3c92e8710d1498f3ba1361544a2f5336b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d20ed64853010cf2d7fff023745c4cce5eae628965e09792a41f4530a33bf28c
MD5 88a8fb4ade744b73cf7f52685a60572c
BLAKE2b-256 6adafddf5b1e37167da1e022e88aa31a2e5a41c926b42e4148c54fabb6664733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a35df9ddd9cb3d48e0c6083b0b815752b99db9fcd6dd91eec4802a183d1164e
MD5 baeeeb0d4864844f684e823e7ef18f20
BLAKE2b-256 e3ca15dbb133d6c9f0b268d798071713be833e6348ad6b6adf21fb5f3b12319f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f81f19871e442a696c12f07fdd0d4a72fdd3607ba5dd15ee16066826bf96c5b
MD5 27fae1f6b95ad76e8e2bfceda8838d1c
BLAKE2b-256 d4551dc37646c3bd89f27f640e05001e4192c8702a7d21f9b6fdf0e839f91b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pure_magic_rs-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b95e98e2c3c4789b4c46fcb71e38cbad5676b2d807f3e221a210d3a152adaac
MD5 3356389de6b677da8ddff40cdc15a8a6
BLAKE2b-256 f50bceef60baee80961d96fd0be97bcdd0af816c037e0918a0e954cc0c018e4b

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