Skip to content

hustcc/mac.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mac.py

A python lib to search Manufacturer of mac address. With only one method search.

一个用于利用物理地址查询网卡所属厂商的Python库,只有一个Api方法。

Build Status PyPi Status Python Versions PyPi Downloads

Install

pip install mac.py

Usage

from macpy import Mac

mac = Mac()
mac.search('00016C')
mac.search('00:01:6C:06:A6:29')
mac.search('00-01-6C-06-A6-29')
mac.search('00') # None
mac.search('') # None

Output

search result will be

{
	're': 'Brea  CA  92821', 
	'com': 'FOXCONN', 
	'addr': '105 S Puente St.', 
	'co': 'US'
}

or None

What's the meaning of result dict key:

  • com: company name
  • re: company region
  • addr: company address
  • co: company country

Online Search

Welcome to issue or pr.

About

⚡A python lib to search Manufacturer of physical network card by mac address. 一个通过物理地址查询网卡所属厂商的Python库。

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published