Script in Python to find out your external IP address

Configurare noua (How To)

Situatie

Solutie

Pasi de urmat

The URL that we will use to check the IP for is: http://checkip.dyndns.org

import urllib
import re

print "we will try to open this url, in order to get IP Address"

url = "http://checkip.dyndns.org"

print url

request = urllib.urlopen(url).read()

theIP = re.findall(r"d{1,3}.d{1,3}.d{1,3}.d{1,3}", request)

print "your IP Address is: ",  theIP

Tip solutie

Permanent

Voteaza

(1 din 6 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?