equal
deleted
inserted
replaced
817 |
817 |
818 class WhoisBg(WhoisEntry): |
818 class WhoisBg(WhoisEntry): |
819 """Whois parser for .bg domains |
819 """Whois parser for .bg domains |
820 """ |
820 """ |
821 regex = { |
821 regex = { |
|
822 'domain_name': 'DOMAIN NAME: *(.+)\n', |
|
823 'status': 'registration status: s*(.+)', |
822 'expiration_date': 'expires at: *(.+)', |
824 'expiration_date': 'expires at: *(.+)', |
823 } |
825 } |
824 |
826 |
825 dayfirst = True |
827 dayfirst = True |
826 |
828 |
833 |
835 |
834 class WhoisDe(WhoisEntry): |
836 class WhoisDe(WhoisEntry): |
835 """Whois parser for .de domains |
837 """Whois parser for .de domains |
836 """ |
838 """ |
837 regex = { |
839 regex = { |
|
840 'domain_name': 'Domain: *(.+)', |
|
841 'status': 'Status: *(.+)', |
838 'name': 'name: *(.+)', |
842 'name': 'name: *(.+)', |
839 'org': 'Organisation: *(.+)', |
843 'org': 'Organisation: *(.+)', |
840 'address': 'Address: *(.+)', |
844 'address': 'Address: *(.+)', |
841 'zipcode': 'PostalCode: *(.+)', |
845 'zipcode': 'PostalCode: *(.+)', |
842 'city': 'City: *(.+)', |
846 'city': 'City: *(.+)', |
855 |
859 |
856 class WhoisAt(WhoisEntry): |
860 class WhoisAt(WhoisEntry): |
857 """Whois parser for .at domains |
861 """Whois parser for .at domains |
858 """ |
862 """ |
859 regex = { |
863 regex = { |
|
864 'domain_name': 'domain: *(.+)', |
860 'name': 'personname: *(.+)', |
865 'name': 'personname: *(.+)', |
861 'org': 'organization: *(.+)', |
866 'org': 'organization: *(.+)', |
862 'address': 'street address: *(.+)', |
867 'address': 'street address: *(.+)', |
863 'zipcode': 'postal code: *(.+)', |
868 'zipcode': 'postal code: *(.+)', |
864 'city': 'city: *(.+)', |
869 'city': 'city: *(.+)', |