本帖最后由 wkdxz 于 2023-11-12 10:31 编辑
2023-11-12更新:带GUI界面源码和扫描计算机名的源码都已更新到附件
打包成品:【加GUI打包】Python一键提取局域网在线IP和对应Mac地址
https://www.52pojie.cn/thread-1854758-1-1.html
代码很简单,功能也很简单直接,需要的兄弟们自取。如果需要更专业的功能,请自行编写,或网络查找专业网络扫描工具。
[Python] 纯文本查看 复制代码 import os
import win32api, win32con
def msgbox(msg, title='提醒'):
win32api.MessageBox(0, msg, title, win32con.MB_OK)
def local_ip_mac(): #本机IP和MAC
output = os.popen('ipconfig /all')
for i in output:
if '物理地址.' in i:
mac = i.split(':')[1].strip()
if 'IPV4' in i.upper() and '(' in i:
ip = i.split(':')[1].split('(')[0].strip()
if ip and mac:
return [ip, mac]
def lan_ip_mac(): #局域网IP和MAC
ls = []
output = os.popen('arp -a')
for i in output:
if '动态' in i:
ip, mac, _ = i.strip().split()
ls.append([ip, mac])
return ls
if __name__ == '__main__':
res = lan_ip_mac()
res.append(local_ip_mac())
print(res)
# 结果写入文本
txt = 'ip_mac.txt'
out_txt = '\n'.join(['\t'.join(i) for i in res])
with open(txt, 'w') as f:
f.write(out_txt)
msgbox(f'提取结果已保存到:{txt}') #注释掉此行则不弹窗提醒
|