Dirk Gerbig

Results 1 issues of Dirk Gerbig

Email regex does not match [email protected] oder an other Adresse with valid "-" before @ It should be def _is_email(self, email): pattern = r'[\-\.\w]+@[-\.\w]+\.\w+' if re.fullmatch(pattern, email): return True