ouilookup icon indicating copy to clipboard operation
ouilookup copied to clipboard

A CLI tool and Python3 module for looking up hardware MAC addresses from the published OUI source at ieee.org.

Results 2 ouilookup issues
Sort by recently updated
recently updated
newest added

Script: ```py from ouilookup import OuiLookup OuiLookup().query('00:00:aa:00:00:00') OuiLookup().query(['00:00:01:00:00:00','00-00-10-00-00-00','000011000000']) OuiLookup().update() OuiLookup().status() ``` Output: ``` Traceback (most recent call last): File "C:\Users\BUZZARD\AppData\Local\Programs\Python\Python312\Lib\urllib\request.py", line 1344, in do_open h.request(req.get_method(), req.selector, req.data, headers, File "C:\Users\BUZZARD\AppData\Local\Programs\Python\Python312\Lib\http\client.py",...

The module name might have changed from 0.2.4 to 0.3.1 so the import statement went from: `from OuiLookup import OuiLookup` to `from ouilookup import OuiLookup` The 0.3.1 version also throws...