>  기사  >  백엔드 개발  >  python获取本机外网ip的方法

python获取本机外网ip的方法

WBOY
WBOY원래의
2016-06-10 15:15:051700검색

本文实例讲述了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程序设计有所帮助。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.