mirror of
https://github.com/joepie91/python-whois.git
synced 2026-02-04 03:16:51 -06:00
6 lines
127 B
Python
6 lines
127 B
Python
from . import net, parse
|
|
|
|
def get_whois(domain):
|
|
raw_data = net.get_whois_raw(domain)
|
|
return parse.parse_raw_whois(raw_data)
|