Metadata-Version: 2.1
Name: get-nic
Version: 0.0.2
Summary: Get Network Interface details
Home-page: https://github.com/tech-novic/get-nic-details
Author: tech-novic
Author-email: pradish.purushottaman@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown

# get-nic-details
Get Network Interface details

### Getting started
pip3 install get_nic

from get_nic import getnic

# To get list of intefaces
getnic.interfaces()

Output:
["eth0", "wlo1"]

# To get all interface details
>>>interfaces = getnic.interfaces()
>>>getnic.ipaddr(interfaces)

# To get selected interface details, example lo, eth0
>>>interface_list = ['lo','etho']
>>>getnic.ipaddr(interface_list)


