Skip to main content

No project description provided

Project description

file_re

file_re is a Rust-backed Python library for running regular expressions over large files. It mirrors the public surface of Python's re module and adds a single max_span_lines parameter that controls how much of the file is held in memory — the same API scales from small configuration files to 50 GB compressed logs.

Install

pip install file_re

Wheels are published for CPython 3.9 through 3.13 on Linux, macOS, and Windows.

At a glance

from file_re import file_re

# Same shape as Python's re module.
match = file_re.search(r"ERROR: (?P<msg>.+)", "server.log")
if match:
    print(match.group("msg"))

# Transparent .gz and .xz support.
phones = file_re.findall(r"(\d{3})-(\d{3})-(\d{4})", "contacts.txt.gz")

# Lazy iteration with bounded memory.
for m in file_re.finditer(r"\bERROR\b", "huge.log", max_span_lines=1):
    print(m.span(), m.group())

max_span_lines in one line

  • None (default) — load the whole file, full re-equivalent semantics.
  • 1 — stream line by line; a match cannot cross a newline.
  • N > 1 — sliding N-line window; a match may span at most N lines.

Supported API

  • file_re.search, file_re.match, file_re.findall, file_re.finditer
  • file_re.compile(pattern, flags=0) returning a reusable Pattern
  • flags keyword accepting re.IGNORECASE, re.MULTILINE, re.DOTALL, re.VERBOSE, re.UNICODE, and re.ASCII (with Rust-specific divergence notes in the docs)

See the full documentation for the large-file guide, flag parity details, and the 1.x to 2.0 migration guide.

License

