
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
| Samples | |
|---|---|
| Pattern | "* pattern" |
| Input | "First pattern" |
| Result | 👍🏼 |
| Pattern | "World's [] pattern" |
| Input | "World's coolest pattern" |
| Result | ["coolest"] |
| Pattern | "product id: [product_id], units: [units: int], price: [unit_price: decimal]" |
| Input | "Product ID: A123, Units: 3, Price: 1.23" (case-insensitive) |
| Result | {"product_id": "A123", "units": 3, "unit_price": Decimal("1.23")} |
This package owes everything, including most of the codebase, to Thomas Feldtmann's simplematch. All poor design decisions are mine. See this collection for other alternatives.
Status: Comprehensively tested but never used for anything real. All evolution is expected to be incremental.
pip install qre
My first little match:
import qre
assert qre.search("in [place]", "Match made in heaven") == {"place": "heaven"}
qre is mostly focused on collecting named groups from the input strings, so the return value is
an easy-to-access dict. Groups are denoted with brackets, which means that patterns are friendly
with f-strings.
For unnamed groups the returned object has been tweaked a little bit - they can be found as a list
in the unnamed attribute:
assert qre.match("[] [:int]", "Lesson 1").unnamed == ["Lesson", 1]
Type specifiers can be used with both named and unnamed groups. They act both as specs for the pattern to find and, when applicable, as converters to the right type.
Currently available types are:
intfloatdecimaldate (ISO)datetime (ISO)uuidlettersidentifier (letters plus numbers and underscore)emailurlipv4ipv6creditcardopen (any one of (, [, {)close (), ], or })You can register your own types and conversions with register_type(name, regex, converter=str).
As qre's goal is not to replicate the functionality of re, this can also act as the "escape hatch"
when you need just a little bit more than what qre offers.
Here's how to use register_type to turn an emoji into a textual description:
qre.register_type("mood", r"[😀😞]", lambda emoji: {"😀": "good", "😞": "bad"}.get(emoji, "unknown"))
assert qre.search("[mood:mood]", "I'm feeling 😀 today!") == {"mood": "good" }
Note that register_type manipulates a global object, so you only need to register custom types
once, probably somewhere towards the start of your program.
PRs for generally useful types are highly welcome.
Matching functions expect a pattern and a string to match against. The optional
case_sensitive argument is true by default.
match - Match pattern against the whole of the stringmatch_start - Match pattern against the beginning of the stringmatch_end - Match pattern against the end of the stringsearch - Return the first match of the pattern in the stringsearch_all - Return all matches of the pattern in the string as a listAll of the functions always return an object that is either truthy or falsy depending on whether
there was a match or not. They never return None, and the unnamed attribute contains at least an
empty list, so the returned object is always safe to iterate.
Alternatively, you can use the Matcher object. It has the following useful attributes:
regex for debugging the generated regex, or for copying it for use with plain reconverters for debugging the converters in usematcher = qre.Matcher("value: [quantitative:float]|[qualitative]", case_sensitive=False)
assert matcher.match("Value: 1.0") == {"quantitative": 1.0} # Or any of the other functions above
assert matcher.regex == "value:\\ (?P<quantitative>[+-]?(?:[0-9]*[.])?[0-9]+)|(?P<qualitative>.*)"
assert matcher.converters == {'quantitative': float}
As a final usage scenario, you can call qre on the command line:
$ python qre.py
usage: qre.py [-h] [--regex] pattern string
* - any character 0+ times+ - any 1 character? - any 1 character, maybe| - either of two characters or groups[name] - named group called "name", returned in the main dict.[] - unnamed group, returned in the unnamed list[name:4], [:4] - group that is 4 characters wide[name:int], [:int] - group that matches the type and is converted to that Python type[*], [+], [?], [|] - literal symbol, not wildcard[[, ]] - literal brackets, not groupsFAQs
Like re, but cuter.
We found that qre demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.