python获取本机外网ip的方法
时间:2021-07-27 08:18:30|栏目:Python代码|点击: 次
本文实例讲述了python获取本机外网ip的方法。分享给大家供大家参考。具体如下:
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程序设计有所帮助。
上一篇:Pycharm激活码激活两种快速方式(附最新激活码和插件)
栏 目:Python代码
本文标题:python获取本机外网ip的方法
本文地址:http://www.codeinn.net/misctech/161755.html