MIT. See the repository for the full text.

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-2.0.1.tar.gz (12.7 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-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

file_re-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

file_re-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

file_re-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

file_re-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

file_re-2.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

file_re-2.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

file_re-2.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

file_re-2.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

file_re-2.0.1-cp314-cp314-win_amd64.whl (855.7 kB view details)

Uploaded CPython 3.14Windows x86-64

file_re-2.0.1-cp314-cp314-win32.whl (771.5 kB view details)

Uploaded CPython 3.14Windows x86

file_re-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

file_re-2.0.1-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

file_re-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

file_re-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

file_re-2.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

file_re-2.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

file_re-2.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

file_re-2.0.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-2.0.1-cp314-cp314-macosx_11_0_arm64.whl (908.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

file_re-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl (985.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

file_re-2.0.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-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

file_re-2.0.1-cp313-cp313-win_amd64.whl (855.5 kB view details)

Uploaded CPython 3.13Windows x86-64

file_re-2.0.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-2.0.1-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.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-2.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

file_re-2.0.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-2.0.1-cp313-cp313-macosx_11_0_arm64.whl (908.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

file_re-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl (985.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

file_re-2.0.1-cp312-cp312-win_amd64.whl (855.5 kB view details)

Uploaded CPython 3.12Windows x86-64

file_re-2.0.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-2.0.1-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.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-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

file_re-2.0.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-2.0.1-cp312-cp312-macosx_11_0_arm64.whl (908.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

file_re-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl (984.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

file_re-2.0.1-cp311-cp311-win_amd64.whl (857.6 kB view details)

Uploaded CPython 3.11Windows x86-64

file_re-2.0.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-2.0.1-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

file_re-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.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-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

file_re-2.0.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-2.0.1-cp311-cp311-macosx_11_0_arm64.whl (910.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

file_re-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl (987.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

file_re-2.0.1-cp310-cp310-win_amd64.whl (857.4 kB view details)

Uploaded CPython 3.10Windows x86-64

file_re-2.0.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-2.0.1-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

file_re-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.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-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

file_re-2.0.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-2.0.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-2.0.1-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

file_re-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

file_re-2.0.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-2.0.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-2.0.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-2.0.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-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: file_re-2.0.1.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1.tar.gz
Algorithm Hash digest
SHA256 d44c13171c895d0a48c07648190f29c72bc5399b86b45d1111bd161bd4eb078d
MD5 b3a1b8a0ad0bc1d042f2d7fc1a03ce78
BLAKE2b-256 601edea3d0e796d53684e1bf86497ac1864fdf3a176dd6a6ce14e362767c39d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1.tar.gz:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd70f6fcfd514b0a839e0e300917168473d046337213b444b614656cf9bc0e93
MD5 082efac98909f2ed1fb3b56f07300568
BLAKE2b-256 b8389c1bb26d5156341ee665ef415d6e35634171cd33f34138a42a7bab9f3137

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29bc9323cf6390c8accf35a31bdf75a2d037ffefd78ea2df7536bc56f0b178c5
MD5 dad69947b1fb6ad94c8828a079c4d0d5
BLAKE2b-256 61d6f90eb3ee2323968a78ffd0515fbdebf8d96fa3fb5724b22521fc5b39b9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a8355d831fcb6d607adb68e11e035bbd1c325fc6c779520333d2948c661a8c0
MD5 ea7c02f7a313cbb8ac387983acab2de3
BLAKE2b-256 4ae3cd8a91a19f38e4baeded4f7b216a96f8f0ae902f2052e0cb8b1a25997e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78184683d0e803e9d8e35ac207cc7f33f30a7570f1f4517d04f10e833e17c23f
MD5 17f1c2d830dd9a5390111254a4dcc088
BLAKE2b-256 28417a97a09434a38e2c6ee27dcfaf095fa5248b320e491df171a86caf905eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec750c51548dad86f575d42ecc4b35b01520a423611ee72b2e3f02d69800c598
MD5 b06bcaafe7e5cc3e94a6e537c1d4e1f5
BLAKE2b-256 a896b21a9cd5f06e8c858017071645f848290097803d3ac343c17c353713bd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4bd4e14a9258ec491d32afe1fa9af84602490a3f0abdd84108edb1bd351071a
MD5 89268fcaf46ce9cac9ef6681b99dc6b0
BLAKE2b-256 b465c37269aa1163df85ea9ff6a7b8ca3394de83b61282ba50abafe55794624a

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d09c17d054e15cf0676cc0a27e503144a2ab192654e3e55936c2c49bccc7b83b
MD5 b16bf517959724db274454daf97d6244
BLAKE2b-256 9e690846b0a70f40c621ea57332e59bdc7c663c55f8bc41241413a51db3f5285

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b80546fdfe3d99be9f499ef1295bcd3d1ecacc37a6d885fd8264c3bd6530d52
MD5 840aa22f4c8737df21cce6889c7b3521
BLAKE2b-256 3d8ff77cae16ab38d399cc49eb0e9c66ad58ca2bec3e71fb8a27d3a378cbe620

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4862a36499658b8b9efdb8086c9dda254c293a7713cbe7cd8287a93b00eeda5
MD5 7bb7c2e42b687907e800eec1f1117f64
BLAKE2b-256 ac24d8043a08976200056140ce4b585a45e7f31949bfa39f81a68172268db20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f088dee6aedfa1a057555a33f0f20c4aa1ef98a8d7a770bfe3eb080f9f2fb93
MD5 9444db913f6720892ba85177882295a4
BLAKE2b-256 357fbfddb37249c3d5a45e8c6e4ed345d262ac60c29ff3c82846d63c90478ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9b3cf22128a442ca03c86a43c2f3cf8084bc8b621da8d995441d82a0089a997
MD5 e5efb17c1e4b1f0621745d8de2bcf3cb
BLAKE2b-256 319e48973ab4a3afdf692bc33006992d347e77302c9dd92d25ff42a0efadece0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e87ecac39cfddd5ff6dfae68d8f13af4d0d9d115426af5eb322b9ce94ddc6e5
MD5 4eac5a7e174cd83f148ca0c14f6eac85
BLAKE2b-256 bcfea58e613258a72e3d7dfef92917de298cb4c9a789c769b0b29c24077a9b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b37d08878a120cea1cecaeef88a4d0cbbb78ddb20f282eee7ad976e1ddb9db2
MD5 e00bd5958a726cfe8a6426c2e51c79e0
BLAKE2b-256 74e50bc9f84e3e9e329b1aa48eed7c94647482e557e66551297e8c6a15a760f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b80ae307cf34136a9fec6a9f58968ccde55bebf4a97538ca8cb92693e57b55
MD5 0b28a018d875654b575261c008dc42bc
BLAKE2b-256 81f3a5f493a8a2eaff2732038672a495c7825cf50ba1ff48fde6b1d1c612f789

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdb8075de8812003715bc56aad9653a988cfce265c2fe43488e051bfb72a51a7
MD5 521249065b673bcd85acd7a0068d9a95
BLAKE2b-256 4711b8d8a7fe2b24657396c9966e56f11340f13392fe3e9084c1a1fc8e2168ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e61d811491e831118bdecdce1bd8da2fd1325c7476967235085c8d2185db0e2b
MD5 dd134eb1611e9a9109a4d68543476689
BLAKE2b-256 8410055ad69f34f588342b3f0724a31be21990a4bc8aacfeaa215be774b58445

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50e653d204728cd12328be5c936384a33d774c82c64d0afbbb99a5763336bb6c
MD5 00a6bc85cf7629405ab1e1d7a8738676
BLAKE2b-256 ffb3c444518a76ae9bb944e9dff93c0bb8ce910d5a8a95b7586b00b52bd9e760

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ee75be07535b324ffaeb2f6dca359186bc22bc3eb52f9715a0166e39e098d37
MD5 d9b5227f66f593d70f14803f880e5ed1
BLAKE2b-256 890e05dcfdee18912be60068e4fc8af085f305cbf0d13b0f655db9adfb39cc62

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: file_re-2.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 855.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bdbb7c6abed88775a34d7675684e4f5af010fbfe86f44e7fe64fb2e82e7aecce
MD5 1d9fd43e42c3a603417e71805f25e750
BLAKE2b-256 60ab821531f02c515c7813f379f6161cea1be3dd04aceb66c673617d53d56ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: file_re-2.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 771.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31ac2dfc5d6f01f77abc9e82800c69875ee52b194a8396e86f825a6a02a96288
MD5 d3f2f9327bf02ad99c79a900f352d16f
BLAKE2b-256 22876e2d93a71741b5f05637c92e1688484c457a789d86c12b44a28a9d180310

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-win32.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35b8ffc284aaca774616d35a440f1e34c8705607aa70e43947c3da13e69f3eef
MD5 a1856b4e114e0c1b03198fa8a95c3512
BLAKE2b-256 39ce9330ba21e65a9fa22be2e95c59048ec8d9ecfcadad93896fbbc7e99ed074

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 138b19607e45207743c331f29dbddbd5c009fd7dd2544684e2f8369dee50ffbd
MD5 765e35e144e608238008d97f743e2404
BLAKE2b-256 fe81ee86bd95b5392ebaaa5671f705912068a93c1c3db1417b7988d55fa52c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0509f22bb0e4d3c83fcb70acb77c8c835f44d7905943d2465d375fe53e3939cf
MD5 13e28e26541c3edc986aa75ec253d90d
BLAKE2b-256 f58d0887d40f4ed6b5e3f5a90d31e69108f5abe483867012e17fc9df488fe3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03b219a11204130f65938c4ff92e9c72ab1275e1368d3d6a439359bda7e85656
MD5 2f4f99e33ad004bb407ac3aaa82a7966
BLAKE2b-256 a54a25bcc71dfcfe976302ecd5e4a98a8bfca5013a73e6f75c74d5bf80399cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 380d6a45158376cf42f8e3596eabb2f9c5919ccf754f3cdddfe28e0a00526534
MD5 df65d497cf161788692f800f9550faa1
BLAKE2b-256 83cb6758b1346c750302e55ec4b68fd8c9439bd6e24900a2730736bab8b2bbc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46c172c2f2bb827760aeb1818f4607f027161fa815b51431c82aaf3173aa1b1c
MD5 039577108faac8e4859152381525d131
BLAKE2b-256 cedc6fca08937fe5fe4eaccc18ee6154e87c9a9b7e8a603a213da4e538660a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6645060cf2240c70b4ac0fd29885ff56eb33972c5065967082bf5ecc9ab63c21
MD5 f05c3059e19ddda0989c4b115203bc8f
BLAKE2b-256 17bc73dd7414acd72b6c871268061ac1b91f2eeac85fc2143de24b27d16bec79

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec8d6f4027a1da5c7a2ab1447ec94f8d57855d3b233de465e1e94e5445e454df
MD5 1620efb0b0c0ea425263e8b8b1394f45
BLAKE2b-256 61efc76a1a9dedb62ddd716676c3ff1d600a5ea9dc482581f0931f2111301820

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bc05910dda24a73166a45e84193fdfa24e7d155020bca55c604ef5dada8fafd
MD5 5bf5c0ff27de0d4b9ea0ca5b13168f75
BLAKE2b-256 a6493202b79a05f42b13c4e0d0d8df06ce2cb56c852fb20e5be42a4e9080f543

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85fee29b3b95e90819717c52e3cad9b9309437a8e10bcea89bf9aeac78ffcf90
MD5 6a7f0c3e81859b92b259bf5c4a160ba0
BLAKE2b-256 72f79ce77bb79d0800468d0244315e14c85d742f33947170abcc7482dd54b76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fc471f9eabd4192845c9ac505ba12077356b8c6d07c6b7b5cdeb399fcc9b85d
MD5 77ccf9b410fb4c75ab67225601888aa4
BLAKE2b-256 ab19bb6aeff9e51558a2af81febabbbda1cf0d04025dd3d5b1d3285e19e12cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdafbaf7108a470f5793d97e3b172a64c49dfb69a37f6bfd40a1594e974e728c
MD5 1c0d2a7605014c3c0c47abe8ff707149
BLAKE2b-256 8efb36cad5e5dfbd73ee7c51a7ad4cd8b89b8f08ff4599f20b433bb02bb3215a

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bef8e2777e8dbe7967af52177e60dd4f5062094b0cb0be020fa7e28b80f014bf
MD5 e303ce8f70c3cde1bc44711dd1987449
BLAKE2b-256 93874e1cdb7315239f62aeebae2f8fcf4e34d65b3e735384421f47097ae98222

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1277e6a308131399ab50b8239f1b23626e4179d074e5852c934c2d84872e646e
MD5 f24e32bea47ee2f02fda4298f5372da9
BLAKE2b-256 5340b2a8857054dc4b98cf9ccb030808ed49ea69e23a56e6290def7c9a72e8b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7a19ae57eee5b0ed4fbeb414356c19ec95ed26d63f7ce6f29f225e5e84a71b0
MD5 ff8ad92f2478b9702caa49248ec06ed9
BLAKE2b-256 ce142d0d7f5e57d69095b1c7b39622dd7acdf82983f365efc59e89059ace393b

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaddcac2e81fca83e57dc9484f97e63b214d7d65b63698c4aacf2d52d8130820
MD5 77b4caf09fc2845f383505d44eb01ef2
BLAKE2b-256 2f4a776fbd681ee19a453875ec8e9433b9b6195785aa2f5f7502e042175b6f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 039fcc6124d780a17da5826a568a88b9f5dc273d9385f39e47b43fc5df3d5adb
MD5 873824de09d2345aa35eb15852d884ba
BLAKE2b-256 363d276b92e1cfa3452dc45a766e3244462d4478a3259beb47c1391630c1066f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26c927a1a293a4c71534ac8d129262e16f01944726866d929a32ed0ad086c6d7
MD5 eb87a64943623511aad90201facd9665
BLAKE2b-256 858529719b99ff946af8b93feb9ba62b9a37083a63bd5057621196048c6176fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afb0b994aa9802800d75e40e9a5c7c62dbaf28ec54fb8e795dc6b2a272611c8c
MD5 dbe6b7f6608fd112aaa480ea0139ff75
BLAKE2b-256 6adae96fe7743ba4d591833a49a3736c2b2f1b99a3e7cee6150f57db169883df

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4451f2ff2988d1e8c53cf0c4244c43abfd9bf9b9b396f0f7b95680c4dde299fd
MD5 b23a68d8064fb6a262e2796a3c2e76b2
BLAKE2b-256 98fa12153525e5d1ea6f05e4b7cbe54ab2d9b9a86b664ed00d8efb26a8637c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: file_re-2.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 855.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ebe80094037b2ec671052481aa24518d3324bb2461d029eea210739ac2b9313e
MD5 2e188515f4caeb40c9dfa8658f14c35d
BLAKE2b-256 fdebd8b724ffc24605d09f6ed824bdcf75cd651b1c30bf13bcaba452e59acd82

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b53a158015c8b81e343ba75ba166c8279d555c29fcde9010863643d7f9920ed8
MD5 206a1a4e7171066520774024fba13c1a
BLAKE2b-256 d3a489b0b555eb514a8e8a8e8df925db9d15d6ff5302c3a4dc9c362681645ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49e3da76aa3b9916e7489516870927d5903ed5285db859ee26395553172f8390
MD5 bae6b3cae4d8ca7483bc7f46c5933110
BLAKE2b-256 87c76eefaf102812a7508eef40034abf077e9891dc6d8257e1b339effbe3b1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ab8e8be16f32e55084ac86a46000c24d0092dd9fe355a5187dc89547d2566d4
MD5 9409af3308058250c6f23d8a3b266443
BLAKE2b-256 ee96a76ff0f8eebb2dd948468549461b36c3c54982128a875700c15de3227a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8e0c385cf32faea691ee7bb1c7e0113e3630cdbe6362f6ac4994d0447d7e6c2
MD5 c5588ffdf038f93d66a5a026f597b54e
BLAKE2b-256 0e25f2d69eb80dfaa6d0a0f7c5438a10bea6aa8e598ed0eaa09c6c4c96f7c30f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c34c66ef6b1794ea9fd41c71a7b99099b354a2a4081272fb3afe4116c40b72ed
MD5 2b24c1d3e47e8d4c9fd00c4fc666a547
BLAKE2b-256 55d1692cb9265422733171ffd6d90ae172e298e450b1de5c0e3c416972dfc6e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b34e03bf2bcfe50752c1f70d8d13c75d44caf8fbff3e1dc08d3440e79ebe7f69
MD5 328bc959c36103b11f554d8497705a42
BLAKE2b-256 1283a4da928343d03e5adfae4eed0a6f271e95880e0ca7592af4233ff4cad5fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c64257d66609e1d14a6da7ca8289b400710a75fc99e73c536226b9c37d6386f
MD5 ef3542bf53c6b15a414563e08f116409
BLAKE2b-256 b1cbf5e6d16617956563013c3b846cb68d590be357cfb5b6f0c86c5f0739f892

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc294aa404e704ba13389c17edeaef031d9d3507585717807c9fefe4babf601e
MD5 435aa6a3ac9decd83de869c8330e3582
BLAKE2b-256 c9aa13f7300ff736dd16894943ff5acdf21e6ed8a4c4c64335f8b71194e7ee1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dfe5d44f5c7f31fe6f6a78a71a35cc2b873a2946728acc3dd037a4eb3aa6cb9
MD5 7f651a8236c76a15c07a60933ece4014
BLAKE2b-256 199641929cf13caaede1adf4a978fcae694b61fa677a4033bdfad5e3401c86b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b49d52764e68223fc9020b3b35dd0552683998ed2d82d158188c0ae70f37f796
MD5 fef059281c8bd38d0d4c8d4320354048
BLAKE2b-256 494cd549435d1aa0dfc931afc2a370a24fc3c7f05cf56d946ee2f744ea616396

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1272111129763eeb9d41a1f00d4df1b5ff2630ec1d0527e06b7433d2b27f0906
MD5 6c913e8b0c7a64de8e71e13ed7d9085a
BLAKE2b-256 20800933ec71344442baf3023c3172154994fbe75c18125ebfaed490ed5b33f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file file_re-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for file_re-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 937e3936309e9ee71caabc6073d932d7974f276c3eb1cfa8165fe7ac8d392482
MD5 f1e88f0fe385caa183dbbbf353c702e9
BLAKE2b-256 b28af97b443c26ea1cd34881ad55d2c2058fb4b363343dd893803645943b8ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: file_re-2.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 855.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 89709d614923cd4613249d794587a9b6fc1c8de653b022c73e9960c4221e9bad
MD5 ffece54f47c1145ad310eeb1a43ff5ca
BLAKE2b-256 be94661082e986d53a9ca0b625cc1b151463348c457e3218e1bfbf190324d191

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51f386e02ec64bac46d1f69e9e758e1955fcd145323535205509f56bdf8a2f02
MD5 78e28fb37d523bc5a049de0f6d96b4f9
BLAKE2b-256 446502017c0ea34586be52ade49641f479ba10d968bd091bdbd8e0853d0a5bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39461bbfd562448a5afd746d27c753e577130cb77d6f06cf97187fa08e3453d6
MD5 740961c2d739c13c16846737cb796bd2
BLAKE2b-256 be91c2d768054fe657b88bbb05a89a57610e8a6fa53a15ae56fa61d16af11690

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14a8fc981ec62660b68a2154a8d2bf8cc4a0d0dd8480f2a8f6e4207d9c5a9408
MD5 b6c0f47fb6fceee56178a71484967125
BLAKE2b-256 213294ab4374d913a4f25472be254814b07b363217c2ba5d73ea4e3d2469ecd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0838fe7f151312b05cde3ca35fb6c7b9b7df03d000ded90a4d2a2e1a0aeb61f3
MD5 a2cdb32de28c2bbeb1a439b107005607
BLAKE2b-256 38f82b65ad480d3a75d3a1832882d9fc39f86f6846cea248e0df615e580e133e

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d707034ddf87f88d62b76a7f7091be0bef344be7e54e120c960c0604ea8113d
MD5 7e7520a8596da5aa91962a3d0c6f5e83
BLAKE2b-256 c3f4648f4186605168eb27f13ee27b1eb295a16f61cc7697eb3e2317fb53cdb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7486260cad7431fe867eff60bf2ac0a68f09109cdff3fbf18718212024644359
MD5 4b0f3168d14434b9673ef2f97b672756
BLAKE2b-256 e420b676b969d9a9c2b394883afbe7963b2c7e4134d7662c3cf9de4f2c5ad612

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e77af48800b9b5f3b504c15c4f3e0659d2834fe7b9a5c41a308bd9aa1731449
MD5 d35204fa2d9fd1fc33ddd5b8809ad11f
BLAKE2b-256 5cc3ab338dbfdf13a6732c193224f6eea566cc64996d88884a709e7009c9cef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84632d5103d8b3ecb8026a584eb216c440c0589b0aba83fa0662300e6e40b751
MD5 0bd4de152b69a98bc7ab561cfefc9a4b
BLAKE2b-256 b7e8d1e20be5bf765ff3c5236b932fef594c16ee8ae927e7db131c8f95f2315d

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f9f93fbe21a603abca58fd22f48d9f024ef3ba99ccdb1ac2d3b4e742dd58eb7
MD5 a4791afb857fd4f4f61f5cd4ee3747c8
BLAKE2b-256 27f4fc1c959efca54571325b9c26c030eea49b5df437dfc66e319f49382eada0

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b4dcd44edd31936f180b7d5246d6682d0dc73a6e08e7647fa96eb372fd6fc5c
MD5 432660772400c89fe19f979ac6932030
BLAKE2b-256 218e9695cc55b986bf27d0cb81c749bd67397a766441d60224e1c60c7fb465ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1df1b3d32733683d810e42a90d19f90b4c511fdb69f7d358d2f4178c711fc32
MD5 462f838a0e63269dba2ce9dff5472308
BLAKE2b-256 ded160eb0f554c06fb545a760cd1508a67ac4000fe9fdac9b94b2126a173233c

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78a455192101ff3ab484d2cbf0f2070464b29a01968d9d2325e2b5c265a532a3
MD5 273c6960808533aef8939d9556dc4a09
BLAKE2b-256 08bc9ba7da62118caaab9ba18aa99dfb20c622e3adc369add8764c68a771fd8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: file_re-2.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 857.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8734f9da70e673e9fda370e78e3e86a288f07fd96a8a3093dfc2826fddc17b7
MD5 9ab88b31927f8645bf709d24b07c2463
BLAKE2b-256 c1087217db28b8c3c55e03f9aa062248edf6437e6f3a38b7522f4297cdd9ad5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 469d9323124a58c3fe25f86faed6b285319125ced94bf191ed1cce0dd9f2e3ce
MD5 30596ca4d2cb19884c844215915542a2
BLAKE2b-256 e9575a25211a83b220a48869ea270e772fdc769e90d1f3e377511236bdc95385

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bbd2e6e35923a8ab8271a0af6c2e3e1ab1ffd8f8261e08120a2f9c918bbee00
MD5 e1588d69a1e783e671d3bcf161d2cc98
BLAKE2b-256 027c809f81a9daab60f765e758c9b7fbe41b8f31e70cacbc6be72c281acc38c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c513a208a8bded346c52c33eb42aaab975cd6d28ce380406d49fff993ad777b1
MD5 f82ca4147528d156c9578914d9dcef83
BLAKE2b-256 613e17e8101a4c661eebfaa9ac42e3bc74ad61a8f6988848855683208483f2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0dbc11510188cd49365fc8e52c20c68cb84518ae56048e860cb1987de7e3b4f
MD5 50f48b049f31b4b460c3c2e52f18da4b
BLAKE2b-256 5222ade73183316aa7680196465dcc1bdf794e66d57780ffc36c86fd2008c209

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 789462ea31f6e74524d03a11d912951ac120a58e2202b230cd901b308a3cf502
MD5 63d2a9822b8deae6480cf412775642e2
BLAKE2b-256 5067e10c77ff47055c7e2ee6317529adac86b9b3c677536f4ffa13e50b9dae47

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6679918b101a63b4ad1c9c43a254f1419890e5c6bd63671b7d30abf8ed93eee5
MD5 4689c2ed159f92fb8b239876d494e937
BLAKE2b-256 7d4cd7b4528168e394f04c97b75b08519d0ef20d16a06dd245e0440d1c51a84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e647a7dd5c3b0e96cb5cc4090acf9537a9b47bc25d5f8ca2650f252458e31368
MD5 d3631117ab834c7939302d7506045195
BLAKE2b-256 daf727096945caed2a4c1b50a891f25c413919a855f438fdd1f2f2d09d0346fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a28d6e25c530def3b241c49d4fda2bbaf161f1373b0bb953fc04226f18605b06
MD5 a1fe89133d12113d8961251b358c9de5
BLAKE2b-256 b5a94150bd51f47258827ed14474bddb064291d3011429aed7cbe9fe25c3d544

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee73ee7e223d1a561d64e03b919e7ce3462c2645a48463ba9456fcbf11fda276
MD5 1c9eab9444c7f891dbd5ee3e86075a94
BLAKE2b-256 0f72a2cae3755c917b02bb50867b06202483e9aba3f2bd85db19ad5115825153

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7dc0161b79d65ce484906e83a932b43cd74241629caea254c39215fd6baaada0
MD5 1e7817d6f0e6440792e9573578ce289f
BLAKE2b-256 a801f96a4b94efa357fe226e8b9d13df5d9612cc1e24bfd89e552634b2a05841

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 659714dd34fdc6e1dda6332fe26a28ef099bc4f0e63c877ea489093de1596937
MD5 a80cb0da9019b9bb13d320268c95f8f8
BLAKE2b-256 99b11acc990f477c3ffe199dacc013bc92c995a2e1fd3e186d35bd3cbe8a77a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93a609e17dae7d2d9fcba7d5e7d7a9be3f7463cc21ea9aa8530f918435baf315
MD5 cb703a4864482c96af67a3fb745ed832
BLAKE2b-256 82df17c295ad8c98bc9a6d5a737cb816ddf7b596ab8beb86211e28445663709d

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: file_re-2.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 857.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for file_re-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4961de4d96eac9b70aa8a5f01cc7a857a3422f750c469e1eb573a11df87ea656
MD5 66af706a330079606dc623c6fc8d302a
BLAKE2b-256 fc92f19145e5ad24620170d4be43bd0f8d5f18dfdd696adf9e0a8c5e9061841e

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f17d9b3330ef69e8e9bf7b5c8036e247d4cacfa614f1fd7a358ef23952ef1143
MD5 8857c4d7445411c44452200a7838977f
BLAKE2b-256 0bc23e9f6d897acd2245ebda39ae21b5dce260b59c055e5dbafc1e04cb5eba64

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f419c9db0c884d1faa593167b326253a342e892667af077012d6fc2c7b719565
MD5 09abe98e6c3b5e156fe3139e4e6de7b7
BLAKE2b-256 bd6ae5ffec283a49533cc151a14d8f573106ec253ea34e8dc9d59ace996cd64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 735834de50b0737c0f1ff4df32beb16db75c729edfc6e896c116c4a924accac7
MD5 04436833a59aeccd86b6a5b38bb1625e
BLAKE2b-256 9def3dfcda321bcd2437daef765644114aa4c0458ee5d7e6a9d9ca8ed837ecad

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6861ba018c049213a3ea655181b10b1c8c729048ccd0c93a51718ce3cb39157f
MD5 3c284667944bb5458629b9de32ce1581
BLAKE2b-256 a01e7e7c802977ecb6796d24eb500bddb7bc52e5137b9e376df4442253eb0e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d49db720bd28e3d015e59c0aed6c24ac10c8a1a3ad80d16bee33e345d406ad
MD5 4cb769a482cd96dd079acc7268e7ff3c
BLAKE2b-256 7f968157a34a41f3be06868da6aeb7c9c004176b45bae0bd767a5661d3eadab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80885992c263093bfcbaf23b1b3942b26cfa7e6acf1a3402dcb47a55e5bb79e8
MD5 44f5d60c896cda5a49540028665d0597
BLAKE2b-256 eca15c02d25b2e85c1a114552ce8048ce2705defbb72c77cb8f8bd0d9469f60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70609c461f1409218db0c6c2e69c4821396403fc6cf0ed5b908486f1720d2d5a
MD5 720a771eb78dca00805e64854d480363
BLAKE2b-256 62d96e36f4fb3773e3f3a412eef01bff3f5476e78132c42426981523647a513a

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5b3b25a3f882199de99f7b2eb5c2fec49a62deab2f9a842cf766e4a00a756eb
MD5 0fa7d7d28abd6c286db0522f39467460
BLAKE2b-256 9ef8bc6dc41ba77a8a5301a942f78544352a0e7b35e05f3c217c5d68ee8a319a

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e302655fe86bcfef47ef386a72eae5458a7c9b3b8a242145c53e34e1fbde0fbe
MD5 c58f6883de7b5f9ef069c1ebdb731382
BLAKE2b-256 65e73d0b78a6e8254c852191202a2d5d962eb78594a82edb555c5849fea1758f

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15f42a0e17b4c3e5f795c40b95974d4bc60ead49053523190514b1589790575e
MD5 d64f451014f1caafd57fc953c11e019d
BLAKE2b-256 b43e1ce147033efdccaf7cdc11db2d74e0a2843ab5654259308e775e36880aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce9465d976a026d85eb467a2f6452fb0611c7ecd365b791c4031bbf3e9959ef6
MD5 d78e559eddc7d8748e81d595fed5864e
BLAKE2b-256 48cb62b6c23e0456ffc26913dd32518055d4465bcbd8303a7024e387e96990e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ce407405d79868417c3e398b516eb144f39c527843fadee5fd93d9cb5ac9a10
MD5 7f357bc0f5a29b4351c14befbefa16a4
BLAKE2b-256 119b55c90f747b9a26c3da313b16ec0b9be46f259012a1842f7208fd23e494a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c8babb2685c8f1065144d419e6c926ed4e04b4e9db6f807646d92c310bca432
MD5 da2ccc8ebbf9f83887105a6bf7591c34
BLAKE2b-256 f3929795f7d6ea7d0b6c6c0eda1b97b06c39a273901179e0778442419bfccbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a668a577b7c9efb59a906a09eaa48fe54d519c1f09b0662cdabfefa9eb0fa24
MD5 1887e439e2838ab5849a724c4f0f6276
BLAKE2b-256 83f071c5eebeba16f1976b9a3e71d97c70012d86c39bc0dc2e5736ab624b72c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb7f9a540f19459ceeb1d5ff8b82aff939c01ee9224e3581e05191b100e9462f
MD5 f10bc2ee5b1a06de85782eb770cb503c
BLAKE2b-256 bafebbcafce3dcab909d2500918c0135a787f4b467235ee4fb251bbb1ccd38ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81a44801b3ead6cd9cd6096143fb1e2bfa0de6cdc78337936724f25d9e0fe2a8
MD5 ea03f8bebce1d58d5315f03fcb7074b9
BLAKE2b-256 b623295fc6c5884ee358502528791b55be1008f9eb87cb49e53e3ab721baa787

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a943cafc690115db0f983bcbb5ac9b508ae5b99de6b5ba949ace28b6a8372ac
MD5 5fed8d71d304d6b4d750079701991e66
BLAKE2b-256 5b1522f4fa80a246713c7e05f326f54b56072b3949170c94ae33ffef07c48a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 977151b0a3af34cc9c7332d667833f7010bc724e17c4b8752617dfded77b9dc2
MD5 ca58e93e1a7f6c3b1d8c70a1c78eee09
BLAKE2b-256 97989ee84773615fedf1b3896b7a30269a7f478000ef39d535ebcad65827d147

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79d5c4a2e294d1ced2efa2645cd704066885b537fa91112c5857b435865288fd
MD5 3494feced7d3ac4e7790f00067be650b
BLAKE2b-256 b92665c82b7f382f10aacdcac3f076f2b5ea2f1bb28d6021bbef75b53fb653e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for file_re-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a83069e88a0d582ab3ef14888266a9f4a361a794486fd3f519b154251e475c89
MD5 917ed321ff9a2010a90a1c1b1edc0272
BLAKE2b-256 4f0e8286e7e9191de28b229d2bfcb0a451fdc168a692f3221a0869089b0b9c85

See more details on using hashes here.

Provenance

The following attestation bundles were made for file_re-2.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on Janet16180/file_re

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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