Skip to main content

iw client stats, get connected wireless client connection statistics

Project description

IWCS - WiFi Client Stats Utility

This utility collects statistics of WiFi clients connected to a specified interface on your system.

Prerequisites

Ensure that the iw command-line tool is installed on your system. If not, you can install it using the following command:

sudo apt-get install iw

Usage

Python Function

You can use the provided Python function info(interface) to collect WiFi client statistics.

from iwcs import info

# Replace 'wlan0' with your wireless interface if necessary
stats = info(interface='wlan0')
print(stats)

The function returns a dictionary containing connection stats for each connected client identified by their MAC address.

Example

from iwcs import info

interface = "wlan0"  # Replace with your wireless interface
connected_clients_info = info(interface)
print(connected_clients_info)

Output

The output is a dictionary where each key represents a MAC address of a connected client. The corresponding value is another dictionary containing various statistics such as inactive time, received bytes, transmitted bytes, signal level, etc.


License

This project is licensed under the terms of the MIT license. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iwcs-0.0.4.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

iwcs-0.0.4-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page