Looks up the vendor (manufacturer) for a given MAC address using the IEEE OUI database. Current version is 0.1.15, compatible with Python >=3.5 and <4. Released as needed, with stable API.
pip install mac-vendor-lookupVerified import paths — ran on the pinned version, not inferred.
Initialize MacLookup, update the OUI database, and look up a MAC address.
Use 'await mac.lookup(...)' in an async function, or use 'asyncio.run()' as shown in quickstart.
Ensure network access on first run, or use a local cache file by setting the 'MAC_VENDOR_CACHE' environment variable (not officially documented). Consider calling update_vendors() during setup.
Always use async/await pattern.
Add 'await' before mac.lookup('00:11:22:33:44:55') and make sure the calling function is async.Call await mac.update_vendors() first (or set a cache) to download the latest IEEE OUI list.
Use 'from mac_vendor_lookup import MacLookup'.
No dependency data recorded yet.