extract emails from .de domains
authorAlex Verdyan <verdyan@gmail.com>
Sun, 14 May 2017 16:28:00 +0300
changeset 130 342b440137ce
parent 129 ac57dd5a6b20
child 131 193a62737030
extract emails from .de domains
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):