Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created February 19, 2017 20:37
Show Gist options
  • Save Tynael/01848fd04a443b02c8f83173af5052b1 to your computer and use it in GitHub Desktop.
Save Tynael/01848fd04a443b02c8f83173af5052b1 to your computer and use it in GitHub Desktop.
Find your 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