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.1.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.1-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pycregex-2.0.1.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.1.tar.gz
Algorithm Hash digest
SHA256 86064ee596c38cd728b9404fb7006c66129a9953a6314c40824bcc505af0da8f
MD5 e43506ed01d2b83f29fc198a6c027ebd
BLAKE2b-256 09eec2ce9d29d6e2f6ea0468b8695dc103a3776ecb96cfdd207f5e4285ce2481

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycregex-2.0.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2e0b4bb799dd354a1031a6c105d91778e79dce4e3e4292ec5a82a1db84331f29
MD5 8ec58868038780e1428dc6f179b3a32f
BLAKE2b-256 16aa646b9d152a4c416be67a821ab0ad4f9047c782e1c460325cc131f072f442

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