Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrjohannchang/winwifi
Windows Wi-Fi CLI utility written in Python
https://github.com/mrjohannchang/winwifi
executable python tool utility wi-fi windows
Last synced: 1 day ago
JSON representation
Windows Wi-Fi CLI utility written in Python
- Host: GitHub
- URL: https://github.com/mrjohannchang/winwifi
- Owner: mrjohannchang
- License: mpl-2.0
- Created: 2017-07-17T00:51:59.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T23:40:18.000Z (11 months ago)
- Last Synced: 2024-05-07T13:03:02.696Z (9 months ago)
- Topics: executable, python, tool, utility, wi-fi, windows
- Language: Python
- Homepage: https://pypi.org/project/winwifi/
- Size: 37.1 KB
- Stars: 34
- Watchers: 3
- Forks: 20
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winwifi
A Wi-Fi CLI tool for Windows.
It allows you to scan Wi-Fi Access Points without being an admin to disable and enable the Wi-Fi interface.Check [pipx](https://github.com/pypa/pipx) for installing as a standalone executable utility.
## Installation
```
pip install winwifi
```## Usage
```
wifi 0.0.5A Windows Wi-Fi CLI
Usage:
wifi [SWITCHES] [SUBCOMMAND [SWITCHES]] args...Meta-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitsSubcommands:
connect Connect to a specific access point; see 'wifi connect --help' for more info
connected Show the current connected Wi-Fi SSID; see 'wifi connected --help' for more info
disconnect Disconnect from a Wi-Fi access point; see 'wifi disconnect --help' for more info
forget Remove speicifc access points from the historical list; see 'wifi forget --help' for more info
history List the historical Wi-Fi access points; see 'wifi history --help' for more info
scan Scan and list nearby Wi-Fi access points; see 'wifi scan --help' for more infowifi connect 0.0.5
Connect to a specific access point
Usage:
wifi connect [SWITCHES] ssid [passwd='']Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitsSwitches
--oneshot Do not remember the connectionwifi connected 0.0.5
Show the current connected Wi-Fi SSID
Usage:
wifi connected [SWITCHES]Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitswifi disconnect 0.0.5
Disconnect from a Wi-Fi access point
Usage:
wifi disconnect [SWITCHES]Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitswifi forget 0.0.5
Remove speicifc access points from the historical list
Usage:
wifi forget [SWITCHES] ssids...Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitswifi history 0.0.5
List the historical Wi-Fi access points
Usage:
wifi history [SWITCHES]Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitswifi scan 0.0.5
Scan and list nearby Wi-Fi access points
Usage:
wifi scan [SWITCHES]Hidden-switches
-h, --help Prints this help message and quits
--help-all Print help messages of all subcommands and quit
-v, --version Prints the program's version and quitsSwitches
--refresh Force to refresh the Wi-Fi AP list
```