Skip to content

Instantly share code, notes, and snippets.

@damianesteban
Created August 2, 2013 01:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damianesteban/6136907 to your computer and use it in GitHub Desktop.
Save damianesteban/6136907 to your computer and use it in GitHub Desktop.
What is my IP address?
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment