# HG changeset patch # User Alex Verdyan # Date 1494768480 -10800 # Node ID 342b440137ce8778d346d398bdfeb755f42969ab # Parent ac57dd5a6b2074b08b0e0f48a9f9fb323d541c6b extract emails from .de domains diff -r ac57dd5a6b20 -r 342b440137ce whois/parser.py --- a/whois/parser.py Mon Jul 17 12:07:49 2017 +0100 +++ b/whois/parser.py Sun May 14 16:28:00 2017 +0300 @@ -823,7 +823,9 @@ 'city': 'City: *(.+)', 'country_code': 'CountryCode: *(.+)', 'phone': 'Phone: *(.+)', - 'fax': 'Fax: *(.+)' + 'fax': 'Fax: *(.+)', + 'emails': EMAIL_REGEX # list of email addresses + } def __init__(self, domain, text):