(regex: str, text: str)
| 612 | |
| 613 | |
| 614 | def match_regex(regex: str, text: str) -> bool: |
| 615 | return ( |
| 616 | re.compile( |
| 617 | regex, flags=RegexFlag.IGNORECASE | RegexFlag.MULTILINE | RegexFlag.DOTALL |
| 618 | ).search(text) |
| 619 | is not None |
| 620 | ) |
| 621 | |
| 622 | |
| 623 | def download_file(url: str, output_file_path: str | None = None) -> str: |