Skip to content

Repository files navigation

image

PyPcre (Python PCRE2 Binding) 🧬

Fast, free-threaded Python bindings for `PCRE2` with a stable `stdlib.re`-compatible API. ⚡

GitHub release PyPI - Version PyPI Downloads

Latest News 🚀

  • 08/09–08/10/2026 API performance and safety update: bounded call-local fast paths accelerate findall, split, sub/subn, Match.expand, lastindex, flag handling, template(), and escape by a representative 2x to 30x+, while large ordered parallel_map(search/findall) workloads scale by 7.85x to 11.5x across Python 3.10 and free-threaded Python 3.14t/GIL=0. Compatibility fallbacks preserve complex patterns, subclasses, buffers, and callables; caches remain thread-scoped and size-bounded, and no fast path retains subjects, results, or extra captured values. Unsafe UTF bytes compilation is also blocked, with differential, randomized, concurrency, subprocess, and memory-safety coverage. 🧵⚡🛡️
  • 08/08/2026 0.6.0: findall, finditer, sub/subn, split, and match/search/fullmatch are now up to 46x faster than stdlib.re and 48x faster than regex on finditer/findall workloads, 13x on split, and 2–9x on sub/subn backref workloads, with full re semantics. Free-threaded findall reaches 13.8x vs re on 8 threads. 🚀⚡
  • 07/27/2026 0.5.0: Zero-copy buffer-protocol subject support (mmap.mmap, bytearray, array.array) with UTF-8 validation and GIL=0-safe memory pinning. 🗂️⚡
  • 07/24/2026 0.4.0: C extension hardening (memory/pointer safety, bounds checks, atomic allocator init), GIL=0 safety verified, vectorized UTF-8 index/offset conversion, GIL-release threshold for small calls, C findall implementation, and README competitor benchmarks. 🛡️⚡
  • 04/13/2026 0.3.0: Lower-overhead public Match objects, faster hot-path match() / search() / fullmatch() / findall(), and tighter free-threaded execution. ⚡
  • 03/22/2026 0.2.15: Python 3.15 re compatibility (prefixmatch, NOFLAG) ✅
  • 03/21/2026 0.2.14: Python 3.14 compatibility 🐍
  • 03/02/2026 0.2.11: Auto-detect Visual Studio in Windows environments during install and compile. 🪟
  • 02/24/2026 0.2.10: Allow a Visual Studio (VS) compiler version check override via an environment variable. 🧰
  • 12/15/2025 0.2.8: Fixed multi-arch Linux OS compatibility when both x86_64 and i386 pcre2 libraries are installed. 🐧
  • 10/20/2025 0.2.4: Removed the dependency on a system python3-dev package. Python.h will be downloaded optimistically from python.org when needed. 📦
  • 10/12/2025 0.2.3: 🤗 Full GIL=0 compliance for Python >= 3.13T. Reduced cache thread contention. Improved performance across all APIs. Expanded CI test coverage. FreeBSD, Solaris, and Windows compatibility validated.
  • 10/09/2025 0.1.0: 🎉 First release. Thread-safe, with auto JIT, auto pattern caching, and optimistic linking to the system library for fast installs.

Why PyPcre ⚡

PyPcre pairs Python's familiar re-compatible API with the real PCRE2 engine. You keep the ergonomics of the standard library while gaining a more capable regex engine, optional JIT, explicit threading support, and a binding designed and tested for free-threaded Python. 🧠⚡

Big Wins 🏆

  • 🧬 Full power of PCRE2: PyPcre uses the real PCRE2 engine, so you get native compile options, semantics, JIT, and upstream tuning.
  • 🔥 More expressive regex syntax: PCRE2 supports constructs beyond stdlib re, including atomic groups (?>...), possessive quantifiers ++, branch-reset groups (?|...), richer lookarounds, and backtracking control verbs like (*SKIP)(*FAIL).
  • 🧵 Thread-safe into nogil: PyPcre is built for PYTHON_GIL=0, with CI coverage, lock-aware caches, reusable match/JIT resources, and parallel_map() for multi-subject fan-out.
  • Fast on real workloads: PCRE2 JIT plus cached compiled patterns lets PyPcre match or beat re and regex on many common scans, especially multiline searches, lookaround-heavy patterns, and free-threaded execution.
  • 🛡️ Safer operational story: PyPcre prefers the system libpcre2-8 shared library so normal OS package updates can bring security and bug-fix benefits without a bundled fork.
  • Validated thoroughly: the project runs API tests, fuzz tests, memory-safety checks, local valgrind leak checks, and massif heap profiles. Recent local profiling found 0 definite leaks and 0 possible leaks in both the public API and raw binding paths.

