python获取本机外网ip的方法

作者:令狐不聪 时间:2022-06-24 01:57:16 

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

标签:python,获取,ip
0
投稿

猜你喜欢

  • Windows中使用wxPython和py2exe开发Python的GUI程序的实例教程

    2021-07-07 08:52:17
  • MySQL 5.6 中 TIMESTAMP 的变化分析

    2024-01-22 04:30:14
  • 数据库 关键字一览表

    2024-01-22 23:27:21
  • Pytorch中torch.argmax()函数使用及说明

    2021-11-24 14:49:31
  • Golang利用casbin实现权限验证详解

    2023-08-06 23:18:45
  • python if not in 多条件判断代码

    2023-06-29 17:40:57
  • 从数据行入手保护SQL Server数据安全

    2009-04-13 10:28:00
  • js实现带有介绍的Select列表菜单实例

    2024-04-19 10:26:22
  • Python实现矩阵加法和乘法的方法分析

    2023-07-30 09:39:06
  • 详解sql中的参照完整性(一对一,一对多,多对多)

    2024-01-22 14:19:48
  • pyinstaller 3.6版本通过pip安装失败的解决办法(推荐)

    2023-10-13 11:55:44
  • Python实现PIL图像处理库绘制国际象棋棋盘

    2021-06-20 14:18:08
  • Oracle中的translate函数和replace函数的用法详解

    2024-01-16 15:46:29
  • ASP.NET web.config中 数据库连接字符串加密解密

    2024-01-14 07:02:09
  • python批量导出导入MySQL用户的方法

    2024-01-29 02:58:42
  • Bootstrap警告框(Alert)插件使用方法

    2024-04-27 15:23:05
  • python实现自动获取IP并发送到邮箱

    2023-02-15 13:09:56
  • JS 循环li添加点击事件 (闭包的应用)

    2024-04-10 10:48:45
  • Python Numpy,mask图像的生成详解

    2022-12-03 01:08:45
  • ES6入门教程之let和const命令详解

    2024-05-22 10:37:07
  • asp之家 网络编程 m.aspxhome.com