0 purchases
regexbuilder 1.0.0
Regex builder
programmatically make regex in python
Simple example
from regex_builder import Regex, Any
regex = (
Regex()
.section(Any("a", "b", "c"))
.section("hello")
)
print(regex)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.