Skip to main content

No project description provided

Project description

file_re

file_re is a Python library written in Rust aimed at providing robust and efficient regular expression operations on large files, including compressed files such as .gz and .xz. The goal of this library is to handle huge files in the order of gigabytes (GB) seamlessly.

Features

  • Fast and efficient: Utilizes Rust for performance improvements.
  • Supports Large Files: Capable of parsing files in gigabytes.
  • Compressed Files: Supports reading and searching within .gz and .xz compressed files.
  • Flexible: Similar interface to Python's built-in re module.

Usage

from file_re import file_re
from pathlib import Path

# Define the path to the file
file_path = Path('path/to/your/big_file.txt')

# Search for a specific pattern
match = file_re.search(r"(\d{3})-(\d{3})-(\d{4})", file_path)

# Mimic the behavior of Python's re.search
print("Full match:", match.group(0))
print("Group 1:", match.group(1))
print("Group 2:", match.group(2))
print("Group 3:", match.group(3))

match = file_re.search(r"(?P<username>[\w\.-]+)@(?P<domain>[\w]+)\.\w+", file_path)

# Mimic the behavior of Python's re.search with named groups
print("Full match:", match.group(0))
print("Username:", match.group("username"))
print("Domain:", match.group("domain"))

# Find all matches
matches = file_re.findall(r"(\d{3})-(\d{3})-(\d{4})", file_path)
print(matches)

# You can read direclty from compressed files
file_path = Path('path/to/your/big_file.txt.gz')
matches = file_re.findall(r"(\d{3})-(\d{3})-(\d{4})", file_path)

# For regex that requires multiple lines you have to enable the multiline mode
matches = file_re.search(r"<body>[\s\S]+</body>", file_path, multiline=True)
print(matches.group(0))

Limitations

  1. Default Line-by-Line Processing:

    • Memory Efficiency: By default, file_re reads files line by line and applies the regular expression to each line individually. This approach is memory efficient as it avoids loading the entire file into RAM.
    • Pattern Constraints: This mode may not work effectively for regex patterns that span across multiple lines.
  2. Multiline Mode:

    • Full File Loading: When the multiline mode is enabled, the entire file is loaded into RAM to perform the regex operation. This is necessary for regex patterns that require matching across multiple lines.
    • Increased RAM Usage: Loading large files (in gigabytes) into RAM can lead to significant memory consumption. This may not be suitable for systems with limited memory.
    • Performance Trade-offs: While enabling multiline mode can result in faster findall operations for certain patterns, it comes at the cost of higher memory usage.
  3. Limited Flag Support:

    • Flag Limitations: Currently, flags such as re.IGNORECASE or re.MULTILINE are not supported.
    • Future Enhancements: Support for these flags is planned for future releases, which will enhance the flexibility and usability of the library.

Users are encouraged to assess their specific needs and system capabilities when using file_re, especially when working with extremely large files or complex multiline regex patterns.

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

file_re-1.0.5.tar.gz (8.1 kB view details)

Uploaded Source

Built Distributions

