An open API service indexing awesome lists of open source software.

https://github.com/zomatree/regex-builder

a lib for making regex programmatically
https://github.com/zomatree/regex-builder

Last synced: 3 months ago
JSON representation

a lib for making regex programmatically

Awesome Lists containing this project

README

        

# Regex builder

programmatically make regex in python

## Simple example

```py
from regex_builder import Regex, Any

regex = (
Regex()
.section(Any("a", "b", "c"))
.section("hello")
)

print(regex)
```