Skip to main content

An implementation of POSIX 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.4.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.4-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pycregex-2.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 afe2b1f07499b6f2258024d8b32d627e93e7b29be28ae79d8471aade104fc126
MD5 f8924ca91cb10674e524d8e5dde1d9f6
BLAKE2b-256 fea6a41b7a8605b5891aff4b5778cd26d400b5c1363e4f373d9faa2eb78ab53a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycregex-2.0.4-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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e4cfda5224ea26a92cc8c5646ce185ed0e1b2e235e8545ea1759531bef916d5e
MD5 81bf23a76c13ede3f24dd0fd7ba0ae47
BLAKE2b-256 705b2b7c6bf342b4e2d0f105ee3d5b31fa2e8953c21997a2aacfd7f40a5813b5

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