Tell me how to make a request from Python 3 to find out if a domain is free or busy?
I tried these methods, but they did not work:
s = 'domaim.ru' m = os.system("whois %s" % s) print(m) m = whois.whois(s) print(m) Tell me how to make a request from Python 3 to find out if a domain is free or busy?
I tried these methods, but they did not work:
s = 'domaim.ru' m = os.system("whois %s" % s) print(m) m = whois.whois(s) print(m) Source: https://ru.stackoverflow.com/questions/811617/
All Articles