simple-wifi-qrcode

Generates a QRCode to join wifi networks by scanning it


Keywords
wifi, qrcode, scan
License
Other
Install
pip install simple-wifi-qrcode==1.4.4

Documentation

simple-wifi-qrcode

Generates QR Code to join wifi networks

Installation

python -m pip install simple-wifi-qrcode
  • Requires Python 3.9 or later

Usage

simple-wifi-qrcode [-h] --output OUTPUT --ssid SSID --password PASSWORD --alg {WEP,WPA,nopass} [--random-password] [--verbose]

options:
  -h, --help               show this help message and exit
  --output OUTPUT          The PNG file that will store the QR Code
  --ssid SSID              The SSID of the network
  --password PASSWORD      The password of the network
  --alg {WEP,WPA,nopass}   The authentication algorithm
  --random-password        Generate a random password for the network
  --verbose                Print verbose information

Docker

# sample creating a PNG QR Code file using Docker
docker run --rm -v qrcodes:/app/src/qrcodes  jplobianco/simple-wifi-qrcode --output qrcodes/output.png --ssid net1 --password pass1 --alg WPA --verbose