I'm trying to use IPwhois module. I installed it using PIP and when i try to import the module and use it in my script, it's giving below error:
"ModuleNotFoundError: No module named 'ipwhois'".
Code:
from ipwhois import IPWhois
from pprint import pprint
obj = IPWhois('74.125.225.229')
results = obj.lookup()
pprint(results)