Validating and Parsing Email Addresses

  • + 0 comments

    Read the instructions thoroughly. It includes an example for the first step in parsing, using email.utils.parseaddr(). If that returns an email address, check its validity using re.match() with a regex as described in the instructions.

    And then… Voilà! You're done!