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

Uploaded Python 3

File details

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

File metadata

  • Download URL: pycregex-2.0.0.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.0.tar.gz
Algorithm Hash digest
SHA256 eeccc2c5ee02693c6d5e41ba5b507b0357d367a74b9042eff33a0bf4072f1bd3
MD5 5698399f65f5379aa0becca40b9a5d68
BLAKE2b-256 2a14b06a4fd0756e71a65cfa066a5fd38e393fb014c462c935584f739a2d6db3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pycregex-2.0.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f26fe086ec7ce32543a92a0d8dcbaadde00b60e2d323841f8bf5b83a07f5090
MD5 0a9ae7efa2b0d70f549572a273e4c283
BLAKE2b-256 2d7737b49403b91c2caa8f0f3ad66c9ce18d870ba9dbe53bf5763f89288550a0

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