Python package that generates Wi-Fi QR Codes that can be scanned for easily connecting to Wi-Fi.
Project description
WiFiQR-Gen (Wi-Fi QRCode Generator)
Python package that generates Wi-Fi QR Codes that can be scanned for easily connecting to Wi-Fi.
Installation
pip install WiFiQRGen
Usage
Basic Usage
To generate a Wi-Fi QR Code, you need to create a WifiNetworkSettings object. For a basic home network, you'll need to provide the SSID, password, and security type. The security type is an enum from the WifiSecurity class. Optionally, if you're network is hidden, you can set the hidden parameter to True, however it is False by default and assumes the network is visible.
Options for the WifiSecurity enum are:
WifiSecurity.NONEWifiSecurity.WEPWifiSecurity.WPAWifiSecurity.WPA2WifiSecurity.WPA3
from WiFiQRGen import WifiSecurity, WifiNetworkSettings
wifi_settings = WifiNetworkSettings(
ssid="MyWifiNetworkName",
password="MyWifiPassword12345",
security=WifiSecurity.WPA2
)
my_qr_code = wifi_settings.generate_qrcode()
my_qr_code.save("wifi_qr_code.png")
Advanced Usage (Enterprise Networks)
For enterprise networks, you'll need to provide additional information. The WifiNetworkSettings object has additional parameters for this. You'll need to provide the SSID, password, security type, EAP method, and phase 2 authentication. The EAP method is an enum from the WifiEapMethod class and the phase 2 authentication is an enum from the WifiPhase2Auth class.
Options for the WifiEapMethod enum are:
WifiEapMethod.NONEWifiEapMethod.PEAPWifiEapMethod.TLSWifiEapMethod.TTLSWifiEapMethod.PWDWifiEapMethod.SIMWifiEapMethod.AKAWifiEapMethod.AKA_PRIME
Options for the WifiPhase2Auth enum are:
WifiPhase2Auth.NONEWifiPhase2Auth.PAPWifiPhase2Auth.CHAPWifiPhase2Auth.MD5WifiPhase2Auth.MSCHAPWifiPhase2Auth.MSCHAPV2WifiPhase2Auth.GTC
You can also provide a logo to be displayed in the center of the QR Code. The logo should be a square image. The generate_qrcode method takes an optional embeded_image_path parameter.
The generate_base64_qrcode_png method takes an optional embeded_image_path parameter and returns a base64 string of the QR Code image.
from WiFiQRGen import WifiSecurity, WifiEapMethod, WifiPhase2Auth, WifiNetworkSettings
wifi_settings = WifiNetworkSettings(
ssid="MyWifiNetwork",
password="MyWifiPassword12345",
security=WifiSecurity.WPA2,
eap_method=WifiEapMethod.PEAP,
phase2_auth=WifiPhase2Auth.MSCHAPV2,
hidden=True,
identity="MyUsername"
)
# Generate QR Code with logo in center
my_qr_code = wifi_settings.generate_qrcode('path/to/logo.png')
# Save QR Code to file
my_qr_code.save("wifi_qr_code.png")
# Generate QR Code with a logo in the center and get it as a base64 string
base64_qr_code = my_qr_code.generate_base64_qrcode_png('path/to/logo.png')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wifiqrgen-0.1.0.tar.gz.
File metadata
- Download URL: wifiqrgen-0.1.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6253db3c8e818034de488e09c423f7736c92dabf72e1578a1524fa0a76c1830e
|
|
| MD5 |
2019ac12b463f4dbc15252e05956d1e9
|
|
| BLAKE2b-256 |
4c89524c389ab107903755858e45c05c1b74b455d8c949435ddeb1f117a42d57
|
File details
Details for the file wifiqrgen-0.1.0-py3-none-any.whl.
File metadata
- Download URL: wifiqrgen-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
885d7ffaef6c8c29d3929e7d1fc833041b2fcefe853a114c87093c85f5549f43
|
|
| MD5 |
e051508841fe9c4c3f439c6a1b655853
|
|
| BLAKE2b-256 |
6ddf24c0a4a39721d0fb12c6a6eaf21aa4f0139dfac3f05ccac32916215517f5
|