Skip to content
/ nmwifi Public

Python API (and CLI) to configure a Wi-Fi device through NetworkManager using a fallback Access Point.

Notifications You must be signed in to change notification settings

gruvw/nmwifi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nmwifi

The Python package nmwifi provides an API (and a CLI) to configure a Wi-Fi device through NetworkManager using a fallback Access Point.

Take a look at the project's roadmap to see upcoming features (and all the work accomplished).

Note - Check out the nmwifi python package on PyPI: https://pypi.org/project/nmwifi (managed using Poetry).

This package was initially developed for the Raspberry Pi to headlessly set up a Wi-Fi connection to a home router. However it works for any device that has at least one wireless network interface and that has NetworkManager installed.

Installation

  • Install by running: pip install nmwifi
  • Usage: nmwifi --help

Basic usage

The most common usage of the nmwifi tool is to first call setup (to configure the connections) and then keep the balance loop running forever. This will set up a Wi-Fi connection to the given SSID and password along with an Access Point (with default SSID and no password). When the Wi-Fi network is not available, NetworkManager will automatically switch to the Access Point (AP). The balance loop will periodically try to reconnect to the Wi-Fi network on AP mode.

Note: the synchronous calls can take some time to respond depending on the underlying NetworkManager behavior.

List every network interface on your machine by running the nmcli d command, select one that has the "wifi" type (often wlan0).

CLI

nmwifi setup -i <network-interface> -ws <wifi-ssid> -wp <wifi-password>
nmwifi balance -i <network-interface>

Python

import nmwifi

nmwifi.setup("<network-interface>", "<wifi-ssid>", "<wifi-password>")
nmwifi.balance("<network-interface>")

Contributions

Feel free to contribute by submitting pull requests, whether to add new features, improve existing functionality, or fix bugs :)

Before opening a new PR, make sure to open an issue to discuss it beforehand (first check if a similar issue does not already exist).

Powered by

This project would not be possible without the wonderful technologies below:

About

Python API (and CLI) to configure a Wi-Fi device through NetworkManager using a fallback Access Point.

Topics

Resources

Stars

Watchers

Forks

Languages