Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import socket
- from urllib import urlopen
- def public_ip():
- read_res = urlopen('http://ipecho.net/plain').read()
- return read_res.decode('utf-8')
- def local_ip():
- return socket.gethostbyname(socket.gethostname())
- if __name__ == "__main__":
- print("Getting public and local IP...")
- print("Public IP: {}\nLocal IP: {}".format(public_ip(), local_ip()))
Advertisement
Add Comment
Please, Sign In to add comment