脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python获取本机外网ip的方法

python获取本机外网ip的方法

2020-06-07 10:31令狐不聪 Python

这篇文章主要介绍了python获取本机外网ip的方法,可实现从外网显示IP的网站获取本机IP的功能,非常具有实用价值,需要的朋友可以参考下

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

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

?
1
2
3
4
5
6
7
8
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程序设计有所帮助。

延伸 · 阅读

精彩推荐