Closed SalmaanP closed 7 years ago
For the first IP, 'last changed' is the only event provided by RIPE: https://rdap.db.ripe.net/ip/77.88.55.60
You can get the registration info 'created' via legacy whois.
from ipwhois import ipwhois
result = ipwhois.IPWhois('77.88.55.60').lookup_whois()
print(result['nets'][-1]['created'])
The result shows a bug for the value in result['nets'][1]['range']. This should be checked for CIDR and converted to 'start_ip - end_ip'.
Merged in #189
I was interested in finding domain registration date of certain domains and did this but it didn't have the registration timestamp in it.
While if i do this for another IP I do get the registration information.
Any idea why this happens and how to get registration date for domains?