码迷,mamicode.com
首页 > 编程语言 > 详细

python 跨平台获取网卡信息和本机ip地址

时间:2017-06-10 18:16:47      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:get   app   turn   python   ==   利用   例子   blog   items   

笔者在项目中遇到过获取本机网卡ip的例子,利用python库psutil解决了此问题。

 

def get_netcard():
    """获取网卡名称和ip地址

    """
    netcard_info = []
    info = psutil.net_if_addrs()
    for k, v in info.items():
        for item in v:
            if item[0] == 2 and not item[1] == 127.0.0.1:
                netcard_info.append((k, item[1]))
    return netcard_info
if __name__ == __main__:
    print get_netcard()

 

python 跨平台获取网卡信息和本机ip地址

标签:get   app   turn   python   ==   利用   例子   blog   items   

原文地址:http://www.cnblogs.com/linyihai/p/6979145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!