Created
February 19, 2017 20:37
-
-
Save Tynael/01848fd04a443b02c8f83173af5052b1 to your computer and use it in GitHub Desktop.
Find your IP address
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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