Metadata-Version: 2.4
Name: macvendorscli
Version: 0.0.2
Summary: CLI and Python library to lookup MAC address vendors using the macvendors API.
Author-email: Juan Bindez <juanbindez780@gmail.com>
License: GPLv2 license
Project-URL: Homepage, https://github.com/juanbindez/macvendorscli
Project-URL: Bug Reports, https://github.com/juanbindez/macvendorscli/issues
Keywords: mac address,network,vendor lookup,cli,network tools,macvendors,oui
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# macvendorscli

[![PyPI - Downloads](https://img.shields.io/pypi/dm/macvendorscli)](https://pypi.org/project/macvendorscli/)
![PyPI - License](https://img.shields.io/pypi/l/macvendorscli)
[![GitHub Tag](https://img.shields.io/github/v/tag/JuanBindez/macvendorscli?include_prereleases)](https://github.com/JuanBindez/macvendorscli/releases)
[![PyPI - Version](https://img.shields.io/pypi/v/macvendorscli)](https://pypi.org/project/macvendorscli/)

## CLI and Python library to lookup MAC address vendors using the macvendors API.

## Install
    pip install macvendorscli

## Or install from source
    git clone https://github.com/JuanBindez/macvendorscli
    cd macvendorscli
    pip install .

## Usage CLI

    macvendorscli FC:FB:FB:01:FA:21

## Scripts

```python
from macvendorscli import MacVendors

client = MacVendors()

vendor = client.get_vendor("FC:FB:FB:01:FA:21")

print(vendor)
```
