Skip to content

Instantly share code, notes, and snippets.

@maop
Forked from gnuget/gist:130856
Created June 16, 2009 20:12
Show Gist options
  • Save maop/130864 to your computer and use it in GitHub Desktop.
Save maop/130864 to your computer and use it in GitHub Desktop.
get your public ip
#!/usr/bin/env python
import urllib
def show_ip():
print urllib.urlopen("http://tuip.info/ip").read()
if __name__ == "__main__":
show_ip()
# u_u ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment