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.
- Documentation: https://file-re.readthedocs.io
- Source: https://github.com/Janet16180/file_re
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, fullre-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.finditerfile_re.compile(pattern, flags=0)returning a reusablePatternflagskeyword acceptingre.IGNORECASE,re.MULTILINE,re.DOTALL,re.VERBOSE,re.UNICODE, andre.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
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-2.0.0.tar.gz.
File metadata
- Download URL: file_re-2.0.0.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a2d345cc721c4005665d7dbbc370c857e83afdcd7e1e9938ab0682435a0308f
|
|
| MD5 |
dcb183e06381eeb3d87c575edd579ae5
|
|
| BLAKE2b-256 |
2cd84f8acdac818d934ec7aa3e144cb9389f43c83fc2ad5a9172eef51a03c461
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cb31be2fadf125c1afe6ecc2958d2ab5c30ec58b01370dff69055c84cd42093
|
|
| MD5 |
b787fce766a883fe3e1b59acbbf176b5
|
|
| BLAKE2b-256 |
2c10c1cd9d124024cced49c7ee81c159989d68867da282644ad81268433cbacf
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e12ad8ea0f3aec9936fce15e110a78079e4f2f7673212a641d4f1ae1dc52f05
|
|
| MD5 |
041536b9efd97fbddbc5d593c40db981
|
|
| BLAKE2b-256 |
d799462607306973b8daabcbc410a2815c0949fe6fb9e4296e597e4f0892e339
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64bfcc6be66497d59d38c514e5cf2e3dda33929372d1272112e216dc5e508ec0
|
|
| MD5 |
a8c34adb5a5f237e75ec37aec4065db0
|
|
| BLAKE2b-256 |
ce09dad7c898cadd0f8d9e30f516adba4619c0f90ae0ec466b5398134a717da4
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d526140e2746565d2a5dc302f881cf40c75d1f3b897e033218503b0842f18c93
|
|
| MD5 |
7b90dbce388c64e028c071b3a0e2d177
|
|
| BLAKE2b-256 |
c91fed2b88d40fc041c4011d53b9987213a7637aaf5dbfb90801fabd043641ce
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03b55ec3705c0e254e0755a565085f915d315afd6b265521015e44aed5287149
|
|
| MD5 |
86ed230bc876507bb66ba24c3606cc0a
|
|
| BLAKE2b-256 |
8a97063f1667468a3790f6346993fe44fa25a36c45896de380417d29822595c2
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d1aa38a57ce86c94dab1c9168a13e262ac32292f55e610a661edda64fbb3b41
|
|
| MD5 |
8d90aab36e14effb753aacc344cef615
|
|
| BLAKE2b-256 |
dbed928655d8d746a08c6682f213a20d658b39f27db5d4e26a1cd9e8449352d2
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d40fee13b2eb545007de159d84a5730f1fa271c0343c0826261cb5993f2fddc
|
|
| MD5 |
d973dd21461a3d51be8aae5aac5be646
|
|
| BLAKE2b-256 |
775b801244af0fa05f11f1fa57aef6c59c8569c28c2aa2bae0b5475b0f10ffec
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6979f9e3476527ff5217790f967802c6c1ccfd082170aa8d060260d694ec4b0
|
|
| MD5 |
a07744f648079154d4c11e2a98d6ee88
|
|
| BLAKE2b-256 |
870cbae1bd4afdb5fab2a382d024ba2a2a66077a2afa5702317760a0adb2a0c4
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22a5b3d4de60a7acd72c093462130682b823e34db448765b7a46bdf13ce465b1
|
|
| MD5 |
e7135eace1c7f423c1f7c9f5566d225a
|
|
| BLAKE2b-256 |
16d363c07f4966c55350e6fcea0625b12aa972c35be4324dbb0bf135b7aeac25
|
File details
Details for the file file_re-2.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54b7b1bcb573588797de4d7d7ee7324952824276edcef5c4fdf166f797dc25f9
|
|
| MD5 |
a41b11c8bf3ffe7ba8290ba4de57e5fa
|
|
| BLAKE2b-256 |
34d51dbcb346cdca5639fd9ff7ce879a95be4d4e31c19322eaedde9f7ef696ad
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77056f7eab81fe48f27ed5982c6a695e3c5114f863a0183ac1cf011215b915b2
|
|
| MD5 |
0bd1c8863dd62fa77794f3438d22fb58
|
|
| BLAKE2b-256 |
2af3f90309af5ffbfd9cc2a7fde1697a31d603318597f44d5da778d9310975c7
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
256d8c2b96b82fd7e91ba6f4d8a3155255c6e0651c8dc0e5d598ad5536812226
|
|
| MD5 |
34018bfa1964813771bf213b29072887
|
|
| BLAKE2b-256 |
f2961d725923bddb396107191be1a8067376878a73d7cc41465b6b2728b8e4b5
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d85738f11a97ca139ea065c13ad09a708355f2f9ca5352f5ece38b2a8451537
|
|
| MD5 |
2ea1637813431a3778f01ca7f51046b7
|
|
| BLAKE2b-256 |
d88fb361b49194bbcbc22bab482cc67464d7c5e1db2dd7fe1f23c67990f32855
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4cff581d479dd22b423de2213b08b3eec48e8111b08465edf4e104816e57b73
|
|
| MD5 |
cf42accd71eb3f7d8c4ff535a69daa91
|
|
| BLAKE2b-256 |
6b9c066d5f91ee5be3af76f17fd413b2417f5be3331dbaf3a15ec52e764b98f3
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fda9c40a08ded029c2fa82a66b9a6e711b06035f2c1f952c2167c809ad8fdf5c
|
|
| MD5 |
64db26d74bab9baf8a2b19d6d6f1246d
|
|
| BLAKE2b-256 |
da7cba4611397ad896f4b965ad67993d5137a198679e10c974d00f9b4494def1
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c69df0b8471e729606126eb8a56dbb77bbbac815aeebf9db66d7e2f63bce5975
|
|
| MD5 |
ee9488aeb065e53008e664857e9c7dc6
|
|
| BLAKE2b-256 |
dbb6e827eea56f6accb80d5723b4459de31d126ffbc14a5145c89872c6230c84
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c14beb96c605eef4db65a6d95aab66adabc63a0716ad31a1d12a41e9ec7a0bf
|
|
| MD5 |
f38e46cd88b398f0f6ed83852c3a190a
|
|
| BLAKE2b-256 |
6090d1c7f098960c5ac39420c5294588e2bd1cd161c90355c366bef420edcd60
|
File details
Details for the file file_re-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d24bb78937528d582a8d8feff27191d00ad8cea878f91e4766c211e51387d61
|
|
| MD5 |
2834a2cec6e6f0e2d82e7fa7f85352d3
|
|
| BLAKE2b-256 |
de1e4cff490122c7b845f3a24b453de30d98a62c8bc9c26e5f18c1615a34f198
|
File details
Details for the file file_re-2.0.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 855.7 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50e0f1953992af8a10925286186774bc1a4941b6ef1a881329b0621c856c32d4
|
|
| MD5 |
8b2197ffb8c5d3504909af284376b3cb
|
|
| BLAKE2b-256 |
92d610acd631e69b39bfc9bed6969ca401bdb12d075933692886e59f3916e714
|
File details
Details for the file file_re-2.0.0-cp314-cp314-win32.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-win32.whl
- Upload date:
- Size: 771.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbcda31d123c75c90e3e6e19781412917b0e97d4c183049d8a386d82d9e13f59
|
|
| MD5 |
f252c17c652c56c43ba58b2756ba6008
|
|
| BLAKE2b-256 |
9b63f4f1d51bae8b6a924a2a3a64d95810ab2e2969913d39599afb0ada357018
|
File details
Details for the file file_re-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f820119a4467d9ffd12be067bdbbdab11824a44dd64f5de735639352a622af5
|
|
| MD5 |
fd003e4f0ddbbcbf3f822812c5baacd4
|
|
| BLAKE2b-256 |
35cf57f2e52e482ec213e8dbcf7b62cfb8b91cc25556cfda2b8b2add020989fe
|
File details
Details for the file file_re-2.0.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e93b4f7ba5c177497aa101fd4ab804cd16b34d11d6a25313c2eb0a383daf16d
|
|
| MD5 |
2a2cbd4c4e286f8a956c283ac81166f4
|
|
| BLAKE2b-256 |
bbfc90bd54834826ab285151efd902406e88eacfa6b91c52e715ff4cb4bb044b
|
File details
Details for the file file_re-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80d299079eb4eb389a13e4b7d444417edee3aa6c639b794fd234f086c9fe4ebd
|
|
| MD5 |
b6c66c1f2e737c6bd1aea4dc1439d865
|
|
| BLAKE2b-256 |
f21dd8cb3ee4a6ff44cfd69d15a8295f41d293a68f346ced2c1556671e098b1f
|
File details
Details for the file file_re-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4a29c22210594d11c26b7d0458bb5e994654a73258e1f3393ad11fb91084b82
|
|
| MD5 |
3ea107544e22e48dc7ffc74f29dda999
|
|
| BLAKE2b-256 |
c6b793d3245f244eda2e5bbf3da5ddd36760bda1683fe1e712f7a4274a80234a
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07e23067b58c09bd9002e7e04c190dccf2712a4ef0d6530d2a555f577350a591
|
|
| MD5 |
9883bdbb2c25695f3f9b2327165bbc67
|
|
| BLAKE2b-256 |
3b4fc409c6365514423b8dc0cd27366e02b59af2d28ca5d94213bbf491a08e49
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
735b2c555d45c64e9226f782a9f3ff25f5a4a7aeb70ed4bbbf9242000b5b0797
|
|
| MD5 |
3bad9c8d6451b2d0984ce074495b0a49
|
|
| BLAKE2b-256 |
9d36becca2d0e8c2205d295abb2c6d9717ee654fefc8befdada8f02e9156d91e
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
006b72ad9ec6ff03a05ae1bc7be47186c136b1a9aa8b89bbba7b3ce965d27655
|
|
| MD5 |
69adb01c6079e4afd7ebe681c8c02c15
|
|
| BLAKE2b-256 |
c93633fb0349c23a64056e809d2565e6c4f9200da7bb1e9a85c284ba931249b0
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a75e47278275dfc8067a2b955cbfec1c9e406638463f290d0bb3a514e836f6
|
|
| MD5 |
90d5fc3c1d78ca4f23c24d0007ee9f82
|
|
| BLAKE2b-256 |
2fb993cb15348705c96faed612cd4ae39549468f3250167dc98a3baeeef8ebb9
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8db940cec674254af6c2d88caafe72065c30a5687c613f5a2a4a2d1a22d7b5a4
|
|
| MD5 |
946a15d1d92438d1b54ca7a94afa6e0c
|
|
| BLAKE2b-256 |
6c44270e0fe0d8474a4f6e13d75c4d533ab9ed48be71a1339534cb2bc63dcb20
|
File details
Details for the file file_re-2.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca2abb39fe9dcd6319542f26352ceb6aafc0a18e0c7f16a82701266f03bec226
|
|
| MD5 |
fba6c78d2b228d8913be2e6403dbd055
|
|
| BLAKE2b-256 |
3dda16ed2325816ed7402e47f8f0c05d7041abbff2c057c9ccc8a0d47ebcf1d2
|
File details
Details for the file file_re-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 908.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85060bf3b229fecdd3668c8adb85ebf6e21d5e0a7f66d132307fc6c671f45aea
|
|
| MD5 |
54f69048aeec8592246814caa6439e1c
|
|
| BLAKE2b-256 |
9be0af5f2635b0f91859e79ecd5f4a7631a7bf3d93d86c5a38614ec659b60af8
|
File details
Details for the file file_re-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 985.1 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b721c3b1ff80a295e9274089e022bc84b11d04eebedcc83668b92ebe85e5111
|
|
| MD5 |
c4547cc0677261a0bc16e41fa7b68236
|
|
| BLAKE2b-256 |
282892d56d20d7c1d33feff03dc5d3dfff7819348132694b089585b3ed32a78b
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae163cf0ea2ae42a26c8d9d73333f2a256fd438db5b5363746cba964d822803a
|
|
| MD5 |
d5a74bacaa6bf088475c62833d369328
|
|
| BLAKE2b-256 |
8ad48207acaf2b50e772e9a33570340196b181953950582974f246af020bd63c
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d66245d3b70a43f91f58917c6b0f82e4760c4fd959b6e8bceff10eaf827d34
|
|
| MD5 |
ed5e0aef7ef4bacc6adb75a74a11e504
|
|
| BLAKE2b-256 |
ac788004a59b072ddc2204216997c5878ade47bc7d755c5a984c2ba49470c047
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05bca66eec7d4ee2d72d5890048bd2fe39fb48aab84e4748ce03ca24ea8054bb
|
|
| MD5 |
977681fab9d65218d2bdd1e1995e998f
|
|
| BLAKE2b-256 |
f58483fb679a3f02709c65a46c5ffe94038a3ecb829e2623be08158e939085ea
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46b91243bd5d2894bf2f8a5084c83830f7bae752206d8e437bdd40316d95e38c
|
|
| MD5 |
b6923f57a49453acbaa92e86ff08e005
|
|
| BLAKE2b-256 |
66921b9d7501f38ddec869bbb70a2d23f500b08dd05f9e8e3786cf1fbb79417c
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d91ace3b57c7b9ca62e7b0ae9484ca4726b4f3dfba0827b949f25913139a0a95
|
|
| MD5 |
3d7042a8c14715cd583a46be601815b0
|
|
| BLAKE2b-256 |
8a90b8874b04f7bcbd2c313f76488028248c1877056152609dc6ac42cd983531
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb21af4d5d083a73aae12597bc71d8b76a0d6aa74de5140ba465e2f215b5c5b9
|
|
| MD5 |
5dd0921d1abe612a0562fa9e47ff42c4
|
|
| BLAKE2b-256 |
ea083055d89c9250f9e0ef120703075019dc060df21e67902e0d72b944cbfb54
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4611619741db2d6d510081ad7d832fe8159b6c6c75b9f0d699155a6c2bd49888
|
|
| MD5 |
4feacbbde912e6cbc88d7cab43f7eec9
|
|
| BLAKE2b-256 |
3c6cfb1fd1fb9cfc378c759e7468fb7a88ce32bf423f24db90f9c51c45e37631
|
File details
Details for the file file_re-2.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c05162ebaa4e65c412a604c776f55e9cc40ab8123d6c2da97e5500d1ab5ad45
|
|
| MD5 |
64fb83d212cb3e302ab2ed6f03d8f03f
|
|
| BLAKE2b-256 |
82e9160f69320309b9501fab091d6b5ac15d4742928764d9d0250c328becf7cf
|
File details
Details for the file file_re-2.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 855.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
472843fff0f5b8ce577711658dfe70ed3963862cdd5b929d5699dbcaadbcf409
|
|
| MD5 |
216c7723e461a9a9d5501371aae5df5a
|
|
| BLAKE2b-256 |
cf2279985c7c913329b9bb82672fab6c2363aa833eeddc5b5caf086a7827c7d9
|
File details
Details for the file file_re-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
590c1c255d2a4f98b65745aef9e63df9282a7828d771e14ea9352a3a6b7ac6ee
|
|
| MD5 |
fd161a85f65aa98d33f7508119f4ef33
|
|
| BLAKE2b-256 |
f628dfb5d7df475fb5950160749d0a020fe08e8e626a0c4cba546e4ca20fe47a
|
File details
Details for the file file_re-2.0.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5388980219027ad3559486fb663c19ea0a5e0ba283b35f90d33e5b42d36978d
|
|
| MD5 |
0e22e3647537d593cae54dbe1b4369be
|
|
| BLAKE2b-256 |
70d2ce302921e0e2c597e2a595f649abc7c48cedaba03744d90255668537a260
|
File details
Details for the file file_re-2.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26b10d844c090d2263072682609020de29363decb0e8cc4fe2bb21910a644789
|
|
| MD5 |
3edb3268e7e796e8cadca696706d725b
|
|
| BLAKE2b-256 |
1622b5f8d623ce1a071949ece536806db89acc7b865ff1066b12858edb0df282
|
File details
Details for the file file_re-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e36c61f83a8e1ff1bd94c0418a550d8b82e6ed1843a0c94c639949ccd97b27f0
|
|
| MD5 |
0456e5fe9450de0e690d6d4a4d66ffbe
|
|
| BLAKE2b-256 |
92bcc95aede62b69d1d2ff0b18dc2c9b236aeb67f5d6199cca55a91963633dbd
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
208697aad8ae3f8fae90e13a4aed40d0991bf3fde6a92ca876761d6d67e195fe
|
|
| MD5 |
221ba6b425b8484016a0d3a0f32a0f11
|
|
| BLAKE2b-256 |
388d93111ae7143c6c6780f4fdcb23859f3b829a6c9cbc1e996108a68ae2061e
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b149b20b02f2807e2fc6fa245aaaa346e379ce5625a5a448c0aa40fd8c4c8abb
|
|
| MD5 |
2d5e503db8f10a4862f42ecbf294ca65
|
|
| BLAKE2b-256 |
16e5ea354c1b396c000dea0731dd0c12cc196e3908c8438c7a1b3eff35187709
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4234328666e2d0c7f539b04a87226e10934bc8e211eb57d2751e313490475905
|
|
| MD5 |
07f977894c66cbe31edc8dcad4ae3cd6
|
|
| BLAKE2b-256 |
175a0009ccc4b897a5bce3ff0f724483db4788847967a8b07a521b89e9a93cb6
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d38552f45427a426c6ee03d952226db2285692971d30a3822d069a51f32fce8d
|
|
| MD5 |
b42065d58d3ee3f7c4c8155467844171
|
|
| BLAKE2b-256 |
fcab4bdfd053183a6170baada6cfa60d6e19ef7dce12a781d0baa3800e3bac4e
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89a644c4927e19e744571d5263562be418f66222301c43875295524737e89342
|
|
| MD5 |
7dcb75d0080ffe05008c9dd52db6856d
|
|
| BLAKE2b-256 |
cff03fe50a09177da0a1fbe04391bec4f8200bcde3b712da5163c7556c61e67c
|
File details
Details for the file file_re-2.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a31b5ff4c9535bf64586760413c666d318010c0458a5a418685cb54db961c7b
|
|
| MD5 |
90d7679232e7c871f1f2872ad7fbb79b
|
|
| BLAKE2b-256 |
374d02c1092bc4d6579a58baa4cf152da75f2a923148e71c92462c422e58de33
|
File details
Details for the file file_re-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 908.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fcde53faaa8e145af732df74e90da247c07ef8a1287236451a2f82b47fe351b
|
|
| MD5 |
6043af8267fea53cc3a3bedcb0efd6de
|
|
| BLAKE2b-256 |
fb049b9835fc2aafd895cb3832be710309fac77bbcd6b618f3eaac5e60a55a68
|
File details
Details for the file file_re-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 985.1 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aae3da11fb69b92cc287bc521e154d58d824d540829c7e5af885bdf5b4ac7cc8
|
|
| MD5 |
8d738b70caf8ce08dd284fad780d8057
|
|
| BLAKE2b-256 |
de6dfc11f6d037a843102dd274a88c4d460cf1fc27fde69c02ce222124aaa993
|
File details
Details for the file file_re-2.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 855.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f91a7188950baabaf9cca868312e2e8ddbf0b1e6109117edaa0576664fe774
|
|
| MD5 |
fa407931d3d6e3f35bbe00ed5965d563
|
|
| BLAKE2b-256 |
0ed4121a1fc96dd0e7aa00457c13267b9b28f0f41858431deac267d26d3db0a2
|
File details
Details for the file file_re-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3528508eaa4964a5e43192cdcfbaee7846ca697048943d446da543623a64731
|
|
| MD5 |
d2bdb6f15fb8cbc36c8f0282da26b1c8
|
|
| BLAKE2b-256 |
c7fc590a6d24d4d06b7a5494f8f93dafbd6c9a96dde9c13d230ba4fe3aa66c74
|
File details
Details for the file file_re-2.0.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee1bb4a039616033bfd613a9b34d7ab0ffdae8d1a5fa600842da516398fc89ef
|
|
| MD5 |
76baf24b9adac32fad9c318988204a8c
|
|
| BLAKE2b-256 |
77eff650b46e5155a7722dcc75d23af1a2eebaf32aaa32958560f5878fc6b4fe
|
File details
Details for the file file_re-2.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
452e4b8f8e7076e66fecb5ce6dcf1e7fa3b5ff0baaa59259b747ec2eba0cc349
|
|
| MD5 |
667a2f6cee1a0c46deed258fa4f132d8
|
|
| BLAKE2b-256 |
798be35eb1b8337f9c957b105c6e08a48feb04f7ba5f84bbe9558300543e7125
|
File details
Details for the file file_re-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f17d7eaac0fb42ede5c05c1b4134be6888cad0842da365b37e5a648901fe8314
|
|
| MD5 |
5cc05fa02dd0029d6255c299a484412d
|
|
| BLAKE2b-256 |
57d19551935739602ed27c9a85253827d8f370b2d42c357bd52244be647b2175
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290df170e94748a95d781643a7f1a58843badebc148977fd8abba4209438a5cf
|
|
| MD5 |
f53b9269b11d5381911fa6f223453ce0
|
|
| BLAKE2b-256 |
957a9cc724da9d16f52a9258de909f1e35d7f6a6e77f716dd6a64aacd16a982e
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b2044dd98ec3f4b2f5a0bc2ff00e8b4c839cc9040e56a7634e1723941f4ae95
|
|
| MD5 |
915dcafec5efe823967634e789547864
|
|
| BLAKE2b-256 |
ba6a12de3721361702da0d7505e809148e8f8ff0fb7b57c6e076f66fb6e69002
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47b962092c5fc4c550f03b6a2f05f3921644b0799b9b96be0d6768e4b98e871
|
|
| MD5 |
205106336b63669e080cd70d776d1deb
|
|
| BLAKE2b-256 |
b56b11df2ec45c63e68063f78058d104c67f974db0c4ee49bade84abe53ed810
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f934e7d6345a955c7c33161476cd7841f7e064e17ba2bd57ca215a7ed300bf39
|
|
| MD5 |
ad5356b4fc8e81317593ad205b645373
|
|
| BLAKE2b-256 |
bcbd86d00f1874c133015e748d11bcac71f636a946fe76bcaef97e5fb8862e67
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a76a39104343eaf9480a003f71960e5b0bce14d28e22f53e139a9d3119c627c5
|
|
| MD5 |
80c5a6a4d4b2c6fbcf86e5ac9430ed53
|
|
| BLAKE2b-256 |
58088f67b9e3fddb3f710813a1bd2db8ff89b4c0a8c712614507a798d8c7384b
|
File details
Details for the file file_re-2.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11ed692fbacbd078171fc479db2dbc38a8754c89cd551b49f6de982b997ca85a
|
|
| MD5 |
1a39a4dad12762d63d0447b19c2065cc
|
|
| BLAKE2b-256 |
63bd45657724d0eab8e55afc6c790bd414e1f7b70b8973defb2e196cc0b8b99b
|
File details
Details for the file file_re-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 908.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ec175fe7b5b32ae5260c0730d26e1c817f85ffcfb447b4fe9cdf27a5decfb9c
|
|
| MD5 |
4f3003a712d38fd8029e441d5bb90229
|
|
| BLAKE2b-256 |
6a74a503d913fc7e84ac237f32f76ac19bd23076aed08f2903f2a3dbf466694b
|
File details
Details for the file file_re-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 984.7 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8596077596bd61fc254c503a26d5c11fd2775e85e943b811bc90a4147b4686b9
|
|
| MD5 |
85a9d62f483bbb59610ec9ea12966cc9
|
|
| BLAKE2b-256 |
183927aaaa6e97cd56e34d753f34bd6f28cb709f9d4c997942bde5258a9cee8b
|
File details
Details for the file file_re-2.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 857.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a48bda0bd3b79b2496394decf7cdf29a22208337e7848537f73a80f4b7f321e5
|
|
| MD5 |
cf1785a1aaa9c4b6fef1f285defc42c7
|
|
| BLAKE2b-256 |
7e8e8128c9d86f37ac984db78fe9a17eeb54589ac83e9a07bb8d233e49e2f0d2
|
File details
Details for the file file_re-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cfba02dbb8bd0565eb40021a475080893cbb2614d89ebcbb9aa6022167299cd
|
|
| MD5 |
015779e4195c08c4a9d65608c8c45c6b
|
|
| BLAKE2b-256 |
e07148b90c183d31c11557773fc5a7c519b175b11e4c5802c2e21ed6cace3b93
|
File details
Details for the file file_re-2.0.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a7d8f89b5f9d74656bf82fe9f9e5f00cb82b9c2fe40a3519f13f8e28039f86f
|
|
| MD5 |
fe31dda7988eced48810a744541d8306
|
|
| BLAKE2b-256 |
ca5a98232738eb5289e3b7a3ac839db1b1d21a3aa556dc3ac49126558a9306b0
|
File details
Details for the file file_re-2.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa29c1d30b0595ffba414a1b21e46b0fc5ea6b66422bc0a5803b98c9d23d39af
|
|
| MD5 |
8dad8ae80a7b4ce5c5c4629a116f5dda
|
|
| BLAKE2b-256 |
fe46e740ba5d02710185d039e0bedfd495fb293719388b17c9c0ef567c0c71cc
|
File details
Details for the file file_re-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d11fd87f2176c258eb6cd8efd9c7eb99708d667f1dffb0166d30c3493ce2f4
|
|
| MD5 |
3dfbe90ae990bd1375dd40285efe4b0a
|
|
| BLAKE2b-256 |
a52214e78fa8aabcae37383d95f60dfd0559db9f8031188620c805a6a0bf9c59
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41999b2220da63f3dccaf235028129914259d448cdca257553cae1ec197d07b2
|
|
| MD5 |
fe67988aa626215cc1492716d1aadda6
|
|
| BLAKE2b-256 |
dfe18a57b20c80597f13e9717d88e59e69a90263064cf6a626f8fc9f18238ad4
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ead4ce68cb4e917fc487e0594efb0474b7c3c1c7a81366304ac091d5b614513
|
|
| MD5 |
21a5dd056ac331379210b8cb26d37a14
|
|
| BLAKE2b-256 |
4ad45f0e63e2ac95f6fd0f986814311a747dac994137eed895685de4294a6d89
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5eefcfade8c15943df13e47e6ede6e292c13898fde13db74ce9ae7a6107d46d
|
|
| MD5 |
7cb5b79595ac3543f15c7705b886d62a
|
|
| BLAKE2b-256 |
f8ce8c01572a438775b33528a21c3adbf3ffe4056a20dc490177931485fb8c4e
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc61d686e86e5afe43b7a4fff1fb3fef970cfd48f42668ccd1080b0a9d180df3
|
|
| MD5 |
1c8c94bfac4cdbc0501ddd6ecd5f3bfe
|
|
| BLAKE2b-256 |
5ac335f4c6a3ea3dac4f87ff1f449864f6a2f3892b6f3d5764a0d12392870d5d
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6967c031f1f53301f645921ed2ab134068ee5f335a2de78f05ccc44d74fa36a9
|
|
| MD5 |
5cc7d5c1cc45803938149a709c306f0b
|
|
| BLAKE2b-256 |
b18fad0896be489b29612c82bc0e0f47278552b3f5985e5c87536a2612a94ac5
|
File details
Details for the file file_re-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9165dab340aea1678a29c006ca80315213918a02c89292a204bae539b175793c
|
|
| MD5 |
21634ceb4ed37b6c9e78050eae65ddf1
|
|
| BLAKE2b-256 |
838fe1317777f9f00a9925c393e15e233dab26fc6f8b29b3fd533abf933fa334
|
File details
Details for the file file_re-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 910.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba3180189aa4f2f9012d3be9e9d9090b09bc206415298bff619644388ae90f9
|
|
| MD5 |
ac713d2282209d7a3261f6ca8cbce82d
|
|
| BLAKE2b-256 |
eb91ec11f9e06a004a9798efe36f14f2c7fa50e3491afe7efc03bfb724ae2770
|
File details
Details for the file file_re-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 987.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37a0b076d0058bd6bfbbb799e651bbf3dbf73fd6f709e82f3cd928b41ca82885
|
|
| MD5 |
67527d43e731e7383d3c0d3b7ab51c7f
|
|
| BLAKE2b-256 |
a19f01bcb883ce6588e8241484017eb7961f05a0a19c8fd704636a26052c8d9a
|
File details
Details for the file file_re-2.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: file_re-2.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 857.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d112c18d9057ca75c42441024630a92f22034f4013a7d21887177c00de89a375
|
|
| MD5 |
7334c7dcb03bbf4dbe6732a6914ec255
|
|
| BLAKE2b-256 |
f16baa2ea3106d079c0ff1d89e22f458dc35bd0220fc16d94d53d8f3b94efd5b
|
File details
Details for the file file_re-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8abd8ca9f37ef8000a7617e36591d1aefaf474f3804def2fec266606cce2b1f
|
|
| MD5 |
8aa791e3312dabf72f81a53c5f01118c
|
|
| BLAKE2b-256 |
81e8a01f34f197693d655e6a0d56c5cc52a11bc089b920691c693d97e75ac404
|
File details
Details for the file file_re-2.0.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5847edd7f0138cfd60b88bb6298aafb65def2db9771526b01517ead50410069a
|
|
| MD5 |
b5964834a355be880008da212ba60de2
|
|
| BLAKE2b-256 |
a881d3b8478f8fa2b372f5840b3c748aef013e5d58bc2bbeaf9fd3798699d1ab
|
File details
Details for the file file_re-2.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
077a3e8b82c7d7bef4d9ace795b1c57f65ba6deb7e861aeaff2284a64affaa14
|
|
| MD5 |
22611b85daa247315b649398bf7ece41
|
|
| BLAKE2b-256 |
c7668506c83b766b99d44599066377aadadfbf3db798596d1fb3055597915a9b
|
File details
Details for the file file_re-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3363206d2b7f92b2cf552c75707217c3743bde53819fc9b9a45d2f5d05926625
|
|
| MD5 |
d824460757831b88f4c0d9202e7a4138
|
|
| BLAKE2b-256 |
cd2aa31b8ef8fb06296c0c95d89bc67b7454cb2c4831479783070468a9b6ea27
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d48aa9147d7ec116b2f33e80a478f458c7f2e833dd6584fe8222ae030371c748
|
|
| MD5 |
87137f2a21c559ab098dad705a3322be
|
|
| BLAKE2b-256 |
40cf11879900bc0fbafa616d4dd8c9d888b28f654aff04fb3d42c32850aff4a5
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b3665997dda1fa53defae854a2811c3cbee443f0235fc19757b82114ce7a772
|
|
| MD5 |
060fbaa46d55781ce0055620e149baf3
|
|
| BLAKE2b-256 |
6def5b8382a329b47fa54ecc6b81db2ba3e23d4f356a4e9af54927dc643255cd
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee52f7d260bf43603dd0ef3921a3bc5d5e5099f6b53144dee47cd884fb75c909
|
|
| MD5 |
43519e03670db28f3f3e161f0d1908b3
|
|
| BLAKE2b-256 |
e8fcfc685026d353c2940f81dac45bb3cb0cf1adcca1604cc6d612c1b12f0c91
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4fa2e8a56d84b65e3bd8030804cf3cf49b5a1c05d8c78c2df91403423bc5f85
|
|
| MD5 |
d387ef4f1d62fb1f4df82d7720e69372
|
|
| BLAKE2b-256 |
85c27c89a398ef296eca93d8fad3ed35f6fee62e5fc339b6ec720e1f9db0bb4c
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
756a398f08d177e53f7e070a3ede99d8ab697ec3a92d66b878081ded9fc7e7bb
|
|
| MD5 |
d5947c321ea21b73957eb2c9417a65d7
|
|
| BLAKE2b-256 |
88004fc467aa8c425174020416751f3af14b891796ba6074af3b857c93cddb47
|
File details
Details for the file file_re-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b818343e68f85a3789b4a4235aa3c3b3edc2018f0ccbb71f12cf0c1b84d4cdb3
|
|
| MD5 |
656db8ea73e6c83a271a28b297943afe
|
|
| BLAKE2b-256 |
da94f1bc2b0ec3203c85b793fdc3471feb1b89668f3e861d9da4d2fe0eaf0c57
|
File details
Details for the file file_re-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3949e710f59024475d5820ead449e096d3148705f0626f47382467837594d83b
|
|
| MD5 |
99d1afface83d6ce7d07031467440f41
|
|
| BLAKE2b-256 |
03cc82c13e53bde14aaa862ed23c3e112c9fd646c5cbc08a6fde633ba59f4a09
|
File details
Details for the file file_re-2.0.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: file_re-2.0.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f87245d858b9d28a61273bfa80eb26f169c800cd2f30a8b842605da0651f170d
|
|
| MD5 |
b784d8d9a9a8fd10106206f660213b45
|
|
| BLAKE2b-256 |
141dab6035fbc5823169051180cba4c53b4102871a3642c78949e2fbbf18932c
|
File details
Details for the file file_re-2.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3509f82a075f0950c3f83400ed65443ad076ae5263f3804bcbe884dc26218a26
|
|
| MD5 |
a5b072df2590138077365fbcf5f65185
|
|
| BLAKE2b-256 |
ad4b93b9b6a50183eaed575b06cca1183b92fd6f84880e9bc4d1c1ac934a1f64
|
File details
Details for the file file_re-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0a80b97eb03adfbe64d323ec86050fe460c478beec8b595f30a0b47fb15a789
|
|
| MD5 |
ad636111eafddf2fbbabce789f21c14e
|
|
| BLAKE2b-256 |
978e692e17f5ae2da7369677edc504dd436d0051cc6cac8e4b8498ed0e413ee6
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
368a44b71d22f1610745f72f73d8784ebcadb635d05af37523c39d3e13e59f0f
|
|
| MD5 |
0dac1e4f544c48889b5f03abc11dee54
|
|
| BLAKE2b-256 |
a45598dbc510d188abd76e1c50ad606565dc23d8f07de8c1086e72d23b1b1643
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f9dd2b25b8f556980d9b0d59b95558db60c472e20be23b7f3c90dd3d97ce263
|
|
| MD5 |
85c0f94006f817033aeabb6eb67c89ed
|
|
| BLAKE2b-256 |
45150a78310b88f756ab342b0df5fc462551e270542bac8606fcef10d265b352
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa1b25923a1067cb0008f37d9401b0876cc02b45d2c4229917aa06f773f88bb2
|
|
| MD5 |
631831018237c221e6abd8d98c8f14fe
|
|
| BLAKE2b-256 |
c457ef1303fc3fc526aae9a9f6248b42c7e523637fc4a1fbd64ce0b1462e4431
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: file_re-2.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
048f1fea5af0fcdbf5c3160ffa86ee9c1779f6cdebfde5da9e360f36604bb971
|
|
| MD5 |
b7ae575c2cf67ef64b85674941558233
|
|
| BLAKE2b-256 |
f9d455514c33cc5af0c7afcfb1ae5068aa8f07498fda165d3348d9929db6cdf6
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: file_re-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b9fed6f30a1c1c47714d380632aabef009c347b87632bf0d8476dcf3fdd36a5
|
|
| MD5 |
e68c3c45f2a17027ae4ca08f8cae2952
|
|
| BLAKE2b-256 |
56186d9018981709e2fb07f9977d80d179e1cd32ebf3c2db6aa957b48288f401
|
File details
Details for the file file_re-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: file_re-2.0.0-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.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80c275e6ba9a6b352eb45fd616d78908063169fe0b217377fb6b5eeb3bd7b118
|
|
| MD5 |
00946d57a0b306c29bddaaa01977e773
|
|
| BLAKE2b-256 |
3fc89f3bc85574c4235d9b658f8c61fd1d480a94d5c9df3be4153357d24a6cee
|