Skip to main content

No project description provided

Project description

regex-rust (regexrs)

Leverages the Rust regex crate with PyO3 to create an interface similar to the Python standard library re module.

pip install regex-rust
>>> import regexrs as re
>>> pattern = re.compile(r'(\w+) (\w+)')
>>> m = pattern.match('hello rust')
>>> m.groups()
('hello', 'rust')
>>> m.pos
0
>>> m.endpos
10
>>> re.findall(r'\w+', 'hello rust')
['hello', 'rust']
>>> re.fullmatch(r'\w+', 'foo')
<regexrs.Match object; span=(0, 3), match="foo">

Benchmarks

benchmark.py is largely borrowed from the regex-benchmark project. You are expected to pass in a path to the file of the input-text.txt file to benchmark.py.

This simple benchmark suggests that regexrs may be significantly faster than the re module from the standard library or even the regex library, at least in some use cases. Keep in mind that this benchmark tests just three simple use cases on a single large text input. Therefore, the insights we can infer from this benchmark are quite limited. In some cases, regexrs may be up to 2x slower than regex, especially when creation of Match objects is necessary.

Results as tested on Windows AMD64 Python 3.12.2 - times in ms (lower is better):

test regexrs re (stdlib) regex Compared to re
Email 12.51 354.53 690.15 28.34x faster
URI 4.82 282.69 430.26 58.65x faster
IP 4.71 321.37 25.43 68.23x faster

To run the benchmarks yourself:

# be sure to have run `pip install regex-rust` first
# to test regexrs:
python benchmark.py /path/to/input-text.txt

# to test stdlib re:
python benchmark.py /path/to/input-text.txt re

# be sure to have run `pip install regex` first
# to test regex library:
python benchmark.py /path/to/input-text.txt regex

How to install from source

You can use pip to build and install.

pip install .

If you want to build manually:

pip install maturin
maturin build --release

Status

Mostly incomplete and likely very buggy. I am using this mostly as an exercise in creating and distributing Python extensions using Rust and PyO3. It's unclear if this will ever be a particularly useful project or not. If you're looking for a complete and performant regex library for Python today, see the regex project on PyPI.

Differences compared to standard lib:

  • The endpos argument normally found in the re module is not supported in regexrs for the match/search/findall/finditer methods.
  • Some regex features are not supported (because they are not supported by the regex crate), such as lookarounds and backreferences.
  • Not all flags are supported. At present release, you may use the flags IGNORECASE, MULTILINE, DOTALL and VERBOSE (or their shorthand equivalents). These are translated to inline flags and prepended to your given pattern.
  • Until a future release, there is no cache for avoiding re-compiling the same patterns multiple times

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

regex_rust-0.4.0.tar.gz (15.0 kB view details)

Uploaded Source

Built Distributions

regex_rust-0.4.0-pp310-pypy310_pp73-win_amd64.whl (718.1 kB view details)

Uploaded PyPy Windows x86-64

regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

