import requests
# get your current public ip's info:
req = requests.get('https://utilities.tk/network/info')
# or specify an ip to check
req = requests.get('https://utilities.tk/network/info?ip=1.1.1.1')
print(req.status_code)
print(req.json())
import re
f = open('C:/Users/Admin/Downloads/iplogs.txt', 'r') #Text file with many ip address
o = f.read()
ip1 = re.findall( r"d{1,3}.d{1,3}.d{1,3}.d{1,3}", o )
hosts = ip1
for host in hosts:
print(host)