Skip to main content

real-regex

A drop-in replacement for Python's re, backed by a linear-time, ReDoS-safe C++20 engine — with bounded lookarounds that the other linear-time engines (RE2, Rust) don't have.

pip install real-regex

Drop-in for re

Import it as re and use the API you already know — compile, search, match, fullmatch, findall, finditer, sub, subn, split, and Match.group / groups / groupdict / span / start / end:

import real as re

m = re.match(r"(\w+)@(\w+)\.(\w+)", "user@example.com")
m.group(1), m.group(2), m.group(3)          # ('user', 'example', 'com')

re.findall(r"\d+", "a1 b22 c333")            # ['1', '22', '333']
re.sub(r"\s+", "_", "a  b   c")              # 'a_b_c'

Flags work the same: re.I, re.M, re.S, re.X, re.A. Unicode \w \d \s \b and IGNORECASE case-folding follow re in text mode.

Why replace re

  • No ReDoS. re (like every backtracking engine) blows up on patterns like (a+)+b against a hostile input — seconds, then minutes. real-regex is a Thompson NFA simulation: linear time, always, no catastrophic backtracking, ever.
  • Bounded lookarounds, still linear. (?=…) (?!…) (?<=…) (?<!…) — including variable-width lookbehind — match without backtracking. RE2 and Rust drop lookarounds to stay safe; real-regex keeps them.
  • Faster than re on most work — geometric mean 2.06× across a broad corpus (CI [1.37, 3.12]). One-pass extraction and a lazy DFA make sparse findall 9.6×, multiline anchors 30×, and capture-dense group extraction (emails: 1.07×, up from a 0.32× loss before the one-pass work) beat re; a couple of high-volume split/tiny-anchored cases stay slower (CPython's C engine wins there). It is not the fastest engine at raw throughput — it is the safe one that is also quick.

Not re, on purpose

Strict by default — every accepted pattern is guaranteed linear. The unsupported constructs (backreferences, conditionals, binary Unicode properties like \p{Alphabetic}) raise real.error rather than silently falling back to a backtracking engine, so a compiled pattern is a ReDoS-safety guarantee, not a maybe. (\p{L} / \p{sc=Greek} — General_Category and Script — are supported, a superset of stdlib re.) Opt into delegating those to the standard library re per call with real.compile(pat, fallback=True) (or module-wide with real.fallback = True) — it may accept them, at the cost of the linear-time guarantee for that pattern; Pattern.engine ("real" or "re") always tells you which backend you got. A few semantics differ deliberately (e.g. a nullable loop's final empty capture). Full list: COMPATIBILITY.md.

The wheel also ships the header-only C++ library — real.get_include() returns its path, so the same engine is available to C++ via #include <real/real.hpp>. Source, benchmarks and the C++ API: https://github.com/RECHE23/real-regex.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

real_regex-2026.7.28.tar.gz (309.8 kB view details)

Uploaded Source

Built Distributions

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

real_regex-2026.7.28-cp310-abi3-win_amd64.whl (618.6 kB view details)

Uploaded CPython 3.10+Windows x86-64

real_regex-2026.7.28-cp310-abi3-win32.whl (598.1 kB view details)

Uploaded CPython 3.10+Windows x86

real_regex-2026.7.28-cp310-abi3-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

real_regex-2026.7.28-cp310-abi3-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

real_regex-2026.7.28-cp310-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

real_regex-2026.7.28-cp310-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

real_regex-2026.7.28-cp310-abi3-macosx_11_0_arm64.whl (418.1 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

real_regex-2026.7.28-cp310-abi3-macosx_10_9_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.10+macOS 10.9+ x86-64

File details

Details for the file real_regex-2026.7.28.tar.gz.

File metadata

  • Download URL: real_regex-2026.7.28.tar.gz
  • Upload date:
  • Size: 309.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for real_regex-2026.7.28.tar.gz
Algorithm Hash digest
SHA256 6cd2c83595da465aed587c238b54fc6f277ffe0eb85c6e5742d795213534a831
MD5 33cc31bef495a2612baa6cb69e13c009
BLAKE2b-256 94f8c6f1f8fed3e7437947cf4b8add3ffec72ae78835c38304ef832fdc30b81f

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28.tar.gz:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 cd3727838cbe9fe55dd82a0896b433cbf8a3c54befbaad1c53cbadb299e710b9
MD5 f0df1c69667860cdc18a2e84a96ee1e6
BLAKE2b-256 3ea1dedc527cffb73c5ee503c7ec665cd912deee2113e04f66b1a23724fa2fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-win_amd64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-win32.whl.

File metadata

  • Download URL: real_regex-2026.7.28-cp310-abi3-win32.whl
  • Upload date:
  • Size: 598.1 kB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 a8844014e497a9cfafa2c183d6f1cb39fa2cd26fc01c7ff9f54bf5327384ceb7
MD5 bc036d59af0074c16e0813a53fe2a91b
BLAKE2b-256 0ad0d330de9f2410e2ee5f78ab3fe5433245b429d8776a744548cbf1697b69d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-win32.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b06fbfcd38ce148a63ce282e8ab534a7af147204cb137ffe245bb78a5ff6a3d3
MD5 6a5785c7640d984ebff85da02b5d48af
BLAKE2b-256 481fa13e95765b9224362df6bafb64985fb70ae23b8e3c0d151eb95dbda11c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb8836425510b391bdff81bd770b6f02c55f210b652bc6ea390bd7416778e151
MD5 a04c0b85c0c1f6a78ec5157ea8a5465f
BLAKE2b-256 80d6128e2de87212cbd4e60bbeeb68d3fcace9810e2574fd2dc56db1952f17f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d0e7eea1b27344ab56d896c5871cc13773288945fa67b48c805128efa6e9cd3
MD5 eb3ccad0d25ab33f9ed3aa40952c6c00
BLAKE2b-256 f2816fffbf0303d763da564980be98626ad0470df44046c00f931584113856e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72405fdfec011f62bbe5c8dd11c1b6e630dc033c44ac1cb0d4a7a541f8fe5dfd
MD5 2ddc6c1f17f349afa697e2193e0dd308
BLAKE2b-256 4d7bd2433a846ccb37789d8408ead04c41ff71bc2bcc9af12acaae03da4f6cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a77e20057c3ac1d5feb772cf856bd8d90460a6a14505142152f5b88ccba7bdbe
MD5 6a86426d828883bb9b047f5e4742c7e0
BLAKE2b-256 8e3ec64d6b8c518f00a05a9c0a5df0b4fd3688d623d52086515bcff2b19ac967

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on RECHE23/real-regex

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

File details

Details for the file real_regex-2026.7.28-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for real_regex-2026.7.28-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c06a77d3cb447ccf0b92827976d47662650053e2f738463bf659d90a3d70444
MD5 908196981e94c6c69f5d0837ac161760
BLAKE2b-256 3b16e2f4282d84666d0446454c05eb4c648f019784a2564810c082e8122a6cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for real_regex-2026.7.28-cp310-abi3-macosx_10_9_x86_64.whl:

Publisher: release.yml on RECHE23/real-regex

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

Release history Release notifications | RSS feed

2026.8.17

9 files

2026.8.16

9 files

2026.8.15

9 files

2026.8.14

9 files

2026.8.13

9 files

2026.8.12

9 files

2026.8.11

9 files

2026.8.10

9 files

2026.8.9

9 files

2026.8.8

9 files

2026.8.7

9 files

2026.8.6

9 files

2026.8.5

9 files

2026.8.4

9 files

2026.8.3

9 files

2026.8.2

9 files

2026.8.1

9 files

2026.8.0

9 files

2026.7.63

9 files

2026.7.62

9 files

2026.7.61

9 files

2026.7.60

9 files

2026.7.59

9 files

2026.7.58

9 files

2026.7.57

9 files

2026.7.56

9 files

2026.7.55

9 files

2026.7.54

9 files

2026.7.53

9 files

2026.7.52

9 files

2026.7.51

9 files

2026.7.50

9 files

2026.7.49

9 files

2026.7.48

9 files

2026.7.47

9 files

2026.7.46

9 files

2026.7.45

9 files

2026.7.44

9 files

2026.7.43

9 files

2026.7.42

9 files

2026.7.41

9 files

2026.7.40

9 files

2026.7.39

9 files

2026.7.38

9 files

2026.7.37

9 files

2026.7.36

9 files

2026.7.35

9 files

2026.7.34

9 files

2026.7.33

9 files

2026.7.32

9 files

2026.7.31

9 files

2026.7.30

9 files

2026.7.29

9 files

This release

2026.7.28 This release

9 files

2026.7.27

9 files

2026.7.26

9 files

2026.7.25

9 files

2026.7.24

9 files

2026.7.23

9 files

2026.7.22

9 files

2026.7.21

9 files

2026.7.20

9 files

2026.7.19

9 files

2026.7.18

9 files

2026.7.17

9 files

2026.7.16

9 files

2026.7.15

9 files

2026.7.14

9 files

2026.7.13

9 files

2026.7.12

9 files

2026.7.11

9 files

2026.7.10

9 files

2026.7.9

9 files

2026.7.8

9 files

2026.7.7

9 files

2026.7.6

9 files

2026.7.5

9 files

2026.7.4

9 files

2026.7.3

9 files

2026.7.2

9 files

2026.7.1

9 files

2026.7.0

9 files

2026.6.21

9 files

2026.6.20

9 files

2026.6.19

9 files

2026.6.18

9 files

2026.6.17

9 files

2026.6.16

9 files

2026.6.15

9 files

2026.6.14

9 files

2026.6.13

9 files

2026.6.12

9 files

2026.6.11

9 files

2026.6.10

9 files

2026.6.9

9 files

2026.6.8

9 files

2026.6.7

9 files

2026.6.6

9 files

2026.6.5

9 files

2026.6.4

9 files

2026.6.3

9 files

2026.6.2

9 files

2026.6.1

9 files

2026.6.0

9 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page