Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created May 3, 2021 08:32
Show Gist options
  • Select an option

  • Save Tynael/fc576a58f4c7a840fd3d5efb0b880ced to your computer and use it in GitHub Desktop.

Select an option

Save Tynael/fc576a58f4c7a840fd3d5efb0b880ced to your computer and use it in GitHub Desktop.
Python Code Example
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
@Tynael
Copy link
Author

Tynael commented May 3, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment