I have been reviewing regex for Python3 to capture an email address. I have seen the doc on the popular regular-expressions website. And read the pydocs, SO answers, etc.
I would like to know if this regex is good enough to capture an email address or if I am missing something.
re.findall(r'[\w.+-]+@[\w.+-]+', some_string)