file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp312-none-win_amd64.whl (797.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

file_re-1.0.5-cp312-none-win32.whl (720.5 kB view details)

Uploaded CPython 3.12 Windows x86

file_re-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

file_re-1.0.5-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

file_re-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

file_re-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

file_re-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

file_re-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (956.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

file_re-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (840.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

file_re-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl (884.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

file_re-1.0.5-cp311-none-win_amd64.whl (798.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

file_re-1.0.5-cp311-none-win32.whl (721.0 kB view details)

Uploaded CPython 3.11 Windows x86

file_re-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

file_re-1.0.5-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

file_re-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

file_re-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

file_re-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

file_re-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

file_re-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (840.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

file_re-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl (885.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

file_re-1.0.5-cp310-none-win_amd64.whl (798.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

file_re-1.0.5-cp310-none-win32.whl (720.9 kB view details)

Uploaded CPython 3.10 Windows x86

file_re-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

file_re-1.0.5-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

file_re-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

file_re-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

file_re-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

file_re-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

file_re-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (841.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

file_re-1.0.5-cp39-none-win_amd64.whl (798.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

file_re-1.0.5-cp39-none-win32.whl (721.2 kB view details)

Uploaded CPython 3.9 Windows x86

file_re-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

file_re-1.0.5-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

file_re-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

file_re-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

file_re-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

file_re-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

file_re-1.0.5-cp39-cp39-macosx_11_0_arm64.whl (841.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

file_re-1.0.5-cp38-none-win_amd64.whl (798.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

file_re-1.0.5-cp38-none-win32.whl (721.0 kB view details)

Uploaded CPython 3.8 Windows x86

file_re-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

file_re-1.0.5-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

file_re-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

file_re-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

file_re-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

file_re-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

file_re-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

file_re-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (958.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

file_re-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

file_re-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file file_re-1.0.5.tar.gz.

File metadata

  • Download URL: file_re-1.0.5.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5.tar.gz
Algorithm Hash digest
SHA256 78c1ea505945502d4130fd5bcbbed8454bcbbd0a15d94e89c5987807142ce402
MD5 9e2e841d4e837f9a5a1d992410c8e467
BLAKE2b-256 9869b24a2b00ee1cefdfc54342e1ba217a387829c519bc301a15124fb72cfe2b

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c039dfa01791b694b6ace9cade17665b7a962270c38aeea3eb36898216d90fe
MD5 9ce7191e43a544b0f184559b3c407300
BLAKE2b-256 8966ad2b20474757ad2259ced0131cae939d77cd029b27642c3c31f3d965fb71

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9be223907fbf9eee12bdf41f4aa7c57a8d9f1fb151a3e67bd8880b54742d0c6a
MD5 d8a4c2427e9e53f9a58c1a73c4067ae6
BLAKE2b-256 56e97afa704e004fe8b6329f363f71e4712cb62c7ac51bcf4f956fdf51eda464

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8d21a392377d2e17a655b747710476db63003c7c72e553b171d9c78b370de83
MD5 b50ab31b370cea7e1108dfaac540195e
BLAKE2b-256 f32ad9ab4de69ac26ca93d10730ffae8bd8c4c067286d2feb03169d3e6e8f844

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd2d668e83c84eb68ac2489a54f9f17c9f02bd9a79c8746d54572a5a7947e67a
MD5 6da87d2d1133a9935819a0ee0bd296a4
BLAKE2b-256 355cdcafd77e4dda8aa6432cec5105e7218692e5bd9b5f5d83fe07426fe7dc21

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5ac3d20f1f065d4a713001148c37e5b6c2841d7146a857a38ec323a88098537
MD5 22d17a92ace021dc754f244a8884c0d2
BLAKE2b-256 81700dd631bb9c1ecd16a22950580e5a83c53f83a22d086e52116e5c38a54064

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d14705398c4a8d1b4f010e29ad93f6bdd0c95d31787e852f4b31f24e35b52144
MD5 bcf20bfd9dd6ee4e05edda04b9282393
BLAKE2b-256 06032550974e50fa89422eeb42e281a04cb485bc1b2dae76c026ed815021d9a6

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09231974361c25d39c6d5052c6e51fd46d67434de1d1ec713cafa8821edeade9
MD5 305767178e53755ef65fa409da4d258f
BLAKE2b-256 8af525d02801cdfb517c69b1c6f2cbdc351e4a00459057a6aa229825b1bb1811

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9dce735b2ca4c939539862af994e24f018a4dec4f0bb3be455c828b35c6e22e
MD5 5385d27dda0ddb0a4f56408dfdbf22fd
BLAKE2b-256 d5c62c3c3ff89933840cbd370310a8ead3d12bca6e887a82d545bef81bb06993

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b955bc75124740791a8f4184f47e911f527525a670a8668a790fe6dad293630
MD5 5d3171f3a6e83fdcddb3d7b178c9f2ca
BLAKE2b-256 4c7c1fccdd6ed645375b51fd1dd15ed86b8e59f6b063886c0a3506a4e0ea13a4

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8039187ed945f7f3d166122c404a82e0e5f55cc7f85109517603953eaeba715
MD5 639fff1fbe45510bf9d5e755438d1728
BLAKE2b-256 8c1884adb9c09b9eb4bfebd80ac8204c16c1a655f15d64511e0567b4ca4abb72

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f2f03a23fbb31dc0cb5d9102b9d8d59c470af7976d158c26768dc1bdae837cb
MD5 f1e437f92fd3847810d5359b7159ad31
BLAKE2b-256 cc164e29b5fa7915fe5bb13ca03e24dc2323f9f141f2546a76e1197b025c8bf0

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21fbeb290e90dae5faa0b4f7223294d6db0b072de84a846fd56555bc2067a4d3
MD5 e7d83e44e3c465e98c6288f0c7e0077e
BLAKE2b-256 dbfe54b0204348a51d79e85448e3fc9cdd406ff9be4bc94dada718860c2e2d1a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b36a5bd17df804c2267e5eaffbda77084741bc12861ebba4672572feaf2ad0f2
MD5 5c6eaa36a73788fa4613dae261cc6990
BLAKE2b-256 3aac2f7e25b7c1f920f752f04370fff2e558a66031ef3cdaa403ac1059b1fd2b

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37639dc594de0c93979bc6e38f996cde8e0980d90993d40070506367f6d2c5f9
MD5 d96393e339975689d300947caf7b1853
BLAKE2b-256 a4fae675ca64d6551c98d3fe78be3fbdebce92fca3699bd2a4ef4914b57cf91f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24f5a7278b5d08416ff48e1173b3ab44f5649faebca99a57e4a2441d62a9564a
MD5 8fd741fd711dce60d65c5050b5a04154
BLAKE2b-256 69ebb83dc4d106ddbc96c2b1409f4df0cd5f9b047c1d7e64c70cd20f5b0a1cd4

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b83f62d40c53b246bbc0902863bf70d18a1039b109e7c9925d01bf82f1e1792
MD5 2161f096c9d39ddff9596f255a76bc56
BLAKE2b-256 0fdd5f3de0658531d1f4d8d2a03b1bb2482433b330b25c0290a702a63378cf1a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62a56ce39fa9e28d335d9f83873b1e87bd068633c87a82805d0fb5876beec660
MD5 5940ea353a5080aa73c193a187b7d20a
BLAKE2b-256 b5a5631164da48423f3539d59de09ce0a654c9ec9677de53a02a8a89d6c74462

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d99854ceb23b991e1e3f5fa809cc67e1a979736a027e252421e41b50941d1903
MD5 a71a418cf38bb8b4cf32a98f623d6371
BLAKE2b-256 fa5a17a98c045f44fcf5f88eaff197cddc2a343cd1b72c5410fdf31698d76048

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f9ab4d9ab8049cd0d29e52d9ff8c42e7f8628107a76f1fec3bfaf0e62086ac3
MD5 60acb3340bbb3c933ddefd3d1dd28ac1
BLAKE2b-256 f966595a0dcacd80e91619bd0e28d17fd3772df85d314fe19876d664407f881d

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c712ec301e688d5d39d9bbdec703762664601c5dc14575cd7c67ecc3ad49ba24
MD5 999280c4e32aef5fd36d68098496162d
BLAKE2b-256 f2d394eed042be92f9fc51f4bdc887b18b43dd801632749dfb58b7e8cc44456f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e40984ccdfdfa4f96a0381c1d533c65bf3962832d9b5805a015a0fad3edf5570
MD5 6fdee4fd01b8915cc36b0b70ff4c3d11
BLAKE2b-256 29697451e70b413b8c4ed917f0936c6dd789f4e8d7e89993cd845269a52062ac

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e08ccb8fe181981238b4df12f89010c1ce0ef36cd1bf772249d4ed741f8f368
MD5 b923e94f34e4b1a467d9c52c249b6903
BLAKE2b-256 5ea937ed8ea6af042e60061e2bb237aabb4f971f4df3efd575e237ab9ca7f594

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c265891c13d78ba2d7e318a8ba92936376531d74760594dc196b34bebf7b1a96
MD5 4c4dacbbbfe68e99df7b95d5e5fb3031
BLAKE2b-256 e57db5a311ab2202bafeb1502619312a10c1fec2f31d97255eb349bc3e24954d

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d1c3d07b430484347555c407d6e38b1248ae04aaab6db8ad2287cffb63c3d4e
MD5 ec072a82a272f9a906e311d824664b28
BLAKE2b-256 0fae240d42d9f8bcf47cca8be9906564a97f6c1e05e6f46aa6e935bd4cfdce97

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30dc6121b531117db3e6ba0163783c85fd41f8f3ed3ad292f25a43f74ace71ed
MD5 432901be2674e5b8f4a486dd5dcdfc64
BLAKE2b-256 fb4d149e63916f95832e0a6493e03c46c3140a6ea2dbf864390e3f3f0271ffb4

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 601a8a3aeb428da8195fe39ec36449c2ae846c1d7dc837bb82085ef2a1affc2e
MD5 57973b78f7be7d0dbdaf5c3d4d50db8b
BLAKE2b-256 8782e848027d6f3e4bc655a7bff2e835c3e1aad2c090fd57d7786a551f619bbc

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f51af8d48fbcf58c494478e4a86bd7480c1ec7eb2a338732bb80d6ff443fd22e
MD5 47875e39f8fef211df867b70404d392c
BLAKE2b-256 119166be2f3d2c4a52cf8d5b8bf61b1036ca4b51c039ddc1758e9592c27d8f06

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a968a33c366239d5fa0e84d4bb66248c4637bcb2d66766ffe0921f4725706ae
MD5 27e9fa0cdaac83c7cec24d1468c8f40e
BLAKE2b-256 89cc8af98f136c1e2536478f882150eb8493842aec4abee8831cbb5b28772aef

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4a9c1d7ca9189585e25b2145bc466a0e3c740d700aeaa40dc554c21408f2294
MD5 ed3431347b9260e6afcad969925455b7
BLAKE2b-256 bcc339c01aa6120e432aa7db13dc90e15c4b95f42f25a3eb0d65b7c63df579eb

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-none-win32.whl.

File metadata

  • Download URL: file_re-1.0.5-cp312-none-win32.whl
  • Upload date:
  • Size: 720.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0d175476553166f3aba380ab7322e41beb59e336fc66e6b00ccab6d5a5818a6f
MD5 bbaa284d0ef88883ca9dece4ff3c6b86
BLAKE2b-256 23c9787115d4ba578cfc9e147f78ec33ded53479de5c0f576020af4a6ac2d58a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45db0c7a378213bb9a11f5a513e730a319ae8295a974cbfd36d652735274ef84
MD5 f8643dcf309a6415d115da146d3b0f65
BLAKE2b-256 d6f6539ed895bc689b71481a494befd171459f9f3bf923ae41c4057baf8905b2

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60bb705f126c4e66966c19eb95fdf54a4cb947eb61cb119fd7f6f025ec8bcae6
MD5 2e3179eac2994ab3fca876ffa0eea0d3
BLAKE2b-256 fa2dec8e37cc39e762eeb0400670db6b86342658e8ebebd95142d8881eeef392

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c15c80a9a768ddc029ceb23cf7373271829f79dbe0b4b2c0fac09bb121cb4894
MD5 7e18af55bd9b3cc243ac508d35b214ef
BLAKE2b-256 80311adb6a9a327dda996db58d0b93216d5061399546cb712effa42f8820e1e9

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77519327630d453b78c54cbf69a6724e82217137df84e62dba371e9f844da43e
MD5 e9ed00d6598205083310fc82f179d26d
BLAKE2b-256 6adc5cf02bfb25e4818d1b649acc580ba038dddf6b1cf200523feaa420b8458f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fc97736f44b6a2e5d74061db86f252598a5ef3b0fc2f1dd9d4ff637064eb818
MD5 26da6cf9b4acedca99af698bddbaa979
BLAKE2b-256 7f39fd167a073b6f801698db5aae1d1e8d7eee98b20f17971366d768af97e0a5

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 572b8f1a3f371f0c45e91ead74a9697ed5062802c086a9a042fb1a3d0cfab32d
MD5 8f3bb8125b5ab30cb1ef75436b5e2997
BLAKE2b-256 298847fb1f7dbf8d8f7a1947f7ffed2767ec1d6e5479821c99243b6611bfa3f5

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa0ca3e433f3ce5efc88dc3c84dcb7d5a1edb31aa923acfc78dd8afdd59a3847
MD5 3e9c78ea89916bca1a61f40e7f0b5816
BLAKE2b-256 d1d9a5934349813ccec1dd9c106cb247d11300889a56557a605e5ef80c0a64ec

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6372fb381fdd4fcff1a98ba1d992224ba6b0130fa9181fea5974a1e58aee2cea
MD5 c2b73abf9b745f3ab1e3706b169a5991
BLAKE2b-256 f42ef21a82711860c3282ab0fe56378c96040892fcff5686c6eb7c5ebe1003ec

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90ceb56889dd7c2da88eeca582718e1d8b87758991a7b397dbb0980ff40361cc
MD5 1fb6d5627a24a54dc20036773cee036e
BLAKE2b-256 630f33b51922eac7cfb91cb49d25ce634ea3c2085466a4b5c6326d31d2c56b95

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25754e4abb51a178ffa9c3bfa27c6c10827a76a3fdfa39bee05ebc2eeb934a8e
MD5 3943b4edb9c22fbed9cd6877404c373a
BLAKE2b-256 cc6665645689a25087f09b5c7fdf447ef23a1e42e4eb26f945852b4f5592a5f2

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f73c7152b053444d98172c345e6eaaf9c6b9e1edf416b87fc869244fe0b8d0ae
MD5 ebc71cca4a8a3ebaf8eec60c5ebb7f68
BLAKE2b-256 4b7a59d37fb553264f5ad187ba221b04d851327560ceb63b69d635a3382729c7

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78814e41ad9af83f527f7e1cba972f2251c61ca23bb3b22bbeb76924227636cd
MD5 325bf32298df4444dbab48cd008478cd
BLAKE2b-256 9c48d2316f384282b45e5cd6fff3b84a09b15383e1c73044268e643323c3eb38

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f33ac0409cf86c770d628d10be7dccc2ea5eeaec21c49b37776170bf931f619
MD5 607b412b0f23f4c7bda25866fa0e31aa
BLAKE2b-256 4d889dec6fe32a3af2b02664eca999b516c91c325c535260eb20eb2cbe0c9bd2

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-none-win32.whl.

File metadata

  • Download URL: file_re-1.0.5-cp311-none-win32.whl
  • Upload date:
  • Size: 721.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a57cd9ca2d74487edae3a573f615df6fc5373797c87c82e9f0a3df8a9783b8cd
MD5 44d0dee89c95031aa14cf6b94d61bb9f
BLAKE2b-256 067515903cd413131410b5660998b4bb90a02b234026f902e2676cf055c1e423

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5202bc60c7d582632573375ff41171cd2aea58095efff0ed31b1994185673485
MD5 0c3e058f7597b15d72a502ed9df3eef0
BLAKE2b-256 4c2b8500e91f9e67d1f47ea3100e1566f3c7f8a74c2eeef76bdc7e7803a0454b

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d85ac01ad44ef6e66a3b5821a7238a22c7f35ca87b8d490301e1cc53af757956
MD5 259e43a6643d24c488260ec29964998f
BLAKE2b-256 edc5388654324c1772e91f9bd985d3ccb6e06902ae6613f641a148282d10297c

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 510d6dd776e9366026d032da1f98635abfe751e6850dba7f2974d1890a36618b
MD5 55cc7632eb9c793fc2dd1e68a7fe60ad
BLAKE2b-256 b4803b231d90728f1fd145cc30446a042fa58c155bb3c160127eaaef72a0f1e0

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c3d6ae2dea9866e37f813bdaff9d1f9640bf249434db219c1258ba59f559c55
MD5 ebeb7257d0fa5542c0d43a7daee70138
BLAKE2b-256 c591530b365c8c8f86b813f4c44592ee55a8acdbe91f8b624f0bd3dc3ca11337

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5361ddb5463fd2b4de206363cb5034a9230cbd0add623dc2e2d045f70f3bc124
MD5 03a2e6cde0b1f56e5f43c6fd5af6de73
BLAKE2b-256 c1a949de8cd9fe5dd7faadc238753b0bed2c216b92c6c8c4c1b6de2d5ea971c9

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5091759e1a023f2b0fbfd5170034bf489c55bd5560747d3a15e52275ea92a8e8
MD5 731a817afa35ab387161528f16c88a5f
BLAKE2b-256 b6055121a52efcf33307b6d3cfaeaf30788743095bdbf7f12988af2b9c79c9d1

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b85fd22d9f7e15b0192128b7ee076ec75ff01cd72f36558e1c1c91eafafe280
MD5 c8bcd2fa6a740c638f706bee4c320bf6
BLAKE2b-256 81bb4c651e654e6d7b4eeb55403af3ed52950680507415686a64129315bfa86f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 847177e834bf7a92a6beb340c736f59b8fda24dfadb577e6344f83ca8def2c71
MD5 ee830159542ed29bb770f5c2595b4d5d
BLAKE2b-256 2cd54c68a989bc03d0de9cff1b2006386d5ce066a5b467b6046a8f92597956ff

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1adf663b6c0c9d557a85151b3dffd6a40c2b64dde877902e56517e752a41785
MD5 d9095d5a46e02cbb6c15dc55d3626979
BLAKE2b-256 fc21b6e7b4f3aaa0abb4e7cd13f9840ffd55896b2af3decc8f421a1b78690ecd

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31184471090a6e5483600452101d623e1eabda23c49b9798b4fb09708a765019
MD5 37f9dd08c5571cbc089cf85c0558fde8
BLAKE2b-256 df926108cd4caeb887e5c989f8472dc16ea68b6d790e25eb3813a9a447d8fe4d

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48af993e2c5cb868189545ed1d619601092c20e4cdfe20da102b3f15d5de6c54
MD5 2f47835af05de307b8b9dd481676e6ac
BLAKE2b-256 872f0a64913f3f2b64ea94ae3bf615b9d6e8126e1a5bb0a96cde2633d861373b

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e127a08615a3686cb56a72453236957ac26105d3edbcf78aa60d6fdaaac5d25
MD5 83b2c0282b0129302f9fe98c9579e63a
BLAKE2b-256 31f9aee8d6ecf3184b3f08220dc80f6f8ae9be33791afa2c2ef3ec5f3f5ede96

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 58fe81a84bc4221e14a4351f4a8e6e7d76707b7cb3024f9e20209ce0d197db05
MD5 4d3e2eae6095378c6dc01b88b30c93a2
BLAKE2b-256 4c090d422ecdd255689283c173b7ae6d38889ea86ecbab04a386ddadb3cf8896

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-none-win32.whl.

File metadata

  • Download URL: file_re-1.0.5-cp310-none-win32.whl
  • Upload date:
  • Size: 720.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a64ed087949780669ddac44efb7058e8d8e052199bcddf1b5a184806b908890d
MD5 164c47990c7739bc34c4c2c1a0414ae1
BLAKE2b-256 a2a394a95f13ce1c221cb6a055d50d5e26210aae5adab0eee47794f8f78fb11e

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5761e4dfa58637345c0600cf98bee7a56d46b474151b3f6f8047da24f963c1a7
MD5 3aa3237d6744fedba1adccf5b6ca9f85
BLAKE2b-256 06aceebd928c7996f3e71f705864b244d79a8aed996194f9e594dd665fb86fee

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39b60134fcf01e1cfd487244a1087638b86c92048739db6dda2ee2376e204b16
MD5 603f2998d1ac113582cc4250d92b4dbb
BLAKE2b-256 03051db0cf1c2b1e52e9e835c68e1047a4674269f3b304313f666750f86c004f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b2b6c2e3794eed4ff1d3889d877bb5d60418cf32d00c24a4e626474fd34d405
MD5 a10bf55d9783d39383ca4219ed33d8ed
BLAKE2b-256 acd5ef3386ca68062039a90692b058d214a78ec0917a5d5604ae2650ef988766

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 290d34c2b04a4d7222e9ea98ea8339234776eee08db16dd4e0c09a7c94d51418
MD5 64ea6ef1112bc98933534f780f529abe
BLAKE2b-256 f65a62eebe7f1eda7eb756974715a66e06f3287508b3014296f776d30b745803

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74d62ef6ab11ad2837d40c1f466eec50986ae92b0e65481bc9b2d25ae2fe107e
MD5 f13b58bcb112f76d232820502205aca6
BLAKE2b-256 f91b72cd62b242d4b074a62568a416be9f32f942f5ad52bd3fa614fb549c85b8

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9a5e5c1c9d011c67cd1dde0a5632025b280e577580b8deddbc13dd8fc0f241f
MD5 443880db70df1e971a01992805d2f3ed
BLAKE2b-256 2310402027773717148edf318713d84612ffddc7a4d751fdd9356c430b88753c

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0447d1f17656ec23f536d79c2af48224ea62b9caa5a8c3eb06a1345d6b3872bb
MD5 afa3d1fc170ba3a6bfdf0bfa9789844c
BLAKE2b-256 5538f9928e0a17e2550954bd28bd21e52b32dc6f10be491813412184b1dbea96

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20eefa4a4b773a4e67472bc53abd50d91079a818012bbb370982d3f14dfec659
MD5 feb9ad4016945dc564a23cccc2576bad
BLAKE2b-256 2a0db0cf64e5a99c5fa609886c03c01c27fa1bd28f143170ea0886df4ce0bdc1

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db653fd9dd25b08b0faba2e6cbd332a96c771889997d352b43d7f64b4cd05e67
MD5 1e2e607fa2ab0a7323887e1ee3fc91b9
BLAKE2b-256 ddc5ffc18eb6f49e144a03eae7cbb146690319ce337ec1d873f925cd7c5633e2

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c90b50e53c07984affe307f01dc7822f8c13779b416868101f8f5d111321388
MD5 8ac1d00a9465920d7af1b3e9da5acdc3
BLAKE2b-256 cf2d9e8b4acb4bc91dde782c8ab76aeb866783cc01eeaa99510a506a793ff59b

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31adb48fa8ddac08dd01e1bd3efd0f72003b3cebdd86bb535368cfba3d8db92a
MD5 b0d1fe83781bfe130e762ddacc20d87c
BLAKE2b-256 500ddcaae0038e4548767123581bb3ae16d6aaf24e45ece0b0c167dcfc7eb459

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b8cd945252421835605e5592cc55724277075c8e2012ab6a20e0f64dc12c7b4b
MD5 3a3b8dd157f020a63d3468fe8b2ca90f
BLAKE2b-256 19359778e27b6cf5a00fe843a26b90493b05bd33c20e696301b6bf11ef6a55d5

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-none-win32.whl.

File metadata

  • Download URL: file_re-1.0.5-cp39-none-win32.whl
  • Upload date:
  • Size: 721.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a409d33e8cc1c4a43a9d75db4d8a0287ac517e37fdbfa7a21f84f7ada24304de
MD5 0e0d8cbe8ef077b50e395e1ab9e2552e
BLAKE2b-256 ead36279ffc02fafeb51a652120c018b783e7b0a98b01aaacf726c3f2d9bd6c4

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9efeff04be4c9b2ba6057ad31dfcb29045b4812e2cdc850d76f32c0e60aaf8a2
MD5 efe91084fb6771632f9357920689c06e
BLAKE2b-256 e22fffdc2ec4971291887f0e57eae539ebc266f3422787b4915b8beb8a4dfbf9

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 656c96f402762d2138502e9d97986397b3058f9bc4cdccf749205d33aaec6ad5
MD5 14a18c4072e19b2b195928b5b61252f0
BLAKE2b-256 555f4df7eea2bd0844b238101700df14fd0a72ee3d8a4eba108d9774e2564c86

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4467cb110f0b65775884fc302513e0cc99e60af45a95d60e5954a01378c2bec5
MD5 d5f4f3ba97a2deca60035fb1f5f3d59c
BLAKE2b-256 507055134b120e8ee66fa5f184070dfca19c5ff176400977e526d3f82af7358a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b3c0e9606d79a8787c091397116a40ca9b70bc809d2aa64f8326b4c3eeedcb0
MD5 90ae7237552aaa553cf1b701dc39d036
BLAKE2b-256 8760e650c46c726f4fbccae233b3514e383022218494cea364c2b84ff7fd1266

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e8b21c137c0311596f5639842806082f72c9e15ace851ca3ee0055f8e62fb5f
MD5 3d4e8f0c69f11b3f1d706460fd78498a
BLAKE2b-256 b5f234fe9e5238a49ef50514b3716a4a09e7a9d7919f48e0a31084b96ae03ad2

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5a2c414ee3cb0e9b02f66074e216ced47263351a3cb7ceae0a497f1b428364f
MD5 79c1bb4af95765a75ccc649ce1aa058f
BLAKE2b-256 157a43d78974617af02060d54a50ecb6e32c184ea321d53e03f52d10515b1f19

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37db1a9eff146c4cfd65baf9af77d594c4703766f765df78b54c1ab2cef0c591
MD5 1373097ac21a569c7af5092e939c5ce7
BLAKE2b-256 eaf2a8d6acc8e0d4d66f466191a5f8bf6fec6be47ff56c1c47bd354cdb29c76f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6c4567b03d050a199514fb65ddbe24ca3be1f64984d670d79bf390aae880148
MD5 0f5d173613052370d24c2b3bb92e3631
BLAKE2b-256 a45f3db2faf0190304ab17ee94c0ab70b2adade85aebe56484688daa776c5964

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bfe5007e30e4955a6790fef104bddf1b8cc31952608728802497a31eb786ea1
MD5 1a104edbf36a56195d341132ca129cb2
BLAKE2b-256 05a5d39467789636006b75070566b49d9a28bf0db97a4df1e1a93d162b46610c

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7202d856aab92b13f8987dc349f063642c76ec41955435627d3cf1e53569fdc1
MD5 ba6234c6e8f7d3c2d5368f9696577b15
BLAKE2b-256 09a16762ece09a8603ebedc346af626205b695fe4eeec7fd35509264870f2e56

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 212d2854b77c45d10072376e9ec1a820925dcca5da691c95d5a6f95c8444d2cb
MD5 d4edcb4677fbf30440925676f9bef147
BLAKE2b-256 718b1d5f79a6d03f4b13fcb201daaad3618e75bf3a5d387e7cf6ebee8d55c8b8

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e3b759313ec998d0440b25d78835f96954d807b1db5315585b7903521b22cd1c
MD5 694f4a771e6ec2602caa7d4c56dcaaf7
BLAKE2b-256 ca04c4ad98d9678da7d24d0015b1acd44c72558fa56e20f072e7c4807ff4e049

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-none-win32.whl.

File metadata

  • Download URL: file_re-1.0.5-cp38-none-win32.whl
  • Upload date:
  • Size: 721.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for file_re-1.0.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 95637c32892c63e55ce6d3086dab989c51a3c75dac07d462bb8e4e025be05a5f
MD5 227c353ba466b56bffccaeac37904ab3
BLAKE2b-256 aac78d527347ae673a82a42aced8a0a5b1af3f3fdd4088c5ad11764af53bb6d5

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2678083c152cd9e6cb57bba56b880faa17d60ecaef0e78f791805ff2dfeebc03
MD5 e342e885f5dee302772e1dbd71317921
BLAKE2b-256 48e5d2ce68ac0e073918b631eb3ba1fd5855585e483665ce1c1e032438ebfa5a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2652ea3c34e9864737dec1168c11796a0558b85502b8d3e7a77715e0af8def01
MD5 8a9cefdf232e0380e79fe0b21e9ffc0a
BLAKE2b-256 e833c3bf0cfe55668c087cc0cd87e1178380780f11df3464b8b4d8a0437a902a

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccb3dfbe438488738575a64b841defe0248903abe63ec035406cff618a01a218
MD5 33bf14ca9f736e7e83b951322edcc688
BLAKE2b-256 14613295677ccf7783752409c37439d759e0bfced0fa0fe6b0f0503f55dfc4c3

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58f25b88e083c17a3fa33b4fa5a1fc0c14ae8a917302ac52f0670a33d14b659a
MD5 06a1b4cac6f383339a26a0286876bf82
BLAKE2b-256 46d181d700f3867890b0688de79cf5cb3ce360ebc35de68bb43c9a2099f39bba

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b6655b0dcf47d45777f83a7bd5010cfe6b2acfb79f8b45ca67292eb80e84fe2
MD5 9b1878778c7846a44541676aaa14e690
BLAKE2b-256 ba788ea9bd0d014670a6b4d90d974f4fb69a051ab4119480f5e02c9ffed1d2b5

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a02be8e2e15afa8e8ea3c7cd682cf4f2f55c4f1a3bb443bda76196baeb2c24d
MD5 8de7ce510c9a8b6a85c31e1d86864b77
BLAKE2b-256 ccbd6ad9256b42442ce235febe61aad747fca6d76d359d5ac3984231542b315f

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8804053dd1cb3a19ddbbdaff49556bd29d62736bb73d56ce5bbf6c19f378f41f
MD5 d87c5196806ae7bf7db23233f48058d4
BLAKE2b-256 c4111d20c5aff74e7c17dd3dca244aa18b6297fbd6e30c1c68a10a1954ded228

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 489f36a4c94ece3b38f4c174d9ad9fa58d89658afcd7f4c3834908e0ad2730af
MD5 dcea25d47064f33dd3dee49b58050a72
BLAKE2b-256 aac07243c3dd6ee79b6709149d91223bc6acb4b6e1671943272a471b4ac29bf9

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd66b391c9a7302f33f30706bfa770b5d1000e53cd8982f491433049dd997765
MD5 e06956fdebf2f35124e0eb7653430bb1
BLAKE2b-256 4946413d38969579e09c8381385320b6d5e4a5f07af71215cff9451d123d4d3d

See more details on using hashes here.

File details

Details for the file file_re-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 413f749aa63683fe3452852491da3ac03b3df6d6a9bd59ef8df0235784749ef1
MD5 0bded76aca116f1de443854d95a67ced
BLAKE2b-256 b7c9714a90d989c805ee7074706b0b8b8d2ddb8006fd20e2cdb4752a9e3f7bde

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page