python从显示ip地址的网站获取本机外网ip,这段python代码抓取网站上的ip地址信息
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
希望本文所述对大家的Python程序设计有所帮助。
查看更多关于python获取本机外网ip的方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did88444