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
.gzand.xzcompressed files. - Flexible: Similar interface to Python's built-in
remodule. - Memory Efficient: Multiple modes for handling multi-line patterns without excessive memory usage.
Usage
Basic 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)
Compressed Files
# You can read directly 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)
Multi-line Patterns
Using multiline=True (loads entire file into memory)
# For regex that requires multiple lines - loads entire file
matches = file_re.search(r"<body>[\s\S]+</body>", file_path, multiline=True)
print(matches.group(0))
Using num_lines (memory-efficient sliding window)
# Memory-efficient multi-line matching using sliding window
match = file_re.search(r"hi\nword", file_path, num_lines=2)
print(match.group(0))
# For patterns that can span multiple lines with longest match
# This will find the longest sequence of repeated "hi\n" patterns
match = file_re.search(r"(hi\n)+", file_path, num_lines=3)
print(match.group(0))
# Works with capturing groups and named groups
match = file_re.search(r"(?P<greeting>hi)\n(?P<noun>word)", file_path, num_lines=2)
print("Greeting:", match.group("greeting"))
print("Noun:", match.group("noun"))
# Also works with findall
matches = file_re.findall(r"hi\nworld", file_path, num_lines=2)
print(matches)
Modes of Operation
1. Single Line Mode (Default)
- Memory Usage: Very low - processes one line at a time
- Use Case: Patterns that don't span multiple lines
- Performance: Fastest for single-line patterns
match = file_re.search(r"\d+", file_path) # Default mode
2. Multi-line Mode (multiline=True)
- Memory Usage: High - loads entire file into RAM
- Use Case: Complex patterns that need the entire file context
- Performance: Fast regex operations, but high memory cost
match = file_re.search(r"pattern.*\n.*pattern", file_path, multiline=True)
3. Sliding Window Mode (num_lines=N)
- Memory Usage: Low - maintains only N lines in memory
- Use Case: Multi-line patterns with limited line span
- Performance: Memory efficient with good performance
- Behavior: Uses a FIFO buffer of N lines, finds longest possible matches
match = file_re.search(r"pattern\npattern", file_path, num_lines=2)
Algorithm Details for num_lines
The num_lines feature implements a sliding window algorithm:
- Buffer Management: Maintains a FIFO buffer of exactly
num_lineslines - Pattern Matching: Applies regex to the current buffer content on each line read
- Longest Match: When a match is found, continues reading
num_linesadditional lines to find the longest possible match - Memory Efficiency: Never loads more than
num_linesinto memory at once
Example Behavior
Given a file:
word
word
word
hi
hi
hi
hi
And regex r"(hi\n?)+" with num_lines=3:
- When first "hi" is encountered, a match is found
- Algorithm continues for 2 more lines (num_lines)
- Returns the longest match:
"hi\nhi\nhi"
Limitations
-
Default Line-by-Line Processing:
- Memory Efficiency: By default,
file_rereads 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.
- Memory Efficiency: By default,
-
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
findalloperations for certain patterns, it comes at the cost of higher memory usage.
-
Sliding Window Mode (
num_lines):- Pattern Span Limit: Patterns cannot span more than
num_lineslines - Match Context: Only finds matches within the sliding window context
- Overlapping Patterns: May find overlapping matches due to the sliding nature
- Pattern Span Limit: Patterns cannot span more than
-
Limited Flag Support:
- Flag Limitations: Currently, flags such as
re.IGNORECASEorre.MULTILINEare not supported as function parameters (though inline flags like(?i)work) - Future Enhancements: Support for these flags is planned for future releases, which will enhance the flexibility and usability of the library.
- Flag Limitations: Currently, flags such as
-
Parameter Conflicts:
- Exclusive Options: Cannot use
multiline=Trueandnum_linestogether - Validation:
num_linesmust be greater than 0
- Exclusive Options: Cannot use
Performance Recommendations
- Small patterns within single lines: Use default mode
- Large files with multi-line patterns (≤ N lines): Use
num_lines=N - Complex patterns requiring full file context: Use
multiline=True(if you have sufficient RAM) - Compressed files: All modes support
.gzand.xzfiles transparently
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file file_re-1.2.2.tar.gz.
File metadata
- Download URL: file_re-1.2.2.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f7ba4e0c9d61661dff7031501a7cf0b6e9a135211bea6984682241edd9565ba
|
|
| MD5 |
ed6e2fb30d571b3cc0a064dfcffb5cfb
|
|
| BLAKE2b-256 |
846a54f6a8bda294bdd5e1f3e07b4db278ecdda73e6b36df4c1339a7b09b2d21
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bfb6cd3e889aceba5efdd2882dc3dd8d5b122d78bb8fdea29f288c664e54b9a
|
|
| MD5 |
3c169cbdc23e82967a6eb6fd90df0236
|
|
| BLAKE2b-256 |
a6fb1014bba830132d657b1717c2fd0fd058f7073121ff94a09ed83f42b7b8d2
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f5aa0a246d58f246ebc82b74eb3b307256e62c2ec113383d4f2ef9cae40b573
|
|
| MD5 |
f6b53263483219a14b964f8a7ebf1f80
|
|
| BLAKE2b-256 |
31589c8a785663d3a37c3458261d99580775ab97f2c770bb3f200c4136e8d915
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f567e1c76acc445215b0f27364761031ba063c44b0e27b624f9554f2db187340
|
|
| MD5 |
8e4fcf39adad6a9cfb980a2ec60d7453
|
|
| BLAKE2b-256 |
82dddb542665471636f4f36824581c3060fd8c1e067893bdd42858c3207a9cde
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
709e9ff70c6656bd8c622723d70aa761af76df3b2d93dcd8dc880bbd1497bdef
|
|
| MD5 |
0ca8960f8240da2824940ee33e487f2d
|
|
| BLAKE2b-256 |
2a610c36d7dfba5fb10288bc836a10e71c6dd43502901176b66431422e7e7115
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01a0aea3ebd807f10f5b189159f81f17fad3391987b40213e134188bee94d7e5
|
|
| MD5 |
cf3322185e9c118013c818120307830e
|
|
| BLAKE2b-256 |
6bc85e46dcf1957083b578db6d1247ec2475717cf883caa913508dc97e874602
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd374de25a291646c297d2de29b7a3594a8f1c89c4fc970afb03db70070d7b84
|
|
| MD5 |
ba64fdf825ad97345983de1195df7564
|
|
| BLAKE2b-256 |
57107b4616695f97074b4f6b07ddbcb266eca92280bdb8a1779dd23f8fbde52c
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a2526f1b4c09131e700452943feb26512ff102eef64d60a3fee2bec87f4fa83
|
|
| MD5 |
0795190b0b5fb304cd150b78dd9a7bb5
|
|
| BLAKE2b-256 |
2e9507f90eea9f4033dd932ae258e82f6a1aef2c54aeb315ab4ec69e96f3adee
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 996.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca9942e0f6caefc9a4feeb750daacc5e98f5c06cb7bcbec41d8054620f40542e
|
|
| MD5 |
18aa8bfab002f5a9024d135c6f553917
|
|
| BLAKE2b-256 |
d4cab55ee611e2f1806b32ef23470071d962761f8c8aebe57d2322667d83730b
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
577bd2912dc871e519c64c6962a079079415c889d6ceed367d32a2667dddb574
|
|
| MD5 |
4b2d69b97e91e58751a027c8e68e6645
|
|
| BLAKE2b-256 |
e1b076585c87a6376ed9add4a010474f892f48bee77a7f8f2d60990fb17c1ea1
|
File details
Details for the file file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99298d38da86b3a078693b19a58f87c191283d65c4c5215ad7e2166285dac32a
|
|
| MD5 |
6c902d816918e1d1453e257763d6e95a
|
|
| BLAKE2b-256 |
100de58cb9b74484096a7bfec6f3f643d05c839cf1d15c7344b0ab52ebc082f8
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1187a8af66e0f96f57b32bb509ba4df0c055b8a6ae4c2b7370afbf2a0b651e7a
|
|
| MD5 |
ab7fa0fdeb5fb9f5b9daa2d47f1a5b53
|
|
| BLAKE2b-256 |
2c3159b4ade001498f2a38e57b8c21a6f19a6c850661a69e680b9414446c1bdf
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
652aadc16f2b7c5b51f66bc3b68094d422074604469bc2a785f388530b9eedab
|
|
| MD5 |
e9e685395186914342939208839c31b8
|
|
| BLAKE2b-256 |
e4b211e00ad11d879aef68fcbabfe27d6166c0ac4cdfeb241879d4f1ee7b290a
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31ae7935ebc38a19b2292a1ac6aec050c0b1f279e91a0c51ef0ea35f4045ab22
|
|
| MD5 |
e3ce2fb74f5e133d61e5fec9b0c06fb0
|
|
| BLAKE2b-256 |
ca4c1110b649a1e0bf2d2e7356a5d8626caff5de037b753e65c4c81fa3efa45d
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c7dd7e9eb0689efde65f53029a8c0d023aeef10822807b996d32be930391998
|
|
| MD5 |
3a89707a38c08c4c3b70e3fbb36b4561
|
|
| BLAKE2b-256 |
de79c7105ff35a2a61424983182c20904bd83b637879bd42c17ba25f0a4882c3
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51a7d38ce77ad10b53315327d1c1df40a4f9e5f42546908195a3c2f2537cf689
|
|
| MD5 |
de525c2aad01e39bb1eb7eb18c27404a
|
|
| BLAKE2b-256 |
ee273ceafd12230657e217f822efa055785e2753b2efc4dc6fd7188e489acc54
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6970bd065b6edec27b7ce11139d57a8e3546462b4e29bcbb3ec77ea3e083913e
|
|
| MD5 |
2b0b50bfc566891f01c78a3c0a9662f4
|
|
| BLAKE2b-256 |
a32f2110a6108786c83cb3e0ac576600e9548d643f28fd50419e9659c4d455f9
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
758277a882716f3341edd556ef483c14057d864746ddf3a244d50b0a2fcea169
|
|
| MD5 |
ebfc7c019f49a01e5424094e9a2c9751
|
|
| BLAKE2b-256 |
96047aeead3b9b3b9cafe055d81fcfc239ba9a98959dc9662022431f397fa8f3
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 996.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27ab05e624bf84a4b5e9ab93e733fdc54ffe0af94014e893c0768df806d6c373
|
|
| MD5 |
f966942c8b6c6ad72729e85459e2f0ba
|
|
| BLAKE2b-256 |
c95b0fe5f922536f801ceab28d8fa5978c8feefd4cfaa2c352f7db39def51dc7
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdec7ab2ef650bb0fb0ed6c8f49b0a79007513ab17860d43b9bc0083ed869370
|
|
| MD5 |
0e4a283af29b012d1a303dabd11582a7
|
|
| BLAKE2b-256 |
9e2d45eb2149df2829d73d480d9a3fc81df1b9f53d94a806fdb7abf049cb0ca9
|
File details
Details for the file file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b4d8c169cb9d46976d2b7c788a755355aa32d2d6c65a291e4504646229a416d
|
|
| MD5 |
119cc4c4b6440dc75f88e3e59a7f3414
|
|
| BLAKE2b-256 |
8086d44d2cf4a5397d14ad6b0500cad37b6eb6600140632eab3b768f87557b8d
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1724d779fb9c72eaa44b9c4e94a114de64ced12b93284bb9eddcb4bf1b784593
|
|
| MD5 |
db5bba7143c9bf2700ce68dc02680129
|
|
| BLAKE2b-256 |
9772cc623e7021ea89d054cd4fd9a65d0e1b21fd5827e679874a2db9a3f383dc
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c0a108f8fed7a2082dad1346dc3b1e8ffc694c1649ad03158c9a75b9ce7d3b9
|
|
| MD5 |
ba3b2c3126032dd47af763f3bfd82c0f
|
|
| BLAKE2b-256 |
563f2f831a45a9c12380ad46b247a77c75623713ff464d169229cd4fdf945965
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4476b12ab8b6c6bcaf7cf56036a4014063f14967d9f86307ba17126ef5974313
|
|
| MD5 |
1d95ef9fb5bc77605e315129045f50ac
|
|
| BLAKE2b-256 |
a390dd52e1eaddb4ad36efbac864037063f2678ce05142ea1f5f5886cee84e91
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd1838eaa8ba1dd6207ab33af8347a0f575f8e91a13d1b298132d969d1acdee9
|
|
| MD5 |
ead7573010d5ad674ccb98c670cc53e2
|
|
| BLAKE2b-256 |
4ef5a49e6b5e0f19e1b87e3d48a697184d63e9367d283e6299839e88baf0b909
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef1634e1d6d2a32f7ca16bd51d05a826447913ebe856b739b609c9f31f4e24c9
|
|
| MD5 |
1bfdd669fd4e8dd587dc1710376805e8
|
|
| BLAKE2b-256 |
2722572747e5fe3da03dd7e0c4e6428cb781f84107a1a2e5c5c142488484c84a
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fcb728066cec86f66edceb1833738cb41ec976e8a4334e1f0d49d7a63d26904
|
|
| MD5 |
4b2ebb679493e6574992321a91445528
|
|
| BLAKE2b-256 |
1225c2c05538f9446a9ddced5754f485deb73824264909bc66e04854bef52dce
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 997.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a633572fa956792a761e031c30c8e9858fdc9d343f0a45ce776278bfa1a80b42
|
|
| MD5 |
3725e473a1f84dd13409f0fd74ee209d
|
|
| BLAKE2b-256 |
eed2a35c91025c42fbd56a97b6a101f22ec8a5892120cd51799ee9093ea51809
|
File details
Details for the file file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c61983dbc01e0aaa537ea6c3ba30fdbabca40a8b46c7aa2fc511fbd69ea969aa
|
|
| MD5 |
e722cbb4256332874989e700f0f6106f
|
|
| BLAKE2b-256 |
760b60c8e37c32c5b4100e06845302abaf6d6e8925c657b663b71863f318aa92
|
File details
Details for the file file_re-1.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27fce99798f7d30a74ee653c7e2e47a3ddbbf529e84ba5ab961b236ef9d05cbb
|
|
| MD5 |
5b52092da6fb3de645a607a3638cf10d
|
|
| BLAKE2b-256 |
6f9b6e77b5564f4ca6c685b3b1af0c12526e3c2e525e4b9ac7f0d2d1a2155c5b
|
File details
Details for the file file_re-1.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d010523b8cb90a320e6a00fbc807ae289e896900b26474b77bc62e23cd5f0495
|
|
| MD5 |
fe85ec344a2787862f303141c5357bd0
|
|
| BLAKE2b-256 |
b6ba8c760c0b9aad252c9e1314d13d7ffc9ccf8787cc9588feb2e413434ea0f5
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
908a595312f8fc6e5fef295a961c8b9d630e72cc2ab52815fafa46875d6a4170
|
|
| MD5 |
21105de059f2df26d43d5405a64d7191
|
|
| BLAKE2b-256 |
a56233d018f3e8a7ca57271d78fdc5a8fcf09b299be34ca54ecc9c3a61a44bd6
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49c86322525a9d44fdd68d280b01bdc87d631316b9356bd5636a83d69e318d72
|
|
| MD5 |
0503f588676cdd354fec55d964245548
|
|
| BLAKE2b-256 |
887d887b20c33fd1de9c9473b0086a6d0e4f29c7334abdc23ad53a968916fb13
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f2ff77a2c3b42b01b1f05e9e7210f33d7c045eaaca49c769ae18274e8fdd4cb
|
|
| MD5 |
32caa9f2ed13d96294fdb58e7eaee6d4
|
|
| BLAKE2b-256 |
a17a6f529946ad6dc2fe00c2a3cdc3874e652f63b3f03c93ba82bbc9ad73fc50
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68d125dfbd57920e6e0c83f2b31b219a02f45d674ae6a0294a2df54168a68e26
|
|
| MD5 |
d855663227ad361bcf20646131df5b96
|
|
| BLAKE2b-256 |
50cbd4020d2a771d24febde501df0ae4a8448259c9d7ce827de91f9d4b12cce4
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5c978125bef318d5c6942f81d8016b0d9490813da1e47664759e11fcba47a19
|
|
| MD5 |
736cfca2a0107e205488a63fb9f5fd30
|
|
| BLAKE2b-256 |
9a272ca51bfb42c47be7909e5c74a6b94bb1ce9f73224aec03717bf60cbedd9d
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e48a6913290613265a06d864826ae903c704802d7b9a2672ddb9d9c48664ae8e
|
|
| MD5 |
3582b546a3e6eef8b900575c1af1300f
|
|
| BLAKE2b-256 |
06ded07fd6dd2f40cba3d9ac15a042237f35160ecede347ee976a1392f063cd6
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 993.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d9056679d1b63c61520e11a313a7d5056b031b0e9b6a49e4a9af3219c949686
|
|
| MD5 |
99d16fa4ab7c51f9d104c324086f2fb6
|
|
| BLAKE2b-256 |
990c3f3eaa878fa7a18e7bc1b7b2c9380c9718ee3eeac30d83f2d0d4012e905a
|
File details
Details for the file file_re-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9246539fb552e5f4674f9bbd945a9ad322d4561711dbeb2b920df85d97289315
|
|
| MD5 |
400e8b1d9dbc03deb3d2a0d41a02d0ee
|
|
| BLAKE2b-256 |
0361a8e6f40442cb0127952d8648ed42491b9185521beb8c9a589dcd54d06bc2
|
File details
Details for the file file_re-1.2.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 828.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fc1ad0647ec0ee1a5fb249a3f9b6aaf49ceb01053046be54f951614789a2600
|
|
| MD5 |
8999db16c6ca85c5e22018b514b64d05
|
|
| BLAKE2b-256 |
22b9e3191c0feb6f4cd1d21c08184e914727dadcba57de72e7eb4221367621aa
|
File details
Details for the file file_re-1.2.2-cp313-cp313-win32.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-win32.whl
- Upload date:
- Size: 748.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cff72876fd3128125aa9c43b7254c749e5c8a07f48b254cf8c20593d4843e61
|
|
| MD5 |
507fb13d9b96324c0aecf18f5b67345c
|
|
| BLAKE2b-256 |
032db8b24c59de7efdcf2d4f04127016c7b1761873878c03e5434af0a04462a8
|
File details
Details for the file file_re-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92c4058929c6ae14504bec36e8773403a357a1694fd3d0d493beea21fbc297b1
|
|
| MD5 |
aebac102af3d2953e754572c79a3b09f
|
|
| BLAKE2b-256 |
ae2e139cd6b359f1c158cf93fa2af205ca65b9bfede2ee1df3a8255647ab9b7c
|
File details
Details for the file file_re-1.2.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a77cecc035d834f94350f77a65a325e7fe14746c7efa1a983ef442f919d8b154
|
|
| MD5 |
53c2b58eb58fde4ab894236469e1306c
|
|
| BLAKE2b-256 |
f4bd6d336a72e404a9f6456c78c63a13dc56b3769f47da573c3b2dd3cd288963
|
File details
Details for the file file_re-1.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdfd329e7fe0f440544850f5b22d28e0009d85920d43ce5a7f46b4d695371df5
|
|
| MD5 |
ccc9d8cf50dc51c69c01aaa210d0a12c
|
|
| BLAKE2b-256 |
11dbeab6f45e2b9a0e9b2e4c8dabb194c389ddc7f58a44ba54ef60003c7e641e
|
File details
Details for the file file_re-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f07de7fc2938de3beb507ea642d77d9740d7f4852e3214ac3477c8ae31f137e2
|
|
| MD5 |
631aaf525a45ba375d2a3da40d0b19f0
|
|
| BLAKE2b-256 |
8ee6217fd7a217ba8a55eb0c28d3a184b9f6f2966df853a88b8a0a748d513c42
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b1ac0db89aa0364234098d7881250aeb8299ebf8b2abb6fafcceb6b1a1ee06d
|
|
| MD5 |
a9915bb35f4541669317fc7c098b6b02
|
|
| BLAKE2b-256 |
08063944632255458770f7f95a70c5bcd8ff7dbf9a39ffd45fd72f017aab9352
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
310c94dc101f6bc91aea94352da11be5e8a345770261fd6d6b672b0ee515deb9
|
|
| MD5 |
6f6e36c0ada64a9abb2a585d2760e9ee
|
|
| BLAKE2b-256 |
7c67e3b20843890a7e886ab0149456c7681e1eb9f90fe3577182b984584b0164
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aef03cf68be1e8abda4f3d3513c4a8fea9eb34920ed9e3c6a6d757787bb4dbfe
|
|
| MD5 |
5b56759b0e252533a5d0bf3cdd0d5ede
|
|
| BLAKE2b-256 |
b3988bc7d252da6db1194a46521e83e32077eb830d06f5f2d0a4afc474e60ae0
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 993.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14fdf671b15f9c09ff3a5ededebcd8259acef9dae8821ef83193c6933487045e
|
|
| MD5 |
663bd1cf8f6727e4d1bbc62355f3f8f8
|
|
| BLAKE2b-256 |
8c269cab1909939a11f573a20e256e9cb90a1376eeabaca699fa8d19ab16141d
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e46b80a420336ad9224751669785f6524120c8f8d1e273ccaf91679e83746932
|
|
| MD5 |
88de67adc5ba583254e72602c5b12695
|
|
| BLAKE2b-256 |
6ea823583304db81f452c1b72c38c53a69a444cc06c95a6ff3f7ead6fb1664bb
|
File details
Details for the file file_re-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb6e01f33d1957bd8ee4cdd55b0ecc1dc779dfe42975c304f9c9fb9263ad498d
|
|
| MD5 |
75edcb62695f8c17d6f41f33e13f1158
|
|
| BLAKE2b-256 |
6401829b4f9cd7aedb387aee1e8a1bf3c31ca46b8ff82a8c4b769b26cebad411
|
File details
Details for the file file_re-1.2.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 886.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e332c50f2a666e1a63cb651e8cb28f7b94dff6b1bc8c052a208641b4b29303a
|
|
| MD5 |
4bf77168b9b4f479e6d33e828a7a9917
|
|
| BLAKE2b-256 |
63d3be8d5b883f2e02d8ee5475ae53ec0023357e089b56bb2c6b0c954698d039
|
File details
Details for the file file_re-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 941.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
013db3c75cd7cfc781882492eec8d06e7e71a92832911aa578f7f8c7519e432e
|
|
| MD5 |
35e0d54577dc8d6acd4252a2a29e141e
|
|
| BLAKE2b-256 |
4d80f00185c8bda989de9b13de252e4b1cb2ec712c28d02f1cfc2b8dbeba3099
|
File details
Details for the file file_re-1.2.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 828.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2b51c58c7402b425a58667a0e8c0f4c6246830cf901115c6168fad53c623049
|
|
| MD5 |
7e837f2a1cce4b60edaf903fef80210b
|
|
| BLAKE2b-256 |
cacd22ae429c3b9f133558963148fcfface80b713a6560373d80a05640ab88bb
|
File details
Details for the file file_re-1.2.2-cp312-cp312-win32.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-win32.whl
- Upload date:
- Size: 748.6 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b39704cb1cfdd2055de099989616e058e68464e13db1b1f315a0606a38f994c
|
|
| MD5 |
da30ec7621dc4635e542ca8e445b79ab
|
|
| BLAKE2b-256 |
b3482c76eb1ff5cb4158ce1b6bba0334ee17f87220316b3b1c466ff7b94081f2
|
File details
Details for the file file_re-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04769f0bf449da6181001241ea71c2bbfa7093a6c6d30ee99f97f834312e4845
|
|
| MD5 |
050b2e51717c9cac9e63cec0b6e92a87
|
|
| BLAKE2b-256 |
82e6e0dc934d237c4607101f01e42178393f8562af363d4f1dbc96dbb4d6c83c
|
File details
Details for the file file_re-1.2.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1287741634e91f20689a7c1f895fd1d358cb49550d9e3b78a57591795012e603
|
|
| MD5 |
9c41bea7a62d9fb91d044bd19ade8ba7
|
|
| BLAKE2b-256 |
5bcea6692fe31c950a32ebc347c23d724749ae6558c5beb56bbebd5390412856
|
File details
Details for the file file_re-1.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef4e0dd2fcf79487009c4f39adc698b643281e0e781cee3328d925d9a45cf665
|
|
| MD5 |
20e29f1b037f4859662ac4e602675aa6
|
|
| BLAKE2b-256 |
e644ea1a4a1f3c4077136e94be1ee0387b3f060675b38a3b0b794929f930bf25
|
File details
Details for the file file_re-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3de50aaca54d0c1cc19d31e95b7bfd7572a64e836db2294a8cbc61ac91380ee6
|
|
| MD5 |
e89c1c8ad5a8929deb9ee16eb0582f67
|
|
| BLAKE2b-256 |
9a7c58618b62f14faffa0f3cacc1f8de10f5f4f76c913f7d4d0ac4f41929d4cc
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07a1327120a5394fa1c80dbaee63a45a5d07399d44db3f63e74614a771b70247
|
|
| MD5 |
53ba041d61c5412e127c1c04ce558183
|
|
| BLAKE2b-256 |
cc4858c19138b181f8385553629faff9b89664355e212a5f5bc541ccdaa01600
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e455faac06b7aad07897cd9df61c5e67036bf3c39cc72c2f91ecaa8e6e19bdaf
|
|
| MD5 |
e7b367edbcf7a4d8a0b9e78431953c4e
|
|
| BLAKE2b-256 |
6224d66b1c53d3eca413dca4bd9b844c3f7c475d18fa54f8a553c4dc1ccda084
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c744990bbb96e34c1e7355f6df6b6380edd723dd83b2aef33fc1dcb1a84840a
|
|
| MD5 |
b068cf0b5f734084f30ac33905c13fb0
|
|
| BLAKE2b-256 |
764e3603dc195f1cbfd580ec27bff905a85da17238f4f2f523c4be7cff164952
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 994.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
269952b0c768813f0efdceaa46f663f5db442184aa1af1b065fe042b47c48638
|
|
| MD5 |
50252ad010cbdb1774104f57db4a0252
|
|
| BLAKE2b-256 |
5942653fb31ce49a99a5d6e1dc4b7e5f941ac80b28366a2360e1bcd87fe49a8a
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4d91dbb918f7b1cf7b71a28eeb871fd5eb13ac0a989635a991eda770075a503
|
|
| MD5 |
905e5f2b04128cc4c770f84e70819299
|
|
| BLAKE2b-256 |
e8591555133c4f1354bb1ed5bc9c355e6a12fe21750c946a1c8853d2afa76448
|
File details
Details for the file file_re-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
540bcb5987de5fb3cd7b6c4fbf050d9481d3d7fe11e336a35a52a2e91185f3c0
|
|
| MD5 |
ca74f8c63588e7578250a2135d6d724b
|
|
| BLAKE2b-256 |
3be4d0f3836897c5a2cc5f9d3baea0cdbab979d1c465742e6868e726e8a11768
|
File details
Details for the file file_re-1.2.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 886.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5adfe03cb0a5aa81de69fcdcd1929580b1ac959a401e048725e7d5295e2e09a8
|
|
| MD5 |
ed1cd5036854e5e93e7aad1e09b0e1dc
|
|
| BLAKE2b-256 |
bda30ae5fdfcf73a6b05a0761442d9a674d12790b39caad2844a0988afbeefd3
|
File details
Details for the file file_re-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 941.5 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c552057ef6a73e99a7fb502699fcc19efb11634ffbdfd5968dc3df690094c3
|
|
| MD5 |
c004ad1df0fa65eff9d5eb98b521300d
|
|
| BLAKE2b-256 |
34335e512db6e066d53af65e706967875738bd4f285949c6fadb191e27bb7e52
|
File details
Details for the file file_re-1.2.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 828.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3ed37f0775bb6f3834cef6abc4fcc45b9687807db629fa0dbcd85d97b44ebb3
|
|
| MD5 |
7e04a131a1166dd8724136af07f8375b
|
|
| BLAKE2b-256 |
ae26528314e984e2791f2d82876e88db081a2514cbe7f56d51ea9be2f6c996a2
|
File details
Details for the file file_re-1.2.2-cp311-cp311-win32.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-win32.whl
- Upload date:
- Size: 748.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8949d9ed141e587d35aaf299437c5de5cb12291ccf65469e861637cb1f17211
|
|
| MD5 |
597c1148943553d5674c42f40ae7e001
|
|
| BLAKE2b-256 |
5a34abcac9c2412aaacf9dc69c9f4767534709a64998655894354b2b180570ca
|
File details
Details for the file file_re-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83f6227e03f0e166993f660996ce542c5f7cb094652f6f1f8e93fd432c35c79e
|
|
| MD5 |
95536343c820c69786f786d2a483f373
|
|
| BLAKE2b-256 |
84229674cb5c7f3a8d400425c72ca205c3a8c863bbd566b4cd539b740092691c
|
File details
Details for the file file_re-1.2.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02a894bd1da162dac67c332d823dcf3eeb60902573d16481d463602c30d05742
|
|
| MD5 |
51fdae741b2988bf60b14a3d4367c013
|
|
| BLAKE2b-256 |
fb6126b90813c81a5835f1de35ca8c8d65bfdbbef5924b2c352b439415fa7edf
|
File details
Details for the file file_re-1.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7992bee80a1464b350b53ed2f9afa589ada490da795d3eb3f90489e969b4dee
|
|
| MD5 |
44de8619545b5855544afbc84554ffc0
|
|
| BLAKE2b-256 |
a2960f9fe13cfbfccbdf0337eb0fb0c72d89544446ea5f6a6d543dbe6ce0e2ad
|
File details
Details for the file file_re-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dab01ac6599bf378ce96d4c6dbde24e4759483e2c530aae523fae9714d339a5
|
|
| MD5 |
991124a38945f0662e13bb472c6fbf77
|
|
| BLAKE2b-256 |
d0a52ef209f6dc0fb1af2a64b2aebc9f6d9fbede1c76be0f1207f13df208d2a1
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87611736ff91730afff1b6f29978c7df2a2e3970afbc61dc0212834208868a07
|
|
| MD5 |
bb9f9f6adc4641d1593c7b4b0fa5dee6
|
|
| BLAKE2b-256 |
2f1d410361191741bc96675a82c1c35f3027e252f89ffad090b93f10c11b80e2
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a531029b564086a333aa8b9dab977cdf5763e964576ce9c79d432e5dde66b8ef
|
|
| MD5 |
c5cf3f18ca6ca18c0f6ff29dc6111853
|
|
| BLAKE2b-256 |
17d71c5eae3c604a502769d652e88b95ac832e55da94bf8f6673f2d66290a37f
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cf1af98a4437506c7b7612b32920e13865960cb9868201a5b4f85cb6a97985b
|
|
| MD5 |
917744843081d5d809c3344a7aa7e86b
|
|
| BLAKE2b-256 |
7728deb818c995f9d4b7e767420b9990bbdfe14592438f2eb27a5553065c73af
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 996.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31ebc3d30a1e3c8720178b6832f33cff2ed43ec06ee7eb706d98f8926c192f6d
|
|
| MD5 |
1e5fac85ecf117789a48347581e04bbb
|
|
| BLAKE2b-256 |
2e3a8dad180f524096304e67ee57ce11ea8e84554f784baed75909b6ab213722
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99f5d341fc7bb835d20ab8857f4c23dc91e47c3adbb2b4ecf2a6299328ed3102
|
|
| MD5 |
5078f627551adf748bc3e78aeb24a5c3
|
|
| BLAKE2b-256 |
74f297d6959d4fd5dfd8b17d1587cb270f1c54bfab4ce2b2e1289adf6c2cd528
|
File details
Details for the file file_re-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6398c4f46d2a4cbf446da23e2d17a9c6e3940b03e88cfed478fab589a2a970d
|
|
| MD5 |
515cf35217a1bacdeb073115714d8cfb
|
|
| BLAKE2b-256 |
0df3f0106eea1efef98668b5bb85b885bdecd24519826719fe4b98be800760ba
|
File details
Details for the file file_re-1.2.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 890.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f0bbac71b5598a1c84d535adde51890a23d806f1ace85be7a13e694c1f428b0
|
|
| MD5 |
1c48947b14bb3db153e52f7674b5d49e
|
|
| BLAKE2b-256 |
db19793e2b30a5721a669d998409c0320591aa37fccb161b7465e5887de3d90e
|
File details
Details for the file file_re-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 945.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00a82dfa66638ae3e8febfe692638be3b1660f751650844cbfa68426f1b9fa89
|
|
| MD5 |
079fbdaf1748002e2911b7dc06193902
|
|
| BLAKE2b-256 |
8fda539d65dfbf84501d76401feb76e5fa68f31bb1bcb73479d26434f325f785
|
File details
Details for the file file_re-1.2.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 828.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
766cabe73fe69d2cf3b5e0b678740f803ff19028621afe367fceb1d958e6fcfe
|
|
| MD5 |
7b90c82cc505a7c25d0e1ca2c78345fc
|
|
| BLAKE2b-256 |
e6c58522564b5411159616eccac78fdde34d9d756424f60272e1dd243d1aff87
|
File details
Details for the file file_re-1.2.2-cp310-cp310-win32.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-win32.whl
- Upload date:
- Size: 749.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
649ab4efce5b174a4cd5c413d4cf222a6e4d4201b0ff1274344a3b1d1707fe68
|
|
| MD5 |
80f43a7198240171c48a3a374e4adcc4
|
|
| BLAKE2b-256 |
3e2cc9e0aa72440237d3e255f220a5e972cfc56d577a87dbfe84ca896eb7698a
|
File details
Details for the file file_re-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc16c83a18c90397ef085ada6a07e20c65eadb43ff180f1c9db4abad0362627d
|
|
| MD5 |
102279edbf75910397b955f5fcbd0227
|
|
| BLAKE2b-256 |
79528f2a4d0a22c1f94b877d1394dc6fcbe61412226367e8da838f7fa20ed42e
|
File details
Details for the file file_re-1.2.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43f8a2dca0b61bb3fa1b1a966d79a326fe68531e227cf950ffc3139fc6907c87
|
|
| MD5 |
31980746fb1ad9d08a7aad6170a4f515
|
|
| BLAKE2b-256 |
2f87628b9f9101da7a71c38b43e268552e6663758c3002b780186e645ec36089
|
File details
Details for the file file_re-1.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a6d9942ea53047856920708abc3ba919007d54c1c85933f4aeba5e033fc2805
|
|
| MD5 |
3ef8a33ebaca10bf6ebe6ae2be0c1fc6
|
|
| BLAKE2b-256 |
1534dbb9aab302ad9f0675bbe10ec89ccf3786e1dd409cdc7caa33fe2ae781a8
|
File details
Details for the file file_re-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3e4ea195f2661dc5723566488b62c740f0f5c24b4bc8e829a17a6d083651764
|
|
| MD5 |
796141ea02cf2c0ba18a9610fd43ca7c
|
|
| BLAKE2b-256 |
8e0c9757bae0d15edc60f95cff5352cac9494da7e523f23ab5e87c557e0aa3eb
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5869d58c0ad956f865a88da6aa8e92d0b79fd3e5fd826d1a57076eb1ce393ae4
|
|
| MD5 |
fcbd2f517919fc5bb03bd04facf6a480
|
|
| BLAKE2b-256 |
383ffc2c8d4cb254f78556cc396730453ac3876cb1ab9069abbce33af7d4b180
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd4581c45db4f4ab5059d1d745ca893392dd8c6be02ea5648616daec47690468
|
|
| MD5 |
290f7ce7fff2991bec4ef16425fb6814
|
|
| BLAKE2b-256 |
1d75813e069438c9d2bbf8a04b59891b64279f474ed5ce01d6ba69be867196fc
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
746dbc35bd2e100a68132d9b34df8cee57e8c3b4771ed85cd8d96135b02e3834
|
|
| MD5 |
d5dafca0d2151a722c72d5204c4a4c85
|
|
| BLAKE2b-256 |
494b98b36f70dc4b80228f394353546317806fd1bd69890495fb1f8cd4c3a3e8
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 996.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2d5588692f09616ab6166a80217ccfe8aa946f5dd462065856fae2fa9264468
|
|
| MD5 |
a59df559b343ae4c8b2112b4f39c5e3c
|
|
| BLAKE2b-256 |
03950d8459a24409296e438e19e5e2a550a904376256474e3d30a8cb8f88024c
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f05b3968ceac629341c49d242c049d05cf19ce10057045193f163129ce7cc51
|
|
| MD5 |
c94cb8adb4037eb73a40714b160da8df
|
|
| BLAKE2b-256 |
f50b44628447d0d299b774854f311e04c04750a21f3c17e6144f184706b7b6fe
|
File details
Details for the file file_re-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63266d3cf8cf89b958f8bc60e673a1acf67fdee5fe56600c2bc0ef9230be6621
|
|
| MD5 |
7992ce2af664d96d3188a68c22fddd39
|
|
| BLAKE2b-256 |
b09662f68478250820e8c518da05990efce527a35092400f8028103c18ea05c9
|
File details
Details for the file file_re-1.2.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 829.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baa62b1267f74841bd93e270417b34248d787d9b0643c74f730831b4387ed70f
|
|
| MD5 |
b87a6a027454a3d3c89f6051f42a9b95
|
|
| BLAKE2b-256 |
85caa882bc82772447f6e1af3fc4dd1e53680efb7d55bdbc778e9190f3426805
|
File details
Details for the file file_re-1.2.2-cp39-cp39-win32.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-win32.whl
- Upload date:
- Size: 749.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2e97098c8363c50f9408ffda2ac38ce98612a7fb911951ad8f0c384564e64f2
|
|
| MD5 |
e177f12c77e7c1ab2da40f50fb281bde
|
|
| BLAKE2b-256 |
63a6cfe8f76a7b58bee1e829c94cfff8c390275734743abab3077eae22fa6fe8
|
File details
Details for the file file_re-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ea9d953329df58b87e4f794fb860df68f31f02396763b57c40e97c6d5fd4788
|
|
| MD5 |
9c884d4234cb4223412334dbef6136a0
|
|
| BLAKE2b-256 |
cef9399926e819fe6f7b56e081b56331494489b5673518a2cae80708359407c5
|
File details
Details for the file file_re-1.2.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b4db0506ed430396cd619e746280d9eeaf12c24c31a2c2735f6d90ea6f670b5
|
|
| MD5 |
ce2132ff19763e0782e005ca16c121d8
|
|
| BLAKE2b-256 |
ef37a806657a492bca07d22ca9ae1fdf9b9de65682c805275a81dd58dfc6750d
|
File details
Details for the file file_re-1.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f61831b0eb63b88ac38ef7236ca17331e0f6c1e3a323250a8b940471cf7d3b37
|
|
| MD5 |
7db9acbd2b22857e3e73e3fc12b1c03d
|
|
| BLAKE2b-256 |
757b68a853ccf499023426a16c9371343b26d97ac42eb3e78252ed86ce7ab93d
|
File details
Details for the file file_re-1.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b5f3e3b5b25b9d2abf39b7fc91739328913ff163ba1bf22dd46d333e623b37c
|
|
| MD5 |
80de8b4c3df2a916efea620036c472d6
|
|
| BLAKE2b-256 |
b2112d4bd4f152ba6f730ef141ff71ef5c0dd3347852bf4bcc2f2d1279fbc25b
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b7302ed6571fd964c60212026edb0d76538bffb595cef73b76b19c724af87c4
|
|
| MD5 |
34d9b82dfce4574d9b0df4f674f83632
|
|
| BLAKE2b-256 |
eab95950feb406e24931b9f35cc273ff36c704decd1e04338bab424a17abc11c
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58b24cf4d107f28dcea8187cd348bcc5618c12c5b9611ded7eece38e49e43b0d
|
|
| MD5 |
9bfdb133c5f5016ae02d8b446b01158f
|
|
| BLAKE2b-256 |
f7f77dd64a7fded0a1fce8c1a859d1680a188ccf7766ddbb0b0227228e79d894
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c19c87f541f5331fcc8807b5155dfac204c77cab6ddc7bca14ea710afed88b15
|
|
| MD5 |
ac1192fe6da06b4387fa100bffcf765f
|
|
| BLAKE2b-256 |
c81a863a439dbd9e541d28493da4429369c3255feca1a808d55e50669a7525ee
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 997.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94ab5a692c130c931018ced278c1a2ba3c93a598030bddefdc3bb1aff3733907
|
|
| MD5 |
18382cf5716b8a77b3a216fbefe3c010
|
|
| BLAKE2b-256 |
91d49762d3e9e836b794a3ff99687c386e67eedb09c635767ae0f57a341e269b
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f3c54d695fb5c43810eb4923e247d7853e6c57e7eae0ad0b637b327969e9432
|
|
| MD5 |
f2122c9a65dd5666dde6d439108d3a24
|
|
| BLAKE2b-256 |
a983cb8a31fa9f2213e8a01ba69a4df20b626d0f157556ad4509a8f560a77aad
|
File details
Details for the file file_re-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9538adc1c0ddc0cbe4126be8343fdb49b61eff1c1e8ba620daa51f867a09704
|
|
| MD5 |
bf556f01ae25914f47df6a653317ed87
|
|
| BLAKE2b-256 |
db12021e7be81077f36a460c977c21d080103f682f057630aafcbb99c8792ff3
|
File details
Details for the file file_re-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71dc50ccc8c7b15ee8ab46085d851c1a376795dc0bf62d5239145dbb84860049
|
|
| MD5 |
1a9237de17043c1582674f850484fc73
|
|
| BLAKE2b-256 |
29bb6afaa389918129f3f5f8bf6eb8f5980502708e8ce3a839a1768e6dbfed98
|
File details
Details for the file file_re-1.2.2-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069da0a7b5726e6f33ae33b1691c8382ebf37e358494db76297544586619d91d
|
|
| MD5 |
ff57f2e7def1c560b7092c6c2a0c6a69
|
|
| BLAKE2b-256 |
43e2f7e06f9b449683a0278526826446cc36c3602a3a6f23ec67284555382a72
|
File details
Details for the file file_re-1.2.2-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8b84f0ac95befbb8947b2f1ebecd66d0523235e4fd68ff47be0146b0b37a42f
|
|
| MD5 |
41bb092cd35ad2f9b247e8e22db710de
|
|
| BLAKE2b-256 |
936b58df9f5658f65a77511830b77262dd11958a5b15b7b77489d1c12fdea2ce
|
File details
Details for the file file_re-1.2.2-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e6c61cc451bbf860148a9dfeefeae60580aedd359409db7a2656278fa41f61
|
|
| MD5 |
236b2d871064965ebad02036bea67872
|
|
| BLAKE2b-256 |
cb8bc3d226ccd868c9004c32f788da3bd344d8abf7e8856f5fb66e4662b06d90
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b076c3c833866bc60329053afdb4c4db4f71d3d43afbe2c96677a312e98540b
|
|
| MD5 |
61083788807a95d20edbfa6d29fc0c5f
|
|
| BLAKE2b-256 |
b790cd265e6046d4ce029d76ab166ea7415284292e82cabbffbe0b106699b5b5
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3872a6a595c9db2c4bd3d82632763db5506b0201e403f84d8e4651dc932d6a60
|
|
| MD5 |
cf3409e8cbeaa4e2eb39e43d905ab091
|
|
| BLAKE2b-256 |
1fcdf1ee3086507e6ff0f9ab1bad3de0c74ad79512b910da53b24e4a2ab12a8b
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
733c32ee47bf2b5cce3a52672f9e82afb88086a23ef8ce0c2fe79f8b3c7c3dd3
|
|
| MD5 |
f6ca7bd2c84db82472f05504c3ed9ce1
|
|
| BLAKE2b-256 |
04bedcdfd1ac9e724100b95174d5bfd8e6d741d926277562688e37470f885093
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 998.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67393140586e296bcfbd9c14b25efa018a9b1d71e9f99cc50b577c96284ad7e6
|
|
| MD5 |
81b0c3c1009bb504392923d502c13add
|
|
| BLAKE2b-256 |
b360232895610b9e225b4e8779250adbee32a8663998ec9e3e565fd053719172
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b91cacdd046d144abad4808b87f367b7f59b13b48c18eac676f1d6b4a5b20030
|
|
| MD5 |
291739b3a65b7d25426758f3b440ec0b
|
|
| BLAKE2b-256 |
26b5c1674d2097d1240b19070984be417992784198c83408715d66ebef77bcba
|
File details
Details for the file file_re-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2e9a829bc6044bc10a5e01d583279b5595e959761ada31d479e386e61d17c21
|
|
| MD5 |
ba0386196e81e8e61c8e1f235b2eebe1
|
|
| BLAKE2b-256 |
478f7139e4b7f5dcd6818802f5ad3df839db05eeecc45438675366dabea462bc
|