First release :tada:
- One can compile or return regex pattern
- Updated docs
New functionalities:
- none_or_many(what: RegEx) -> RegEx
- one_or_more(what: RegEx) -> RegEx
- none_or_one(what: RegEx) -> RegEx
- any_of_char(items: str) -> RegEx
- regex_range(min: str, max: str) -> RegEx
- group(what: RegEx, name=None, non_capturing=False) -> RegEx
- look_ahead(what: RegEx, negative=False) -> RegEx
- look_behind(what: RegEx, negative=False) -> RegEx
- any_of_characters(regex_list: List[str]) -> RegEx
- times(what: RegEx, min: int, max: int = None) -> RegEx
- repeat(what: RegEx, count: int) -> RegEx
- negate(what: RegEx) -> RegEx
You can find more information in [documentation](https://github.com/netguru/SimpleRegEx/blob/main/docs/index.md).