mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-05 03:54:31 -08:00
[fix] add utils.py
This commit is contained in:
9
src/jobspy/utils.py
Normal file
9
src/jobspy/utils.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import re
|
||||
from typing import Optional
|
||||
|
||||
|
||||
def extract_emails_from_text(text: str) -> Optional[list[str]]:
|
||||
if not text:
|
||||
return None
|
||||
email_regex = re.compile(r"[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}")
|
||||
return email_regex.findall(text)
|
||||
Reference in New Issue
Block a user