import whois
site = input('enter site : ')
M = whois.whois(site)
print(M)
When I input,
enter site : google.com
I got following response (error):
Traceback (most recent call last):
File "f:/Programming/project/Project/whois.py", line 1, in <module>
import whois
File "f:\Programming\project\Project\whois.py", line 4, in <module>
M = whois.whois(site)
TypeError: 'module' object is not callable