From 94ae133049a569800d2c14506759fea912cac2b2 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 24 Nov 2013 18:55:55 +0100 Subject: [PATCH] .br support (as far as they give out any info anyway...) --- pythonwhois/parse.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonwhois/parse.py b/pythonwhois/parse.py index 9d59165..d8012e7 100644 --- a/pythonwhois/parse.py +++ b/pythonwhois/parse.py @@ -422,6 +422,7 @@ def parse_registrants(data): "Registrant:[ ]*(?P.+)\n[\s\S]*Eligibility Type:[ ]*(Higher Education Institution|Company|Incorporated Association|Other)\n[\s\S]*Registrant Contact ID:[ ]*(?P.+)\n[\s\S]*Registrant Contact Name:[ ]*(?P.+)\n", # .au educational, company, 'incorporated association' (non-profit?), other (spotted for linux.conf.au, unsure if also for others) " Registrant:\n (?P.+)\n\n Registrant type:\n .*\n\n Registrant's address:\n The registrant .* opted to have", # Nominet (.uk) with hidden address " Registrant:\n (?P.+)\n\n Registrant type:\n .*\n\n Registrant's address:\n (?P.+)\n (?P.+)\n (?P.+)\n (?P.+)\n (?P.+)\n (?P.+)\n (?P.+)", # Nominet (.uk) with visible address + "owner:\s+(?P.+)", # .br "person:\s+(?P.+)", # nic.ru (person) "org:\s+(?P.+)", # nic.ru (organization) ]