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

Uploaded Source

Built Distributions

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

file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

file_re-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

file_re-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

file_re-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

file_re-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

file_re-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

file_re-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

file_re-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

file_re-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp313-cp313-win_amd64.whl (833.7 kB view details)

Uploaded CPython 3.13Windows x86-64

file_re-1.1.1-cp313-cp313-win32.whl (757.3 kB view details)

Uploaded CPython 3.13Windows x86

file_re-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

file_re-1.1.1-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

file_re-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

file_re-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

file_re-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

file_re-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

file_re-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (896.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

file_re-1.1.1-cp312-cp312-win_amd64.whl (833.7 kB view details)

Uploaded CPython 3.12Windows x86-64

file_re-1.1.1-cp312-cp312-win32.whl (757.6 kB view details)

Uploaded CPython 3.12Windows x86

file_re-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

file_re-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

file_re-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (896.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

file_re-1.1.1-cp311-cp311-win_amd64.whl (833.9 kB view details)

Uploaded CPython 3.11Windows x86-64

file_re-1.1.1-cp311-cp311-win32.whl (757.9 kB view details)

Uploaded CPython 3.11Windows x86

file_re-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

file_re-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

file_re-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (899.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

file_re-1.1.1-cp310-cp310-win_amd64.whl (834.1 kB view details)

Uploaded CPython 3.10Windows x86-64

file_re-1.1.1-cp310-cp310-win32.whl (758.5 kB view details)

Uploaded CPython 3.10Windows x86

file_re-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

file_re-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

file_re-1.1.1-cp39-cp39-win_amd64.whl (834.2 kB view details)

Uploaded CPython 3.9Windows x86-64

file_re-1.1.1-cp39-cp39-win32.whl (758.9 kB view details)

Uploaded CPython 3.9Windows x86

file_re-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

file_re-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

file_re-1.1.1-cp38-cp38-win_amd64.whl (834.2 kB view details)

Uploaded CPython 3.8Windows x86-64

file_re-1.1.1-cp38-cp38-win32.whl (758.9 kB view details)

Uploaded CPython 3.8Windows x86

file_re-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

file_re-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

file_re-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

file_re-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

file_re-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

file_re-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for file_re-1.1.1.tar.gz
Algorithm Hash digest
SHA256 e9d7ab96681f34bced9037c7532fe6443b469071eb98ccac3f854f1b5f2c721f
MD5 2aca4616d7b804ff862e8a319af193ef
BLAKE2b-256 e15eeddafdcae71fb326d7c090afbd505ad34a1f3319fc654d20dbc44e546c77

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e3596825d090742b653e86b84894f5e9b5c04980de9c81581f6aaf693cb47c
MD5 6235784169d2cb15c8fa5e1fc2f34469
BLAKE2b-256 5b2ba9f3483dfc3bc1b053480307bd7e84cd1323e6f11a5ee944165c3a9eca88

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e7f57b8e8738df4503eb20308d4acc8bcce29c6284519ae12dfb1c594c9229e
MD5 6b8ab62810740b765cf803a65a59c20a
BLAKE2b-256 56fbab36ee2ddc25a618e7de47066b7f847c384b8568cbc358a224934f8d5679

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8d38a334dabbaeabd274ca8a3258fcfb85cd84be76a0ac604ca181afcbfa40e
MD5 245f865a8f749123104eebb07cedd258
BLAKE2b-256 e39f1f9e2e00c2e96b25146ce90bc5a0ab1da4b1234b7690b710cf41c4183d88

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a55824f52bbfcfbb1afccea7928057e8f9def27eb5bf4361c5cc483da4dba6a6
MD5 61c9fbf6915e38809d5d307500eeb6d0
BLAKE2b-256 115fd02ffdb6bc0258690682bce8e20b9fa6c17388d6638d8db4539c683fc5b5

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6799bd3a6273dc250e498745fb3ca29f07f52d1cf78ba3a9c7dd0cc1faef2403
MD5 5c6ce7137b03b675c5fa9ca5aa9cea6b
BLAKE2b-256 f8ffbdde78fcd1690a534c60a912d5f46f28566fbc2bcc1876c2d3e32bae33d5

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e73f1c707d29d0d762fe0a0932047c9e187bd5f533c720d66cef7e4797e476ce
MD5 51f1ef55340b8c778b64c51cc9c6dddb
BLAKE2b-256 4ba1e23814674f07bc6808906680ad507283162db8ebb345e3610dff651e632a

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f5b67c632342d42fcd7d6c7c3fa8ad2a74dcb96747483d7a6f3bf14ce500a80
MD5 aacdb3c15815bf8209d7f6807d00a0bc
BLAKE2b-256 9322eeae2a5bbd0a0eb59f441cf3e09fbaa390d9484af87049de79815e28cb03

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ee7f0e82cb7b07600fc7b95ec7b8053f608cf7a1150f845564911dd1553bf06
MD5 5806be150e6bbc8e7d1a81674b8c10bb
BLAKE2b-256 45c09dd7d3b4a3b5a9d54d8e08488b4d01ae9f2694d916c97e2fadbe6baf95bb

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddd95bab31c8414894d065e46f85f35d962591e829a73bc1ac20440272a82fff
MD5 0eb281a72ff7220660630dd71aee663f
BLAKE2b-256 1ae288204ee11ecdeee4bc8332c2bdcc3ab658afeb8ce2fbb87682b404e13e0e

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfe1cfb2b7979b41cf178ef0c53bdae6304fe48dde7090f20482c831ec937ae0
MD5 e49452f0309d5bc78b11a65d4a8cd509
BLAKE2b-256 924c28fcfd81a3dc69800e0137cbc39248dda2994ed7603fb39ec71a069a8481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb2d47fa177e1c60c686f4abc6d8c8b6e4ccfbdf6eda5458205b6d195d72c2c8
MD5 ebd4aa806451481442d1e21e511a8b47
BLAKE2b-256 f4affda5976b97da40339917ba5384b2ef3c204e0e642337b05179517dbb2a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e1bd8678f592f0b3ecd2ee330f74936894b66c7606da3e47c1e6cfd99d7bc86
MD5 b5be1f729c93f976a38e7202d147e68d
BLAKE2b-256 473193779efc45ca31523d2fa353f7c96cb72796118c3f47629feb39199bc9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a445cfaf76bc03b8d746e6f6f7a7c9172502c51450f2ebc075d265ac70e9ef18
MD5 c2c6c79262df05a401bc160f12c2ee40
BLAKE2b-256 65432972bae0c110550fe4412ab2863f6e82f7936c020b3bf952515e6cf45b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1eab299b58d5566b0c9ec078bed70aadbf2cb483062a8b49e0bd7ad8dda4de1f
MD5 faa9d361fbe172acf1d6b02af4e75adb
BLAKE2b-256 3e6c7d9dd6a51ad231138341399649e1954f28d61562aded623b40747378d97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d288ce70ea078bdd20987929b7965c872672a40aaf66eee54f691c11a1264273
MD5 9234ffc8a0327ac68c29f77b9af070e2
BLAKE2b-256 80151e603d8dfb9a5242e823a2ece2b3de11884e6ce8eb78ebf16824ad17d810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c480b88578979be05b7d8256675992f63e60061f2c211ded71a7375e0e6ea05
MD5 f8696de15a99b8032105046afb1054fc
BLAKE2b-256 509330e9b49dde3e75c9f5f46025e8fc0861a21a63f08811b3bdf15210bf5e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16a152baa54f0ce06ff7c222a9a3e64a7e696c2b1c37a5db0837361b9b9da229
MD5 41a5e424114e70787b9ee1f8824e7c8c
BLAKE2b-256 a1fc17a91b4200e04b7dcf235e618a8429da30e41165330c4b44f72ced882982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25b18cae6966f2c5d824caba83f5037262802659bee269cdac60e42cb392dff6
MD5 74d3f59043c23fe07a55285888462f78
BLAKE2b-256 c310f0a357c7dbbc84657102f300c2f29219977bd95871b5255f66c18911e865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc64967dbed5cfefa1233db2138e4f126f232011688cb2bddf1559ed8390c814
MD5 67151a0b5287c7e7e07920fae927e8f3
BLAKE2b-256 7a2eabd1a9ba2d346380caf601d9408109f0cbf593d0a6f6cc4b94495105bd82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c565501eb45b283ff6e26d37302ce6d71b270a7555e81385f24c957291bb8adf
MD5 499ab334b2f78a1fc6ebee45c4efc23e
BLAKE2b-256 3c512ad34f6ef594ef5132677f9d6e97dc282eb0dc3e0397f7bbcb5671ac64b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bba273e07b2462bc03776ed1e9099a7a8cc61dbe1e1f4c69dbbceaa19536917d
MD5 401bb7a46ffbaf1ad665c99efc25ea40
BLAKE2b-256 bd268e6e2670171f89c5a1de8174674f621fb0054cdc88394145fb7f82765403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8bd2b0222166fc0e8813c09c9fcef0d14f3e5a3c456d2db87a39e009e5ce93e
MD5 5a506ed7076814a404c52df12a5b5a31
BLAKE2b-256 aad2f4b90f797a1421857a775741eeab09fcf3c49d3c51c612f584da27b79c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d100ae8c4e4ae3066b1d4bd00a0fc782d2ff8b61f71c546a63f77878c2bff9db
MD5 73463609db392b9bf63b13296691bade
BLAKE2b-256 ce5b32b5892c16c547b5fe677e65c1245bbff3090b6b8460831765b34778d174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e445718854ae7fd4ef90fcb6eab7798c2ef4f29807249e4a34e08cf99b3953d
MD5 2dc002cda0e239038b525b3203443c78
BLAKE2b-256 d24ff98a36c0506ca450ce860a10ea48736d2473886c384688f2a7105c5bf624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94c9818c9af89c4f6e5ecdad9bd1d0e550e1ad9d1322bbe48dc2a98db6757db4
MD5 87a7a13d55c9f8d7b52eb631bdcea5ee
BLAKE2b-256 dcf0d260b4f3df9e37e3966081e0caa92497c27eacaac661d94ced7d5db14876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07ca5192076b6eaaeccf3b3afc61263dc2435d294527dbfea813186dd71781cd
MD5 1ef73464f4e55ea4a3bef03f2a0aa197
BLAKE2b-256 9d8a1723ffe38f3d292268da4d7b73a66a25114dc1cefa6414b56dadb99b8a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c967843d050d7f67e4e5e857200680c4f2371c010a5530652ee1115034681dd
MD5 2b95445c5b834cd89ff050679b3a6ba2
BLAKE2b-256 4bdde9feed900a2884fbee990be7bd45227a9477270b0307e3bc64b771d50d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60d8ef31fd7c7d362c0c030607b6f4b32009cbea2f7403d1691fb8ab3a89303c
MD5 e6fa416d4803f85450f7232cdab1fc6a
BLAKE2b-256 ed1013d8ae6521b3251aad4d9d81a8f0811b86f051dea284afc7cdfcaa88fc0f

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8e5ac708f06ba43a376563298e4543289244361aec6107eb1569e46b71732bc
MD5 ef7e0ff4a2b0037ac0515755178c9497
BLAKE2b-256 ead83bfefc35016fef107c4b3ad513cc105306c0e09ee1c8e2ac56aa3ab76ee0

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca4430bd1c9230ddac01e430ee9e1cc429e3865073058b0c350f3e8732f71838
MD5 808e04222a5318a6c3cb92b441625952
BLAKE2b-256 8450003494f5b6491d33c62fc0115e9607f141804589a8ea0a6ca4eb5a788445

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f32e991133b9d06a49d148257dd8aaa81eb21b35efe751e3e2e509893bf59888
MD5 622218c43ba454ebfcb18560b2cf6dd2
BLAKE2b-256 895ee8ffe5c5d995315e75117a4772489e6aa72c32d6d33848558ccba39d71e8

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d836e94209bdb88cb4c7776526d10c12860941c7203b9cf12b22bcb427a8993
MD5 5058baab9e671fdc51e02613a3c2a3e9
BLAKE2b-256 23354964ffa52b9d7edce883efa5e937b4cde0735376ef9027643a9e10841780

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55a13bcd834d7a70b8ab60ec60c109bc532fea3cd3625bef5437047ff1552940
MD5 83a94f7bd6dd0a9a47e9814807952e5c
BLAKE2b-256 92ebab389a96c412bcb06eba0f62c7e304dc2aee34ded2f836910c4a8844cb31

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0485e81c9e0cf84c64bcfb0505ab0a7319619db2354d452995b0fe7e6947c11
MD5 6762b478c7c1f33a6e92aa606c2ab402
BLAKE2b-256 af576e549d3307c8ee2ec3f1a42e24120133984edbd45fdc49f1566af3e788ce

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b030d547ae83f8fee26d9f3f7a0d448412cedacdb5c2422c5191a761fb8d0b7
MD5 de4bda31f5c9ed017a0fbb4ccb2351b8
BLAKE2b-256 635778eec9479ea673f4790c648d798ce196786ff451649af2ed6adb4cdf87ac

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39ddf68414e5338e9e188849ae98f38faa52591b22ebc2d43e9b441b26ad7712
MD5 6d8872653510c79b0039a9172196c26e
BLAKE2b-256 0562dcfcf21b77456c4079a0e95d1a76ab3cf6f6deb50cfbe7acc1250e4c0d71

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27a6659ece779d8000b00992337480d27e0c82cc9a1f121a987f2e7d2f4c27df
MD5 35660e18f0d5f63fba0ba09dbb069b73
BLAKE2b-256 353d6bc9a509d3860aab339b2ce636b2899e2a995bf62cad8b1df79c2ced156e

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2d6b0efdbed0eece1c640abde3687bcba59fabc299f1c0574d4d80ce0300501
MD5 6debc0783122eebfaa4052b7db83e191
BLAKE2b-256 b5fc604507453e6bae35c49bace2bc7dc7a7aa5c46e8d78ad2e75862177727e8

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 833.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bdaa6876cfff68bd981b47f1de1db6db5303220f0cb9ef3e1627594b9f509e0e
MD5 5918c27a68b52c36a10519c5112cdac2
BLAKE2b-256 8f9d3fbe2f6adfb7670848647502f8f14d73ddae16e02e62c37b5b83a363d9f2

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: file_re-1.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 757.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bad8cc29b0e4f4c32919e750391e87fd9568233874dad819f6476fb589378af3
MD5 d3352201ece6ccd2f7c4789158c51505
BLAKE2b-256 b641634a07729513aab356db585f49a6d8e1546efb9877b38d4d92875318f8e3

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56075c7d9f97d7d2b73e1c63cd53e9ba777fdbd4155afc0ffb2d76dd9b3b5ac1
MD5 0f3f27c4f837b311d9be6e60444683ed
BLAKE2b-256 319c0f133629c9951e6766d9935772259c5b29874e25f5a576d80918b24bd8d7

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bf0b186a4c4346bbd73bfd8a0f399543738f01632000af033842d47d41d8052
MD5 065ba880c518d2cc42788ab7e230c0af
BLAKE2b-256 755479f6b03d4f3ee9e7fbed879c07049c981fb705f4455850417d63f527c3f5

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 550f8a00d34142dc92080e92ad7a4e38fe585f563cdd2e756e7a971889cdf829
MD5 96c8b54046daad3cce5800f70798fd4e
BLAKE2b-256 206a1c2cf98439e6568c9083e4c5073a658e055e6603a31b16353fcae45aae97

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f651fe64d71b52dc91437a964b5def13910091e36c59949353b45e19ab3dd4ca
MD5 5298b2c820a460ae92a6cc7bd619d487
BLAKE2b-256 ff9aa11f3c58809b49a75b6621b7c92a5b1540e519f43ffccdfb14a1dadb9f54

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff9ff817ba9e671c47f128c2a5b297c11f4ea20ed4a65b2abdb8610321ef4d32
MD5 fb8ca94a000242a3844a972618971836
BLAKE2b-256 bfbb260b1ebac6fac7bbc4d6874bd38be473ea88b2ff263650f6f9e419c98ba2

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 601a0e140b8b7c486cd891cb388474da6b160d1699290f154f371166c661f845
MD5 30bb1eb5f2e7508d7f49041055fe46b4
BLAKE2b-256 0de47d7a52cdfbf2cae4c13cad60796e9e0f6f0fd52918d1e67b460d2c6c5c81

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97633f3d670bea4a72420dd6d604b1057f9fa3f2ef15161dfa8cad28d51b8c9b
MD5 8e239356d0eea1d97b634f7b3f783be9
BLAKE2b-256 f1f6046336827733fccf4189c463c54489cd98c8ab454007ffd62231e4a2224b

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b97b760c41c03e4a84cc13a574291472181f4411761be77ddf253be61c7d109b
MD5 0381aaffa9b1a91b99b320dd3b65ed06
BLAKE2b-256 70e1dd38448aa87a5a0331acee080c3ce126f366da0b095ac3e8d2e50c11102c

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 133228f3b894026661cce292aaef7641d2cdca7429adf44a50c2a33c3d02fc4b
MD5 3de0c38456bf5c50ec7d934f0c1998cd
BLAKE2b-256 45711034ac91d76d2c3221a8d2597c3322e5f85773f7f51415c0504e80e46f9b

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3ca3f09d511faf65c1f1ed13ccae762fac245cac8eb04b69ad7bf95423677c96
MD5 dfde3f83af8a4f57d4e275f072a19ea0
BLAKE2b-256 86bb80d2f3e2c512c4c6312b9307deefaae3504b4914c9ce36a245891583e19c

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38d3517733a6112b4056a5089e4f198a4164f707184ef4823d14d835e7e52d83
MD5 0870f6ae7a10e80f552c1a4818461c45
BLAKE2b-256 f65c09219df0d1e2d1db03da8ec7aa0bdd03a976b45cc3089c928ce6132180ae

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 833.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 409d3b73168588cfa47ebb5fe285e3049138046c1e2b1347767ec79f11ca75bf
MD5 0bd07f92887c62c28feec5e838b10c59
BLAKE2b-256 c58f6fe0d2592beb62bf87287975b80bed9cecb3e476a892c1d7c359795f5808

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for file_re-1.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1a00805a20ceef8c610f2d978f32ed89e2856f60bbfbd02939664f323b2d23c2
MD5 a517f53dbbdc5ccfee88019207daf145
BLAKE2b-256 a0b779c68fa85f04910847502358b465073d5c37d27412a9de76b9064a293a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6163e9f1f912a93fffea8e73b241e09e650f7bbddbde124da7649de605e1392
MD5 0d6d2229fcf8151be878e24d4a323e9b
BLAKE2b-256 bad17e8aee2a8f28693aa5a8ebd5b41ef0f2c947d1b5dda991e7c928fbfe6e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b7a0e19d02dea5ad9c5eb0ac4f8dbd2b3229595bc9c1f31606a5a2a89085e8d
MD5 390dfb11a6a7de05bbc1e7c4233b19bf
BLAKE2b-256 2cbefa40865a7ed90e28dd90a5ebbadc0f00d0feeb4c8cc615c16c709ee4101b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a157581037c5d10e6bcdec49f97c495863d4ad0f35345987e3b13e0fd7a8519
MD5 64dbe4dd08daf0e155ec8b371ebb87bb
BLAKE2b-256 f9479ddbd7912b1c7ae27dc2e67174ad025f95e556429d7018d6f24b58bd9e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a60f13c26c5dc67bafa7ed8c039d2074568fea6a2fdcf57b31456343a6bcf98e
MD5 0803b40ba0c188b88eeba17828ce74d5
BLAKE2b-256 d2b7e73ffdef5f6e99cb22e0556461fe63b03256310d55996e7ed3c90fef6202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5de73b713ae009fb4eeee2eb9721780f406813ce3e4a8f741cdfae27234a6ee
MD5 515135cf3a75f9c0c93baeab8b4a137d
BLAKE2b-256 93ab4ab17dde4b2fa5f246c8aef15c75e86e806387ffa808567c209b748d03b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cb6f4325d0628be77d645377898982252b739448717030875c70d184bc319fd
MD5 78dd5f181295814c287d7226cd7fcf9f
BLAKE2b-256 383013ea9d1fd2765a7f69434ffd187be4ebed36551682a56d8bf800b22bdcff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 042b6970a27585b83099f417d521dee0a11296da2176a51af92b92ecbd62b841
MD5 9a1ae22f6a06eacd006bd2bd19ea5eae
BLAKE2b-256 54519e1912e7dee46c8cedfb2cf4052942130eb0fb20945ef0623a8ab50acbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85f17008fbc837473430c46ed19ff82d1bcb1c7e07119cb5e6724068b268d7c4
MD5 50f11107e23f567ec3738061e00750ec
BLAKE2b-256 6758c8cc6897a1cd2b8437b4c6fe8f22965e5c154990ffb3614c867a04232879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a890d75fcc08079d99a74a15d3727150655aaba711e525b100f5f796147aeebe
MD5 1a8e9d150036dd282cf45d4ba9be3b8e
BLAKE2b-256 9ab00286b6251d4effab27802bd5a2098a2c9e635b9e4708e0131b3685a25fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3be5eec25bb80fc7c8a5d9fb6eafcc3a68bf969ef2c9b427e07b9f90b60eca4e
MD5 6ac705306a988c7eb3a7af626e658a09
BLAKE2b-256 b06499b737ba12d6b14940fda3972ae126a0244b0c36b0aa1b39e5d16c45860c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a09f2e0218d8d3ca660475c5d931441212b1262a2c5f0c5a6e97a298b52307
MD5 a60f21e00f0c6f6e798462021a777802
BLAKE2b-256 e77877fa2b495577a23218cc4faf7ccb278700fea36fdf5ca63d474f8df39fd2

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 833.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 603643f1b64bcc2e860dfb0e2af3fb2fb4a53de77f47e2997a50a2202abef130
MD5 97890b5b1a267f8a116c02c4da935ffe
BLAKE2b-256 c87b7add095716ec67153d63c1805b9d0e75dae60264d166813ea0aa0c87fe0f

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for file_re-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ddf51cea9a8828585d7eb4c9f5910cc31024e47545376fca8093c811cda08c42
MD5 97343aadd7ca0aaeef0d776746badcb0
BLAKE2b-256 db1d7d6d0583c97cf108a1926dcf2b85d0b2df51d33cfed29bd4fd97903138e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c3a6177aadfa7571aa81b70b6c3ac5e9a61715c76f23a55f5792c59dac85be0
MD5 e93ca9b468d46e31ae1a3d977d18042a
BLAKE2b-256 a84b2e6502c334dded1a9ab5ac88efaccc284152b55245ddb2e43912dba657d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8c56d04e9f47871dfb94fd37f0bd495152d7154a47800114f779c941da50583
MD5 b173c53d6500f6a5445c89126511d6ae
BLAKE2b-256 c267e16378d804fc6f3eb0cf4616369441a8cd61680d91688f2c10b5b01d0941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 648eff61869d0f7a0ce134d86cbe2f9ce4ebcbe24f45da9698856fadbbeb44b3
MD5 ae0ed5b0972d3d37dd9b1c9a9836e6ba
BLAKE2b-256 b98d30d6c400aeb2d2dbfc290a76c107ff4ef1422557f815784d1541008259c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc5a04f1896cf9d0f553b479b616834ec3fe40d943eb3125fcf9aaa21216b7c4
MD5 7bcd5182a643b7fe9d8a3608cb807e56
BLAKE2b-256 2da614b50d1998d307f1a2b8a21f979ca953502cb16cc62a17bb25566cf72a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8daa8618b9a1a0eed29711508c6a320e2e9f0985f15356ed3ab9b2b29a1da52
MD5 5c5cfad3c1808cbf66fe535b509955aa
BLAKE2b-256 640bd5994b902ca0f0b8044e018d2f66442f14586b1be310a2f40bc72c471ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a09882edafb531bc8d86f5071587285722a17e7e8c19d0137bf38816704b37d8
MD5 89865ccc26ebcd26bc0ba0eab8219bbe
BLAKE2b-256 9064e5ad2ae45bdd4957249a0539eac61ddffa729217c76b4ebbf3e3254e7bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 883c7624a7b416ac4fe6eb8934ed06f7ba01eae9d746ef8aeac00737f575d069
MD5 fd36821b5d5c31a57aa1e6a58aa91bdf
BLAKE2b-256 f8e38e85df5c432ee48fb3564e872f32df6ab671eb9f37b762cae7997b99565e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1841b9c9e172c02de9f82aa2743585a0f2d39029dc7c45411da9e509f04b7256
MD5 e5428ef3e7744bca843b9771ae11ddf2
BLAKE2b-256 aa8db05c3c5a2a06be4fee5951ed57c22c5598afa185d2abcd157c03a9909972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f7f16105bf7f937ad531819a164b59ca9e37d587f4ba605453372e3281f1d91
MD5 c2d3f9b8df1d57af9ca044c24b1d5b5f
BLAKE2b-256 4b2c43f5187eb57330178ea710cf401db30a32caca866ac4d95166384211d3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fc76a3f609c2568c48dabd3b03084a297d0d8f796d985034b0ced961c2f9ba4
MD5 bd49692e67b388d3d13b43de26b9ab0e
BLAKE2b-256 b5e00628c74a915d67fc0eeb328f9c1a06bd5f890c857e071c1a612345bb5193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564907a2f9bbe55929461f50676d8e1a9b262c2773ed1dc7d3822d87f028b311
MD5 3975f1c9d8f893daa208417cd08a44fc
BLAKE2b-256 c23f627dac8117aa9ecb9736d425858f8b394cc42531d17ae171aa042ebe7bb9

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 834.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3b6e2ced0185bc09300f5c0a7c277058438d8abea7ce2ff908f738cee417a29
MD5 24225baed64b0ba545e6f4f754e5ef30
BLAKE2b-256 dbd0d79e2fc4465179b5e9bf18beead06d485bfd6acf55e8c571040ed995fa3f

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for file_re-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6a269fce77b8e3d12b02ec1df3124dfdf2641c7cf7669f71165237b5c89b9fa6
MD5 614bbafd337b615915e7ba4a4848202b
BLAKE2b-256 e703d7eaaec0a5eaa89b2f54f76f651b18479a4f680e99dd75ccf41ea04cf6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed05dc0a8e9730eee825a03ee710aea6f14f7dfe02f4028b59d12b62981b573e
MD5 e09450d529ccff30a70762963d3e65f3
BLAKE2b-256 e114fcf4e10ca971d5d2835f8a688563d357bf941018b825dd15c9617416a424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee85b5ad661ba09bbc6af31563a20a317cc5ce72d160f311d981bb2b9f9fcf46
MD5 6573eb8da49856d2e7cced563b5730c8
BLAKE2b-256 1abe9f49b5c724d0936987565631e6b52b958c542097f87e9fea886b27a8cd15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a341829e6c1a65b9d17d6ff61f840e83d3032c5ff7a0273f086871ac6c808bda
MD5 a665d89924eff959c70744228a18f7f0
BLAKE2b-256 f644c68a7908cc63f97fb70e56718d63904229ac0caa5189374caa98236f00d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18ca5c51f4868abd55f91552f6b488eb8f93e9c406537ca90a4a735430d2bb06
MD5 80fc0c22e29128ec5f90829d2d9af087
BLAKE2b-256 98fe4816b56d614a23c1fff84d4670478a5c3a0de4dcb8b8216b8f202c0dc0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763f80b679bb41803e90c915a1ee2b6dff0b43149b3e5c31884053a2cd3525ac
MD5 6012704f8391ae092b9bff7eb764ec76
BLAKE2b-256 9a6ce81fb193b1fa0c23aa8c5a3b8bc496f94c981c6d6055dbb21c126ea505b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7290799a7010fc8d3eff7031b614a9074f4b8c2387b4c229b720353fcd3da7ca
MD5 1b8c732911abeb3a9c7ad3f4854c3510
BLAKE2b-256 ee5eab8cdb1de6094ef2c566eebaa301829ebd839c10026970802015d626c659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e346062ba2bef4e7d1c9ff5b1d9923748072930f083b8024531c9a260653589
MD5 72990b8e8172170fefc78a4d86914de6
BLAKE2b-256 d6a173298bbf673dece33215c104e2197639223edea09e85a84615b1f33b777b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f82e528544f9f5bd882aff3d4c44147e503e983a527db4d8becb5a5d7d9eba2
MD5 90e6dab6949ede73cbef8892ca72485b
BLAKE2b-256 94523d8d661bb4cfef032dc36bd6749ba9b13d0990799cf73d82a4c2edda70e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b702e3ab802280caf6239c9ec452ba23073f6d1ce5be55a9576ce2daa6958137
MD5 d91153c23a81c41d9c0b3f3547e838ec
BLAKE2b-256 811808ac4e252ac1b0a48c212a6f039eb68ed376918cac16bec9d5fa05d1d018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6af7051cab0318d8892f82ac9566679f52cd7d65b88ca7290350441618ce569
MD5 62325595d6c4c0100936370604f79069
BLAKE2b-256 4614e7b6e6da2e407640bae697779132180cfd963da21e1768ae0259aa0daf13

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 834.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bb8b3b372afc7676c00203ca1c45bd879729c90a158cd49c9c1941a24deccffd
MD5 e03603c70ffab24b467784d33609def3
BLAKE2b-256 486a3aa91095e6c0377c3188a808529a5626accf14abcdff35567d1ca7ac8b05

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for file_re-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 68c37735819bb97be73b12809cd2bb5d263cd46f36cd6d097089860362c82213
MD5 ac336208394050002acfc2998b04834f
BLAKE2b-256 c1cd268cddc0a819a9fb391f22be95f618fcd401dcdfb3decd09c8045ba5c3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd270c4580a631565ed53c5f6df3ffbe49d70dabcb94eb6a02677b4425b8a83c
MD5 766b27ab335abb7983a1ac032fc02099
BLAKE2b-256 57347ffc3dd21889749ef80203376c3ecbb1c73876f3047429cbaaca117d8bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 398cd9940c283294e58cec4107bcd43552ca692265f393592e8640e58652a358
MD5 802aee8b2b28edb4bbaada0780b1f221
BLAKE2b-256 c8be29984e10a89e54507605b3e3585af7d999dc4c63a2eac4189c63ce272ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b01524ee3391e5c61d2349bbe5613248ec056c7e70e696286c25e27245c0679f
MD5 382d8b0974e9fa6badd153155bfcd4c1
BLAKE2b-256 9f3f516f22340c1de77d3928b614f08d45c922858e72c6c0820062d7ed0246f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcbee794504ce12566f07e7eff87541cebaf414b7d2cd62d4e332aa2b0c3099a
MD5 1f31fddeb2c898b63c3c238f6bc4f479
BLAKE2b-256 97112d9d536129cbc67f1f3748dab2ef390527e95008dda250300501b8c73318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d250adf0b7aac8e77c4f880c56e7539f02ff7018b6616621a32f026c9d30773b
MD5 7d06bf45ded2fd327228c3922938795e
BLAKE2b-256 8d8e349d530970ac7117ccb1584db989dad867422ea631cad067e552ab3851ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91117c319da6a1fac9da57de6a9390b8f47018202b89e141ee6b717dfb2a0d28
MD5 d86dafdd8f482816b7134f2a52645b6c
BLAKE2b-256 96ac327d2efdabe184e856d2ba2d67adc0dbb0f8cc48a3f7b54269e83fa54e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a5cdee9ebd83958952fd49a1dd9132a2577205359ba1a31beda6623d3d28c7d
MD5 59099480dd9aa3033eb12c31e66bda23
BLAKE2b-256 faf92a9ae9766e16321cdadeee4b948375cea9ff9c732adff0d98b19135cd731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b71775140fcb611c806a3606a761431662284df95b43c7635841e8b64a42b4b
MD5 ec7d0913be8290f0e45bfd718f9b7ebb
BLAKE2b-256 61203b192cbe68f7b3411ce8140503d69037d9f6055a153f3925da760d11b2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d30da21ecaac991e268b73d1bee696bf9b78276eb4d13b3770f0a1225e6cdab
MD5 f3c4bd7dbb9b89d7a157acd8bbf1e8b1
BLAKE2b-256 0f2cabd2212fb60d2c8d64f3c942ff17be2641bf411ebae6ef0d2200c3db6b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b135a197a882971a7030e67b6e65f414181b5ed10cfb364a3738cb89fbf2ef5
MD5 1625450289a9dbc528546f0b691f1262
BLAKE2b-256 803d5a8c718a11cd3bb3e6714e26b200ded425101092e2131e7e89da3dc64754

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: file_re-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 834.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for file_re-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a4bd492b957991b4fbb15b48fc6c682191a26d9805cd37f414c2a9d9f86bcdd5
MD5 ac6175995039ecfdf7f6ac46cb47ec1b
BLAKE2b-256 c9db967ad299e014183824c8f49c410336a6860625d5f169357d982fe9df5e9d

See more details on using hashes here.

File details

Details for the file file_re-1.1.1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for file_re-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 187c074a2d52dd1296f8a534fc28ec55ca139d2f35784034622da653051914c4
MD5 2553d5bdef2c69f985eeeacd35715e13
BLAKE2b-256 ae302d3265791c8840c7e5bdad52df245954960e840e11f10d8d4a94c0b5c028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f838222e3f7fc15ab84f27b3578edae3e279c597cdba6986c26c9817149f35b
MD5 4b3b52f9c365e6b316ad73ba9cfc3f49
BLAKE2b-256 42a52031d576b08fa60d4d68c56af7af053dbc5ab8402bcd2f5c3ffda645fa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b04b91ec1539d4b20e5a9db1f57722c8553b7f1743718ac7cb57a2d9044cf3fe
MD5 8f617a1e914e7797e2f8138ed1dcc428
BLAKE2b-256 6f8b84b7b6d6cb40f23158386fd49c6227c6276c452fa6ada5c89a8a9a8b8c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50827db35a1640e15f044722928ada25dd9e53c398c7d2bad8ab6ff9ec7323a9
MD5 f4442453b2ee22f1e49c88aa46ae7c6f
BLAKE2b-256 7fad32bf0b47d2547617792c5bf34797ab0d5a363b6f056aaa58e0dfa11e2210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 104966a10c4585f0ce0221018ca985b43cf1f5294bebc6e22953762ffcc252f5
MD5 d498bfff5fe8a6e68996318f0b82efbd
BLAKE2b-256 6fd11802f52a9dfa1237ceb2a388b02caaadf7557703753b9102bfbf8c5180eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fab4ca8e6d4ca94aa1de20bf3c79ff8b0db2f07117f74589592c83141dab8fc0
MD5 1d6e78743055388590e17d8cd8391734
BLAKE2b-256 4feb046972d5d842fc9c3e70f4f44a224b4a2520b7b315fa55dbc95bb40bce52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd380c97e15e6094d724aa73e93a539ae0a56b676d38be53ac2b7ecd8db93499
MD5 b621c86504b18590c18f5b0484a8e435
BLAKE2b-256 377c381f16186badbe8718a1ea9669ed249d241e54d2c645eb52b144e81a9c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ad9d3d40121218f4b0beb26ff8ab64a99ace5377c5320191b54e0215e9638d9
MD5 84ecb7526d6b6d4e0d639c6c3f65d1db
BLAKE2b-256 4a65a392a4baaa9b8406cfb94b8e350112fda4adbf573a478d1fbbbe88fb511a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ab8423b4ac2c8ad2e3971baa31de1a585ff6b5e45f542ed3207fbd76387331a
MD5 3d7b494521cc03dc9724adf0b4634473
BLAKE2b-256 08721e2f3570b58440d4a14205e2d64a88eda9cf5a935e20adf4a51610b03a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c18fe18d1f64e310de16b2f2d0311428ad05fbe335d51c1cad5056f28c94be09
MD5 e22e94d1e3f9093fde2f4678c9d4d0a6
BLAKE2b-256 cb9efcaf7da253fb0412817aa7ebc8ef55ae5408355463852f6a2ecd16722eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for file_re-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d24a0a81044ffeb6522a80d9b7343bcee351192d85973393e1fbbd2710113888
MD5 e421885c849cfa4cf2d6ce4c53c51232
BLAKE2b-256 8de014aef7a8da04b3f4e55fa61d1f5147c1a9516761a0e39c739232044e3d40

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