Created
May 3, 2021 08:32
-
-
Save Tynael/fc576a58f4c7a840fd3d5efb0b880ced to your computer and use it in GitHub Desktop.
Python Code Example
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 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example used for: https://neutrondev.com/5-popular-programming-languages-and-their-uses/