regex_rust-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (832.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

regex_rust-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (878.6 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

regex_rust-0.4.0-pp39-pypy39_pp73-win_amd64.whl (718.3 kB view details)

Uploaded PyPy Windows x86-64

regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

regex_rust-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (833.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

regex_rust-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (879.9 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

regex_rust-0.4.0-cp312-none-win_arm64.whl (665.2 kB view details)

Uploaded CPython 3.12 Windows ARM64

regex_rust-0.4.0-cp312-none-win_amd64.whl (752.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

regex_rust-0.4.0-cp312-none-win32.whl (654.5 kB view details)

Uploaded CPython 3.12 Windows x86

regex_rust-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (985.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

regex_rust-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

regex_rust-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

regex_rust-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

regex_rust-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (879.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

regex_rust-0.4.0-cp311-none-win_arm64.whl (664.0 kB view details)

Uploaded CPython 3.11 Windows ARM64

regex_rust-0.4.0-cp311-none-win_amd64.whl (752.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

regex_rust-0.4.0-cp311-none-win32.whl (654.6 kB view details)

Uploaded CPython 3.11 Windows x86

regex_rust-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

regex_rust-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

regex_rust-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

regex_rust-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

regex_rust-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (897.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

regex_rust-0.4.0-cp310-none-win_amd64.whl (752.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

regex_rust-0.4.0-cp310-none-win32.whl (654.8 kB view details)

Uploaded CPython 3.10 Windows x86

regex_rust-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

regex_rust-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

regex_rust-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

regex_rust-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

regex_rust-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (896.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

regex_rust-0.4.0-cp39-none-win_amd64.whl (753.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

regex_rust-0.4.0-cp39-none-win32.whl (653.7 kB view details)

Uploaded CPython 3.9 Windows x86

regex_rust-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

regex_rust-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

regex_rust-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

regex_rust-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

regex_rust-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (833.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

regex_rust-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl (878.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

regex_rust-0.4.0-cp38-none-win_amd64.whl (752.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

regex_rust-0.4.0-cp38-none-win32.whl (654.5 kB view details)

Uploaded CPython 3.8 Windows x86

regex_rust-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

regex_rust-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

regex_rust-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

regex_rust-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

regex_rust-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

regex_rust-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

regex_rust-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

regex_rust-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

regex_rust-0.4.0-cp38-cp38-macosx_11_0_arm64.whl (834.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

regex_rust-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl (879.0 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file regex_rust-0.4.0.tar.gz.

File metadata

  • Download URL: regex_rust-0.4.0.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0.tar.gz
Algorithm Hash digest
SHA256 791c188a88d8b5a6bc4939a11a01e3116319f10a252be0a9d146c2b431d638d1
MD5 ec3b1c3b166b068a861e05faf0902a4c
BLAKE2b-256 2ea92b9b3e6e7cbf7e42faa8bf869b6edc23edf57d975a3d7620d59dd63b68e4

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7e42729da8d63121ac2e246a33b2f1a6dc571fb188bcca4efde9a1b7c98aafd4
MD5 b5667be716c32933aadd46fa33b228ac
BLAKE2b-256 afc76a52ded0ca71cee24182cc7ab65650a58c0e5202ccc08e02585e58792142

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88ecbb8e8f6377f7b0d913b0af43b7635d2d48945d67be559311eeb5dfe81382
MD5 b630ceec274af1ba882d812a8816087a
BLAKE2b-256 6bde0bcf22070061a033c2569204c381626b87c6b5d45ed18be170ca2906bfd6

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e9ae7e50eba20a20d2e5f704bc46b2ab6414a5110fdfa8a70715629f482df766
MD5 e5e0bbe9ad336b74046af7024036c3ef
BLAKE2b-256 7078dceb69b2143928da567929446b562f4eba2d3d90620b425da6f8856f751b

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19ceb2ad4511b6e633e27a96f2e140f6f4297efc09461390a83c43c5a61155f9
MD5 2ca20b7a6cb40092b4683e1aa579808a
BLAKE2b-256 3146a6e9bfb9dcd70cc01e3f66e1d2d2019422100d2f1109c2b5649dee4b803d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3202c652d77de4a26a7fb66bc9970cafc4196b4dcc144de690976eb7e979184
MD5 8bef6858ef57431f3022a2d562b3d727
BLAKE2b-256 a017513a1ac8fb5329f5071548a8d41d86cc86b2017bdd3328dcdf671cf6da2c

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d78f137211873730708bb036fde2d6fed0d482cd16f603c60296f54d6597d933
MD5 f78f481667c078b09b4464a2d09be689
BLAKE2b-256 ba9172f3654065523d192f1f60599a6908b15c5353758ea73c263e9148008277

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22ef2b183a4713a32da683cf065d4c3a25118c3fffcce5b989b86b5ce02052bc
MD5 ea1e981c7d95172d3d418f346b7b254a
BLAKE2b-256 df8c24f026fdf474a27801b3f032f39637e5bf7536e1d1d38a3ec4da66821c88

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e1e1c8ac6b5717358ef05d2756386c6bc503efcb017aa1b3f3cd3ffe889e1c2
MD5 683b8bb10b37ae27ef13c15770f5921e
BLAKE2b-256 40145b5d97e4835b5d8be9c54e21f670d18722d62d89c039fdc598e25aa3edc9

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c04ee6a55914018b1dcf27124b664d951d36a6aaa7c70187384379d3350232fb
MD5 8a5413b4cae91469ca0a105a55e8b925
BLAKE2b-256 cfa0f704c1e859b652eb481922c6d44078720ca38149fda82ff7759ecc1014eb

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba19e227dd0879ad185c8ad40bcec728cf6044723b8fc65abf0f82afc5501574
MD5 7012c2948735b7a19a0f91420f87a855
BLAKE2b-256 31f0c6a102136d56e93a566401bb30c4f7837fec2577c8d0dd61b43a6d43ade2

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7a2207b7434714e1f8c6aad3336aa887b779f6dd6c1332c12e1a13d48bb76ac
MD5 5f67bb0beaf56a786e43f43f728801d3
BLAKE2b-256 0ed20cbd88fc692380e1dbc17a22042c7981c1945e551a7fbe3780628bffb21c

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4e019c8bfb2adfbb05b8d0bb6edb4897b04cfbca289208226a2785137373bd2
MD5 4e46664f0da9859804886aedb6ce785e
BLAKE2b-256 8129ced902bf6e5387c82444c389147deb3b47861b143525b7144f1f49439fa5

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13baaf610f9511d4f2a1f0c5c2b55e733ac2fe6e94b53b39ea3f84675c7edafa
MD5 2a1a58beff91a204c918c96e1afc20d8
BLAKE2b-256 17dbe9ff83f4cb7cb097ca7e72845ecd645830c4e8e16260c752e32a34259d4f

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dad99cb237eea97915a8ba7945e3a1cd705b065d4b6f3424fef33eb0b0f5ebaf
MD5 1674c54714c46f50bf82fcee2c232e79
BLAKE2b-256 9b0967a4e412c20c4ab1032a9ebcfa70e035c25f8af4db49e9d06c75ce747d61

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a55e2bb19042b27527a66222ef8ea9b9e7476bdfb412d4af724f9121073c381
MD5 8609b444c322679d6c02733f7e6e2d5f
BLAKE2b-256 2f653e8ed15509dd0950f276a3454b4df2cb5b6ba0af382ed7bb9713e2b95db3

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c237703cb444e0706a04295792783f5e11c4129a471dada8fbfda9d486f5a64
MD5 c0603d416193ae8ecf1cb25f2aa70ed8
BLAKE2b-256 6dcbed289881db54154d6b1c1ce95f69aaccc4127962ae34d8a1bfc4295ac5d8

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 25c802d70de545a8ab525617d53a3b9e0931bff2a5bc646692d6a3be05ef307c
MD5 06a67e1100b8a4cab7f50d2ff06916f4
BLAKE2b-256 7b0870247d75916de2bad38d9b819f3d3c86f01e90bb3fa997aff2507047e0f8

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0bde9904b103bb0b5f792148eb351d3e3641cf40eeb0f733e7635ab8c06ba9d3
MD5 04d0f9fbbb2b494c3e01bd9bb4fd168b
BLAKE2b-256 f2404263e30c174151f5b94556b06600b7ff08b2abc6e772bedcc73c2fe3970e

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-none-win32.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 654.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 df7fb851ae5e3d5f546372181597438f4a90a426d56d0bf367d95bd28b286b64
MD5 6096e451911efea5bc08b249014b8f84
BLAKE2b-256 f096aac38bfa80f19a2f128b03b2a7eda25f66cf69ee838ed33ba27db709d47f

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3109fc0d633320d878cc90c41996f042064b50c83ad5876b7bee1da13e63985
MD5 d9178ef0da65340798a2338a0d7bb630
BLAKE2b-256 72db72bbf1d44d160bcab9774120413e88a717d412eb6eda24bc7fffd6f58333

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a26e7288b917cd7e6bcea931d9b111f050427eb472d969cdeaa5dde9f746ef55
MD5 755021a3f86630019f95e1f5228a3192
BLAKE2b-256 df547e3efc5da2e8e5d7a3a6ede71a16b9b3cbdda20cb8a6632cb34b2bcf202d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d2639bb6889561734702bc00e21d59e46b2c59c69ea46eeb5e08b484f3b7d63
MD5 b3e73766d69ccbad247a31e269615912
BLAKE2b-256 b8760233dbdb96c9e5ffcb02678342c5b0f7c543586974450fa2aef8b747f437

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3de465073b53393a50c7c6c6aed4fb4e92ae9f3ff3faf3c7f44f537df1cc213c
MD5 e2a099cda0975d9da937a0222a97f195
BLAKE2b-256 ad163ebc87b7232923420e7f080060e25168e366bc793546d1e12c1485d0d65e

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d74b857fdec45d3afa06d625acae9115f2763803fbf617d17f1efa814c32ec2a
MD5 98224ae2ba5dd79cdf0b0deb3402aba0
BLAKE2b-256 5002d7f11f0a2f227999d322c129f8e7363e0c30f92e98517c7b3a7988d44a8d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 684f4c0e1ceecb83010768116e0d844d6e093f312ceed98b0b7d24b500e6ad1b
MD5 a51e2c95ac233b32c47b8a498f90386d
BLAKE2b-256 5eeac954565ca3eb7379e8ea222c4487d26395cc27bbab05bdea4f98b57b13f3

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2800825510be988fffdaa58957ef2f3357ab87fb94e695e1f7daaa715ff77b8
MD5 f0fe1b7373007943416271945a75f87f
BLAKE2b-256 1d0644cc57e6074c2569468ce9a21a5b4be4807273b2778b31b014b64390ce82

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b29f3c33ce1b94e95f0c613d5c7b69b5d7b7b6918e3212b1ef23ac7868b4fb4
MD5 d32882c0a21abd92d497e01320558386
BLAKE2b-256 7309042d181882a89f8760c403f90841929947b7c856dc1486a1f275256811c8

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44bcd1901c8af00f88dd69693b851b7b474f60b4857a60291d7a41767d58fc20
MD5 dc489e1583da76f1a5181cde6ae2b523
BLAKE2b-256 7171290812493beeb1a0f6bfdbbe14232daeaf2b1dc792c3211db98cd5d4d2be

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 32247331e4a6b13829a0093620ac0dab382639e7d00d91535362433cfae73899
MD5 5294fcafbb2214a5942f98510744db53
BLAKE2b-256 466907c6c7da52c3fdf2680e14fb2e896e46fc4d1f468c199ee5b4eef442be3a

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2affb0b2ce694e6f059853b3f0c26eedc80609dee00d7243999029adc3a7b72b
MD5 3cdf89a96d1890188bd1c5e7ee90951d
BLAKE2b-256 c6f13b72d39106e9df1e3c8e869aa665cdd93890794d6fbf156d74dff179270a

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-none-win32.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 654.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d76d8854bc97f2eaed29f5ca1ebbd17f0f2322dc86b59c62974df4e3b2572c6b
MD5 781905b75423915692ac9b5044261871
BLAKE2b-256 47fcaeba3f3ff628a7bf42177a14b634d22e476de9dc2d2538a274a00c06a0f0

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0adb42427c1627978aa0a5419f918495b114e81ed8d189b5d8992dfc2673060a
MD5 1772149f1e059e8544be4f72a9aecc6a
BLAKE2b-256 33ccf589e1a922fed9212db817888eb76158ede4c342a50c164fdee44fb03fa6

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7cd010f3300cbb437751c904cc49663d7ee2cbf6b48939c672d65ce398232717
MD5 bc821d163a3afacd38dd8e3f01ebda5c
BLAKE2b-256 b0a672fe46a30f8c4fa9c6a6e3f6e8e614f9b0781777b29c2b4562b2c056412f

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba8bae171e1933bbb887fbc247a9325eb5f286f5b9ab57cbdd6cf01520a56025
MD5 a89f7889f3065ef774ea91c3db168d83
BLAKE2b-256 13e03f67527bae42030e88796a2e7ba61440c0dc1752e64226ce68793f9fce41

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dd545b632a2f2483706cbe80371f7eddcf198499f92e8bd315669cdd4a14da3
MD5 630742c4f3210a6d9aeba7ca43cff41f
BLAKE2b-256 54e1968de7abdacd3b62ccf234b061eae9a78a5de5b0d78f029d2970700e7973

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3296d8f0dadd46eb49b2b3cddd794979f688c11195ff732db8084b354af1ab39
MD5 7a8ed2ef0cb0c4421caf1849e7109b54
BLAKE2b-256 5dca34d3140a25746cacab1e598d7fb8c339c665ae28c61363d5169569557ff6

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6f7abc1c2f3e1dd80f64354eaadc8338da24dc58855d7a1ac6e13ed3c234073
MD5 1b893bfac9b8d9afa52777fe7ac12527
BLAKE2b-256 95b31abb80ed7e251e090cd8c1ab5ec042b71728c56ed5599ca8e042959d4509

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3122495cefb8070633c913273011b4cc8cfd592ba18e4563db9583aed1963251
MD5 95b8dc33623f52c45fbf39b21f4447bb
BLAKE2b-256 38663553804bff4236eeaafc1fee05f3102bbc50437957094e5894d54e6aea03

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f45bccc1422e1a4f862f6cf2a50b36498f0a4cae57375042de92e25e4aa7dcd3
MD5 79e1f46fe0a5004bd7320893cecb1abc
BLAKE2b-256 8efdd6925f95f24e1c6d4020acef0981413d02c460daad9c9559447ebd0ccc04

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 537e419c751082ab07a828273f9e0a2d39338a9ed23bef865fd45e0577fe99fa
MD5 4205ac9bfa46716076e4afdd22bd12b0
BLAKE2b-256 e79700cbc04bad8939ba71164e444d1af7cd80b72699f620fee018eda7dfa921

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 76a84bebb13e91d6d0644c035fb9124ea7117d3d6ae93392f38fa1eac28a3df8
MD5 c88d487389d26ee80b4d21fc416ae624
BLAKE2b-256 b0bda69fb607edacee8e8a8f5baa7159b2ffbef34e4097f059d284ec2496a17b

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-none-win32.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 654.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c58ac9365e61687fe03d3e9b44e369efa6fdf8885393f5e0ef3135e03639a3f5
MD5 61fc7d83864123ba674c0d38a0532308
BLAKE2b-256 90f08ab84072f05c30dd14fb5ae3fe635582d274262a43c9201158d7dc7d01e8

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e0b8ec69f8765289ba9699f7b1eefcba689e8d531e2a027f880d65e3cc05534
MD5 4a35cd4b13920e68e6bec44e996f2b02
BLAKE2b-256 e75a92b0fcd3584468c7e3c270026f34ce056f95c0a5431fe3f18dee7dfdab6d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 235e4882e9708ee2d6f2c61cc0ac53fcf1b3b3e5cbfa46b2b324825bf9927216
MD5 811d8b457edc536b7ea9725e5e328983
BLAKE2b-256 e79f95778120d9941ee2e96829c0666275d6c1fb7a21794ce9213856ad711a38

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d71aecb63a71006ba2f228365fc0796504d8fc3f41cf86c080c894bc95d8c5a
MD5 d5ccb1eec9e68b3659b48ae1abd2ae9a
BLAKE2b-256 c4a06a7487557e3b6fc3a1169d4ade55601f5817c7fa1089c3e57c085bdec5ff

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97536179898159af31e1a26eb2c51dc7ddbc45f274a4f6ae604da7acbb1e5347
MD5 87740b7d2d9eba9604d73991b9349084
BLAKE2b-256 4cf3b545d34fc54d47ed12a16dfd679301cf71cb8babb97167ce2f69dd21d551

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2d3bd35f51853aaa8b5b14df696569f909f76077e31aeb474fd38ae4f2ee7ff
MD5 9d77ea24c91ce367010ae76f7780d5d2
BLAKE2b-256 373daadf9ced05eeb7d1c5a2b08d95e440836c3901b4f394a9f2a4053e40cd9a

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47b56e96934d2891e999a803c6d177b5c47aadd3f3b73c271c33ac7ac4192644
MD5 c3444d329a59d8670bdd2b52be43017d
BLAKE2b-256 374483692e7d1675d99c406fc0182a3e4f46cdf18cb91b557e93cc60d9bea15d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 506336b07836e0b7b37b5cbfca68f849e0590b7250ab3c4bf5945f439c3a9b16
MD5 e3439c52c63c2446ccd0ae98d0411b4f
BLAKE2b-256 1ef608455b72f3b84a3677c6c1c5111f655b661d59370726bfc7f57553710b9c

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 808090fa25488bf2b9cc8275bc172938cfbd0246e6a172cefbac34dccbbb77e7
MD5 0131d5708fb1429f946e7fa0f15ecbe4
BLAKE2b-256 3723a3cc7dee4dbb2483f9b92d6536cdc1c87bc65cd5921abc60f301e39adc79

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df3246bedf2c47f67390b3e13731562393bb975373514ebd31b9b36d1c2204f3
MD5 4c8e2c275e909a8f9435467e8c4f6117
BLAKE2b-256 bfec1ed9cd1c0bec345c79478eae2c8701ce46fa8e84a176aad09fbdfc099e64

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 753.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2bbfe199a00e9822570c54ce19a34486184bb81274b32a64432cdbe62caaef19
MD5 7006ef6ce75ff0626bad34666bd4ff8e
BLAKE2b-256 f7047f4fd191aea9ef49560fcdd73af8711be6402bf0f7eef3ea25cef52c0da1

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-none-win32.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 653.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 86d448590c193af6d4f6ad270c792bf614ae85df8550282ab1d869c9a2ec3e3f
MD5 cc1aed6265c9ff74ba93e91a264a2ba8
BLAKE2b-256 75e4612e634ac98b24f75a822176067f20c8f6715ea56d4ef3a1991a6d84b0c1

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37d20ce6b8bd31144b48d52b278c776de92cd79c8bd0f1cb0d6240a512739885
MD5 b46725b3b6b4ffa735044698c0188d7c
BLAKE2b-256 3412b04e3b93052f5b608587eb85d7931b2d28d6045f6c76e321b2223091b799

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1afc5d6e12da3c046a34b33acb7b18b3d7272c14e2e49ec08bbc8ca37189ccb
MD5 c57d5c0bd894cd70a3b971cfafa59277
BLAKE2b-256 37a51ed5ba75e672875ec67f54e6abb4a5702612a50641fe2078cf28b568b96b

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 711e33d277ab52b6f0e18db92daa63e63fef05dbbd4938440c678833de56ed46
MD5 aef842f8196873c27106c07c4b80cf5a
BLAKE2b-256 d188acf5050d1fad5c60533c5d62fcd35376a50df071aba48842d2c1cc8ba527

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5b513e59500a8f6de36c56d9a71a89ac38bc8f6a40634ab3f18c3fa0ecccb92
MD5 576544d5bc213e9a0fde0f6dee8acad7
BLAKE2b-256 8276c2fc2858d60ae47de0aa8e0dcdd5b7d09d3e435185d9e554f9df5ef5b5cc

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a094678a9a729be6e6539e6f0739bbd43cca34e712c55cdcd481107853b953f
MD5 d8e9de846f89db8525550518496b97eb
BLAKE2b-256 eeeb60df18de7900f38c48523b3af3f19ff4e2cc3bc2b9e71f23b2d58dadee23

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 144c84976dfc7ef189ce704050ebbf8e8fe4c6f1fcf983a9aa056c4b987c8914
MD5 01be2c06303e0ec0e53c1f652f5ac3d0
BLAKE2b-256 15b1ab164353fe168e57be0b4186c47646435fcc90020f890871b8706d23fd05

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd830c955f52bc52150894944a565a57c9128c520e9f38f7fa084bb9e4e180f2
MD5 a174d61516af77fa085cbdfc9ad6f986
BLAKE2b-256 ecb60456717f14aec0ad67689fff7576b6518fb8254d8744270e4b857a3d8cc7

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63215f1ac6be6e66a062009c34226985aa5874f9a39b790fb1d51637fbe68519
MD5 f9079059ef410b338cd7656b384b26f1
BLAKE2b-256 cff0c62cc0c46f81ea6d555d512f73048d58baec9b25f2c6c8fc0650a01d0a7d

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73c40099576fd5f08e3431c7bd09a7b3ad0de1b76e30f5e7ebafe41133c46a1b
MD5 1184c319013ce9c4cb02d3fa5c809c2a
BLAKE2b-256 218053433a6e52a74d127661b2bd7e0991fc9173e0432375c5629aeeef9e58e8

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8a96e346cc6893613dd3b7b57dbf884dc2c12c55f26137a5ac16e582c3e228b
MD5 98e6bef2b82d33157724ec9310322ee7
BLAKE2b-256 250b2dd17003fe637904a03164bf3a5f6988e9ca36eff4766f4fd2c5973196b5

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 752.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0c15ee3f7f4d0f518ff779d0d50eb107c0b96e1a05e8b405e535c8020d4347c3
MD5 cf6b7e8ae2ba373cf40133cad51888f6
BLAKE2b-256 0fb309ebf9313877492b2197f81adf265e82578cd0ddf9275c35c5abf1ca1823

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-none-win32.whl.

File metadata

  • Download URL: regex_rust-0.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 654.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for regex_rust-0.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5e1b03240337c044821e71fc87354e50933df728778f9f14c73eb0bb746f1741
MD5 ba499ded74ac4f547ef3c6401de1e472
BLAKE2b-256 401acba90741b2f2fa1dda0079566724691a83a01738a7b068bcd06d6ace44fc

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 caa4f1cce550e7e465421b5896201a8508aabe86b12e243bd2a0f52a890b580d
MD5 f4f57b319027913cb118450b400e3595
BLAKE2b-256 436f21e44ab02178ab2633144707292ea6ee275329138b6a865964bcf166a411

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55f85e2229e5e2bce5d5a1b7cb7268514467073c6204fd323e30cee996a5dd06
MD5 50de22a30ff0fc7a2ba96a2287c31e97
BLAKE2b-256 fcd93c78d03db75be71e4985ebbca163f395e7f2c0933bc771223975ab3c6264

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e574f43e29bbfe6020091879fe0f89b9a3d8301af6ef0f74adfb3defb876dffb
MD5 f900f8844563ea446a7c16c251d2accd
BLAKE2b-256 381a7b4c80313969200e8b5be06b1059c7e6ddb4c88ac145489e02805cdf1e29

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0bfc55991b41653909de2c4cfd48cec574ad5b172537812646518f1b6e7b419
MD5 a92f3f2f97ceb347be902f73bcd5bb1d
BLAKE2b-256 8353991d918f17223f4bea2034dfedf930c9a88b1975fbd6d9761632826a4b51

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15a7023cc78e7ab250b357a10545f90bda79852144e2ea7921a082287c0a02eb
MD5 a310febd29124a17ea3c00ea40edaa96
BLAKE2b-256 b7158a874b90802b1b3b36d869daf4ec1eca6e0973325b395d8ef5fd10199bd0

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5b8faed90d8e3a0160bf9032966b9949376a3324ae724946b345e5dc6122ee1
MD5 9f7c9930ce0b7e84546e77bac90a4b0b
BLAKE2b-256 48988555db5c75ead597bf96da8d1f9b3d8053bbd8e7d5930eecca5217013434

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3682e91419f4685e7fbfbd0013e118810966a12a44461a721c6f8459eeaeb5d8
MD5 4a33cc17faa8d70bd53b3709130e4b31
BLAKE2b-256 f1268c2229be9aeb240468bbdf152642b4f850af2db764488393fba9554eae0a

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e9b0fce09b0f43af4cf5aa15590d225f55ca3179697324e9679ea3bf032d272
MD5 dab455306016fafc47206c7df3f881db
BLAKE2b-256 942ecefe9f2de00e69156b4386cce2d7e278d039f05bdc3b0836b7716af8c992

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fea29293554f63cd7c10dce489a64f44443dba3ffc2dc6e381ae5fb03d1e371
MD5 b7efd21bef1165f011837bc6320aec1e
BLAKE2b-256 aa9c9ba5c367c1c4f3bf58c6bdc80c148ef9bd1b45001f6d9239be0ab213dc37

See more details on using hashes here.

File details

Details for the file regex_rust-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for regex_rust-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8239723fbefa7338f8a30c81783cea7c7fc2f6249c75c971698bde66d1d8d16
MD5 5d6db9e5e8605c35e791f2cc79a4859c
BLAKE2b-256 291baeb998fd2c1a7ee70b6934284bc7b093754f77f286654e837443703e3efd

See more details on using hashes here.

Supported by

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