python获取mac地址的方法

Posted jubing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python获取mac地址的方法相关的知识,希望对你有一定的参考价值。

方法一:

  借助uuid模块

  def get_mac_address():
  import uuid
      node = uuid.getnode()
      mac = uuid.UUID(int = node).hex[-12:]
  return mac

技术图片

技术图片

方法二:

  按操作系统平台来:

  def get_mac_address():
    ‘‘‘
    @summary: return the MAC address of the computer
    ‘‘‘
    import sys
    import os
    mac = None
    if sys.platform == "win32":
        for line in os.popen("ipconfig /all"):
            print line
            if line.lstrip().startswith("Physical Address"):
                mac = line.split(":")[1].strip().replace("-", ":")
                break
    else:
        for line in os.popen("/sbin/ifconfig"):
            if ‘Ether‘ in line:
                mac = line.split()[4]
                break
    return mac

个人推荐方法一,简单通用

以上是关于python获取mac地址的方法的主要内容,如果未能解决你的问题,请参考以下文章

Python根据IP地址获取MAC地址

Python 获取 网卡 MAC 地址

python3获取本地MAC地址

python 实现获取电脑IP主机名Mac地址

python-获取本机mac地址

如何获取客户端的MAC地址