本代码通过查询那些提供ip地址查看的网站获取你自己的真实ip地址,如果你当前离线,则返回None
范例:
>>> print public_ip()
85.212.182.25
import urllib,random,re ip_regex = re.compile("(([0-9]{1,3}\.){3}[0-9]{1,3})") def public_ip(): ''' Returns your public IP address. Output: The IP address in string format. None if not internet connection available. ''' # List of host which return the public IP address: hosts = """http://www.whatismyip.com/ http://adresseip.com http://www.aboutmyip.com/ http://www.ipchicken.com/ http://www.showmyip.com/ http://monip.net/ http://checkrealip.com/ http://ipcheck.rehbein.net/ http://checkmyip.com/ http://www.raffar.com/checkip/ http://www.thisip.org/ http://www.lawrencegoetz.com/programs/ipinfo/ http://www.mantacore.se/whoami/ http://www.edpsciences.org/htbin/ipaddress http://mwburden.com/cgi-bin/getipaddr http://checkipaddress.com/ http://www.glowhost.com/support/your.ip.php http://www.tanziars.com/ http://www.naumann-net.org/ http://www.godwiz.com/ http://checkip.eurodyndns.org/""".strip().split("\n") for i in range(3): host = random.choice(hosts) try: results = ip_regex.findall(urllib.urlopen(host).read(200000)) if results: return results[0][0] except: pass # Let's try another host return None