Metadata-Version: 2.4
Name: isimud
Version: 0.3
Summary: Package to get commonly used details of the network interface and access points you are using.
Author-email: "Carlos A. Planchón" <carlosandresplanchonprestes@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/carlosplanchon/isimud
Keywords: isimud,sensors,wifi,networking
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: netifaces
Requires-Dist: pyroute2
Dynamic: license-file

# Isimud
*Package to get commonly used details of the network interface and access points you are using.*

## Installation
### Install with uv:
```
uv add isimud
```

## Features

- Get loopback, ethernet and wifi interfaces.
- Get operstate, mac_address, recv and sent bytes of an interface.
- Get ESSID, signal percent and MAC address of an interface.

## Usage
```
In [3]: import isimud

In [4]: isimud.get_eth_interfaces()

Out[4]: ['enp9s0']
```
