Skip to main content

An implementation of GNU libc regex in Python

Project description

Pycregex, C-style POSIX BRE (and ERE) syntax regex for Python

This package brings libc's <regex.h> API to Python. While Python has re and there's the regex package, they do not have the syntax of <regex.h>. The simplest example is the regex pattern f\(oo\) which is not supported by either of the mentioned packages, because neither supports escaping the parentheses. The syntax of <regex.h> is specified in POSIX, see the Base Specification v8 Regular Expressions chapter.

This is not a glorious API, but if you need it, here it is.

Example

We search with subgroups, and show how the subgroup begin/end indices are accessed.

import pycregex
# Note that this package only works with binary strings. nmatch is
# number of groups plus one because we must include the entire match.
p = pycregex.compile(b"f\\(oo\\)", nmatch=2)
p.search(b"foo") # ==> 0
p.span() # ==> [(0, 3), (1, 3)]

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

pycregex-2.0.2.tar.gz (17.3 kB view details)

Uploaded Source

Built Distribution

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

pycregex-2.0.2-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

Details for the file pycregex-2.0.2.tar.gz.

File metadata

  • Download URL: pycregex-2.0.2.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for pycregex-2.0.2.tar.gz
Algorithm Hash digest
SHA256 ac3d16af0becfb5767dd9943e72668948f933c89bd62863a52f4447542d471c3
MD5 18434e80a90673d3c6994ff64b5bba7c
BLAKE2b-256 0ba2dd641a8656b3c874822a1e45f4b4ea3738105cef2fb190013b650287cd81

See more details on using hashes here.

File details

Details for the file pycregex-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: pycregex-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 19.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for pycregex-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 064b620e16ffc1e96486f5371b4748d534e9f0619d7e0ac094896305ee152130
MD5 10d7ebc5606b0334b892cf69fbc3598e
BLAKE2b-256 b6c5c53f46b09c284df78059d02c814f54f89dce3d3aa5e2356047bf284bf17d

See more details on using hashes here.

Supported by

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