An open API service indexing awesome lists of open source software.

https://github.com/carlosplanchon/isimud

Package to get commonly used details of the network interface and access points you are using.
https://github.com/carlosplanchon/isimud

isimud network python python3 sensors wifi

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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']
```