Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/696bd5cb-0b40-8009-a7e4-526bb5959a3d
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===== #### ===== π¦ [GitHub: lakhanmankani/wifi_qrcode_generator](GitHub: lakhanmankani/wifi_qrcode_generator) A straightforward Python script that generates a Wi-Fi QR code using qrcode and Pillow. You can run it in Python or install as a package. GitHub<ref>{{cite web|title=GitHub|url=https://github.com/lakhanmankani/wifi_qrcode_generator|publisher=github.com|access-date=2026-01-18}}</ref> Features * Generates a QR image for an SSID + password. * Works with standard Wi-Fi formats (WPA, WEP, None). * Easy to use in your own script. Basic usage example (from readme): <syntaxhighlight lang="python">import wifi_qrcode_generator.generator qr_code = wifi_qrcode_generator.generator.wifi_qrcode( ssid='MyNetwork', hidden=False, authentication_type='WPA', password='MyPassword123' ) qr_code.make_image().save('wifi.png') </syntaxhighlight> β Scanning wifi.png with your iPhone camera connects to Wi-Fi. GitHub<ref>{{cite web|title=GitHub|url=https://github.com/lakhanmankani/wifi_qrcode_generator|publisher=github.com|access-date=2026-01-18}}</ref> ====== π¦ [GitHub: vinodvidhole/wifi-qr-code (Notebook)](GitHub: vinodvidhole/wifi-qr-code (Notebook)) ====== A Python notebook that explains and demonstrates generating Wi-Fi QR codes. Itβs more of an example/project you can adapt. GitHub<ref>{{cite web|title=GitHub|url=https://github.com/vinodvidhole/wifi-qr-code/blob/main/wifi-qr-code.ipynb|publisher=github.com|access-date=2026-01-18}}</ref> ====== π¦ [GitHub: ustayready/qrwifi](GitHub: ustayready/qrwifi) ====== Another lightweight script that generates a QR PNG from SSID and password, using standard libraries. GitHub<ref>{{cite web|title=GitHub|url=https://github.com/ustayready/qrwifi|publisher=github.com|access-date=2026-01-18}}</ref> ====== If you want a minimal example without a full repo, you can use a gist that just does Wi-Fi QR codes: ====== <syntaxhighlight lang="python">import pyqrcode import sys ssid = "YourNetwork" pwd = "YourPassword" protocol = "WPA" # valid: WPA, WEP, nopass data = f"WIFI:S:{ssid};T:{protocol};P:{pwd};;" qr = pyqrcode.create(data) qr.png(f"{ssid}_wifi.png", scale=5) </syntaxhighlight> This creates a PNG file that phones understand as a Wi-Fi network. Gist<ref>{{cite web|title=Gist|url=https://gist.github.com/GammaGames/7736c7741879e32b5ad2c8b587216445|publisher=gist.github.com|access-date=2026-01-18}}</ref>
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)