首页 > 编程 > Python > 正文

python获取本机外网ip的方法

2020-01-04 19:22:58
字体:
来源:转载
供稿:网友

本文实例讲述了python获取本机外网ip的方法。分享给大家供大家参考。具体如下:

python从显示ip地址的网站获取本机外网ip,这段python代码抓取网站上的ip地址信息

import urllibimport reprint "we will try to open this url, in order to get IP Address"url = "http://checkip.dyndns.org"print urlrequest = 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程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表