Metadata-Version: 2.1
Name: mac2vendors
Version: 1.4.0
Summary: Convert mac addresses to vendor information/ names !
Home-page: https://github.com/4thel00z/swag
Author: ransomware
Author-email: 4thel00z@gmail.com
License: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Keywords: mac vendor address converter manuf wireshark arp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: dev
Provides-Extra: test

mac2vendors
===========

Convert mac addresses to vendor information/ names !

Installation
------------

``pip install mac2vendors``

Usage
-----

::

    mtv --help

    usage: mtv [-h] {mac} ...

    positional arguments:
      {mac}  [command] help
        mac        Translates the mac address to a vendor mapping.

    optional arguments:
      -h, --help   show this help message and exit

Raw Usage
---------

Use from code
~~~~~~~~~~~~~

::

    from mac2vendors import get_mac_vendor
    vendor_list = get_vendor(mac_address="00:00:00")
    print(vendor_list)
    [['00:00:00', '00:00:00', 'Officially Xerox, but 0:0:0:0:0:0 is more common']]


