Answers for "ip in python"

-1

get ip python

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)
Posted by: Guest on March-10-2022

Python Answers by Framework

Browse Popular Code Answers by Language