Quick Comparison 🥊

Area PyPcre stdlib.re regex
Engine Full PCRE2 CPython stdlib engine Separate engine, not PCRE2
PCRE2 syntax and flags Full access ✅ No No
Syntax power Very rich ✅ More limited Rich, but different from PCRE2
JIT execution PCRE2 JIT ✅ No No
re-compatible API surface Stable and familiar ✅ Native Similar, but not the main goal
Free-threaded support Built and tested for PYTHON_GIL=0 No explicit PyPcre-style layer Not a project focus here
Built-in threaded subject fan-out parallel_map() No No
System library updates Uses system libpcre2-8 by default ✅ N/A N/A

Benchmark Highlights 🏁

API hot paths and 12-core fan-out

Pinned A/B measurements on an Apple M4 Max use the same taskpolicy -t 1 -l 1 scheduler policy for both interpreters. The host reports 12 performance logical CPUs and 4 efficiency logical CPUs; macOS does not provide an unprivileged hard per-process CPU mask, so the benchmark records the topology rather than claiming hard CPU affinity.

Workload Python 3.10 Python 3.14t/GIL=0
parallel_map(search), 16 × 1 MiB subjects, 12 workers 8.57x 7.85x
parallel_map(findall), 48 × 1 MiB subjects, 12 workers 11.51x 11.25x
No-op escape("literal") 5.0x 3.6x
No-op escape(b"literal") 6.9x 6.5x
Bound literal sub(..., count=1) 4.7x 4.3x
Bound numeric-reference sub(..., count=1) 4.3x 4.1x
Bound explicit-reference sub(..., count=1) 4.6x 4.3x
Bound named-reference sub(..., count=1) 4.2x 4.3x
Bound numeric-reference sub(..., count=2) 4.6x 4.2x
Bound numeric-reference sub(..., count=4) 6.0x 5.1x
Bound numeric-reference sub(..., count=8) 8.6x 6.1x
Cached compile with re.I 6.7x 6.9x
Cached compile with `re.I re.M re.S
First-read lastindex cost, sole capture 11.8x 8.2x
Deprecated template() compatibility call 6.2x 1.1x
Literal-capture findall, 100 matches 5.0x 6.2x
Literal-capture findall, 500 matches 7.0x 8.4x
Two literal captures findall, 100 matches 7.5x 10.8x
Two literal captures findall, 500 matches 13.5x 18.3x
Eight literal captures findall, 500 matches 24.5x 29.4x
Three literal captures split, 500 captures 4.5x 6.5x
Eight literal captures split, 500 captures 6.6x 9.0x
Literal-capture split, 100 captures 2.6x 3.5x
Literal-capture split, 2,000 captures 3.1x 3.8x
Bound one-character literal Pattern.split 2.1x 1.7x
Bound backreference sub hot path 1.38 μs 1.14 μs
One-match numeric-reference Pattern.sub 0.45 μs 0.34 μs
One-match explicit-reference Pattern.sub 0.45 μs 0.31 μs
One-match named-reference Pattern.sub 0.46 μs 0.33 μs
Repeated call-local Match.groups() ~0.05 μs ~0.05 μs
Call-local Match.expand(r"[\\1]") 0.07 μs 0.07 μs
Call-local Match.expand(r"[\\g<1>]") 0.11 μs 0.08 μs
Call-local Match.expand(r"[\\g<word>]") 0.13 μs 0.11 μs
Call-local two-name Match.expand 0.18 μs 0.15 μs
Call-local three-name Match.expand 0.23 μs 0.20 μs
Call-local eight-name Match.expand 0.44 μs 0.39 μs
Literal-backslash + named Match.expand 0.12 μs 0.10 μs
Named + backslash-suffix Match.expand 0.16 μs 0.13 μs
Repeated default compile("(x)") 0.49 μs 0.38 μs
Repeated integer-flagged compile("x", CASELESS) 1.16 μs 0.81 μs

The parallel figures are serial-to-parallel speedups and preserve input order and exception behavior. Large findall scans release the GIL only around the PCRE2 call; match data, context, and subject ownership remain worker-local. Reproduce the fan-out benchmark with:

taskpolicy -t 1 -l 1 env PYTHONPATH=. \
  PYPCRE_PARALLEL_WORKERS=12 PYPCRE_PARALLEL_RUNS=3 \
  python3 benchmarks/parallel_map_hotpath.py

The same script runs under Python 3.14t. The API microbenchmarks are available in benchmarks/api_hotpaths.py.

Measured on a Python 3.14.6 free-threaded build on x86_64 Linux with compiled-pattern reuse and JIT enabled. Times are the best of several runs; lower is better. Only workloads where PyPcre is decisively faster than both stdlib.re and regex are shown.

A reproducible version of this benchmark lives in benchmarks/competitor_bench.py.

findall — large multiline and lookaround workloads

Workload PyPcre (ms) re (ms) regex (ms) PyPcre edge
Extract WARN / ERROR lines (multiline) 0.664 27.159 30.772 40.9x vs re, 46.3x vs regex
Per-line full-name extraction (multiline) 0.914 25.685 14.482 28.1x vs re, 15.8x vs regex
Lookbehind + negative-lookahead tokens 1.874 12.353 10.386 6.6x vs re, 5.5x vs regex

Patterns used:

# WARN/ERROR lines and full-name extraction
^(?:WARN|ERROR).*?$        # with re.MULTILINE / pcre.Flag.MULTILINE
^[A-Z][a-z]+ [A-Z][a-z]+   # with re.MULTILINE / pcre.Flag.MULTILINE

# lookbehind + negative lookahead
(?:(?<=foo)bar|baz)(?!qux)

finditer — same workloads

Measured on a Python 3.10 x86_64 Linux build with compiled-pattern reuse and JIT enabled. A reproducible version lives in benchmarks/finditer_bench.py.

Workload PyPcre (ms) re (ms) regex (ms) PyPcre edge
Extract WARN / ERROR lines 0.663 30.747 31.862 46.4x vs re, 48.0x vs regex
Per-line full-name extraction 0.919 29.127 14.103 31.7x vs re, 15.3x vs regex
Lookbehind + negative lookahead 3.755 15.828 11.896 4.2x vs re, 3.2x vs regex

sub / subn — high-volume replacement workloads

Measured on a Python 3.10 x86_64 Linux build with compiled-pattern reuse and JIT enabled. Times are the best of several runs; lower is better. The benchmark replaces 100,000 space-separated tokens.

A reproducible version lives in benchmarks/sub_bench.py.

Workload PyPcre (ms) re (ms) regex (ms) PyPcre edge
Literal replacement (\w+[X]) 5.933 13.367 19.107 2.3x vs re, 3.2x vs regex
Single numeric backref ((w)\d+[\1]) 7.221 64.715 25.482 9.0x vs re, 3.5x vs regex
Two numeric backrefs ((w)(\d+)\2-\1) 17.600 76.222 32.048 4.3x vs re, 1.8x vs regex
Named backref ((?P<g>\w+)<\g<g>>) 14.684 71.053 30.222 4.8x vs re, 2.1x vs regex

split — high-volume delimiter workloads

Measured on a Python 3.10 x86_64 Linux build with compiled-pattern reuse and JIT enabled. Times are the best of several runs; lower is better. The benchmark splits 100,000 space-separated tokens.

A reproducible version lives in benchmarks/split_bench.py.

Workload PyPcre (ms) re (ms) regex (ms) PyPcre edge
Delimiter no group (\s+) 7.315 17.394 19.690 2.4x vs re, 2.7x vs regex
Delimiter with group ((\s+)) 12.360 21.099 25.145 1.7x vs re, 2.0x vs regex
Single char ( ) 4.583 3.990 14.577 parity vs re, 3.2x vs regex
Single char with group (( )) 8.913 11.091 18.595 1.2x vs re, 2.1x vs regex
Empty pattern ('') 5.228 45.552 69.913 8.7x vs re, 13.4x vs regex

Free-Threaded Benchmark Highlights 🧵

Measured on the same Python 3.14.6 free-threaded build with 8 threads fanning out over split copies of each workload. Times are the best of several runs; lower is better.

A reproducible version lives in benchmarks/free_threaded_bench.py.

Workload PyPcre (ms) re (ms) regex (ms) PyPcre edge
Extract WARN / ERROR lines (findall) 0.672 9.063 9.297 13.5x vs re, 13.8x vs regex
Per-line full-name extraction (findall) 0.913 8.611 4.575 9.4x vs re, 5.0x vs regex

PyPcre is the stronger all-around choice when you want more than the baseline: full PCRE2 features, more expressive syntax, JIT, explicit free-threaded support, and a stable re-compatible API surface. It keeps Python ergonomics while giving you a substantially more capable engine. 🚀

Installation 📦

pip install PyPcre

By default, the package links against the system libpcre2-8 shared library for fast installs and to inherit OS security updates. See Building for manual build details.

Platform Support (Validated) ✅

Linux, macOS, Windows, WSL, FreeBSD

Usage 🛠️

If you already use the standard library re, migration is often just an import swap:

import pcre as re

The high-level API stays close to the standard library, so most existing re code can move over with little or no rewriting.

Quick start 🚀

from pcre import compile, findall, match, search, Flag

if match(r"(?P<word>\\w+)", "hello world"):
    print("found word")

pattern = compile(rb"\d+", flags=Flag.MULTILINE)
numbers = pattern.findall(b"line 1\nline 22")

API Overview 🧭

  • Module helpers: prefixmatch, match, search, fullmatch, finditer, findall, split, sub, subn, compile, escape, purge, and parallel_map.
  • compile() returns a Pattern object with the familiar matching helpers plus split(), sub(), and subn().
  • Pattern exposes .pattern, .flags, .jit, .groupindex, and .groups for introspection.
  • Match objects expose the usual group(), groups(), groupdict(), start(), end(), span(), and expand() methods, along with .re, .string, .pos, .endpos, .lastindex, .lastgroup, and .regs.
  • Flags are available through pcre.Flag and familiar aliases such as IGNORECASE, MULTILINE, DOTALL, VERBOSE, ASCII, UNICODE, and NOFLAG.
  • Errors are raised as pcre.PcreError; error and PatternError are kept as compatibility aliases.

Common examples 🧪

Compiled patterns:

from pcre import compile, Flag

pattern = compile(r"(?P<name>[A-Za-z]+)", flags=Flag.CASELESS)
match = pattern.search("User: alice")
print(match.group("name"))  # alice

Substitution:

from pcre import sub

result = sub(r"\d+", "#", "room 101")
print(result)  # room #

Bytes:

from pcre import compile

pattern = compile(br"\w+")
print(pattern.findall(b"ab cd"))  # [b'ab', b'cd']

Stdlib re compatibility 🔁

  • Module-level helpers and the Pattern class follow the same call shapes as the standard library re module, including pos, endpos, and flags behavior.
  • Python 3.15's prefixmatch() alias is available at both the module level and on compiled Pattern objects, and re.NOFLAG is re-exported as the zero-value compatibility alias.
  • Pattern mirrors re.Pattern attributes like .pattern, .groupindex, and .groups, while Match objects surface the familiar .re, .string, .pos, .endpos, .lastindex, .lastgroup, .regs, and .expand() API.
  • Substitution helpers enforce the same type rules as the standard library re module: string patterns require string replacements, byte patterns require bytes-like replacements, and callable replacements receive the wrapped Match.
  • compile() accepts native Flag values as well as compatible re.RegexFlag members from the standard library. Supported stdlib flags map 1:1 to PCRE2 options (IGNORECASE→CASELESS, MULTILINE→MULTILINE, DOTALL→DOTALL, VERBOSE→EXTENDED); passing unsupported stdlib flags raises a compatibility ValueError to prevent silent divergences.
  • pcre.escape() delegates directly to re.escape for byte and text patterns so escaping semantics remain identical.
  • String patterns enable Unicode behavior by default. Byte patterns do not.

regex package compatibility 🔄

The regex package interprets \uXXXX and \UXXXXXXXX escapes as UTF-8 code points, while PCRE2 expects hexadecimal escapes to use the \x{...} form. Enable Flag.COMPAT_UNICODE_ESCAPE to translate those escapes automatically when compiling patterns:

from pcre import compile, Flag

pattern = compile(r"\\U0001F600", flags=Flag.COMPAT_UNICODE_ESCAPE)
assert pattern.pattern == r"\\x{0001F600}"

Set the default behavior globally with pcre.configure(compat_regex=True) so that subsequent calls to compile() and the module-level helpers apply the conversion without repeating the flag.

Common issues ⚠️

  • Unsupported stdlib flags such as re.DEBUG, re.LOCALE, and re.ASCII raise ValueError. If you want ASCII-style behavior, use pcre.ASCII or Flag.NO_UTF | Flag.NO_UCP.
  • Replacement types must match the subject type: text patterns use str replacements, while byte patterns use bytes-like replacements.
  • If you are porting patterns from the third-party regex package, check \u and \U escapes first. That is the most common compatibility gap.
  • Most users do not need to tune caching, JIT, or threading. The defaults are intended to work well out of the box.

Optional runtime controls 🎛️

  • pcre.configure(jit=False) disables JIT globally. Flag.JIT and Flag.NO_JIT let you override that per pattern.
  • pcre.set_cache_limit(), pcre.get_cache_limit(), and pcre.clear_cache() control every high-level compile/template helper cache in the active context. A zero limit disables them, and None uses a 256-entry hard safety ceiling rather than permitting unbounded growth. High-level cache entries never cross thread scope in the default thread-local strategy; a clear invalidates live workers' high-level helper caches on their next cache-backed call. Backend scratch buffers remain thread-scoped and are released when that thread exits. Oversized patterns and templates are not retained.
  • pcre.configure_threads(), pcre.configure_thread_pool(), shutdown_thread_pool(), Flag.THREADS, and Flag.NO_THREADS are available if you want to opt into or restrict threaded execution.

Building 🏗️

The extension links against an existing libpcre2-8 installation. Install the development headers for your platform before building, for example apt install libpcre2-dev on Debian/Ubuntu, dnf install pcre2-devel on Fedora/RHEL derivatives, or brew install pcre2 on macOS.

If the headers or library live in a non-standard location, you can export one or more of the following environment variables prior to invoking the build (pip install ., python -m build, etc.):

  • PYPCRE_ROOT
  • PYPCRE_INCLUDE_DIR
  • PYPCRE_LIBRARY_DIR
  • PYPCRE_LIBRARY_PATH (pathsep-separated directories or explicit library files to prioritize when resolving libpcre2-8)
  • PYPCRE_LIBRARIES
  • PYPCRE_CFLAGS
  • PYPCRE_LDFLAGS

If you would rather force a source build, set PYPCRE_BUILD_FROM_SOURCE=1 before installing.

When pkg-config is available, the build automatically picks up the required include and link flags via pkg-config --cflags/--libs libpcre2-8. Without pkg-config, the build script scans common installation prefixes for Linux distributions (Debian, Ubuntu, Fedora/RHEL/CentOS, openSUSE, Alpine), FreeBSD, and macOS (including Homebrew) to locate the headers and libraries.

If your system ships libpcre2-8 under /usr but you also maintain a manually built copy under /usr/local, export PYPCRE_LIBRARY_PATH (and, if needed, a matching PYPCRE_INCLUDE_DIR) so the build links against the desired location.

About

No description, website, or topics provided.

Resources

Stars

6 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages