Saved Wifi Password #pythoncode07
SAVED WIFI PASSWORD
PythonCode7
This GUI used to extract the Previously Connected Wifi Devices Password. This GUI Works with Windows only because it uses the command like eg. "netsh wlan show profile name key=clear" Using this command we can get the password of the specified name.
You can also save the Extracted password in a txt file.
The Code is written Using OOPs concept.
To interact with the above command we will use subprocess module of python to interact with the command prompt as we seen in the IDE of the python in previous post.
The code contains:
1. Class wifi : which has the actual code of all the gui and process
2. Function Gui : which builts the gui in this all widget are written.
3. Function generate : when clicked on generate button of GUI it extract the password using subprocess module which is written inside the generate function
4. Function clear output : This function clear all the extracted output in the text.
5. Function Save file : This function saves the txt file of the extracted password.
I have made the executable file for this using "auto-py-to-exe".
I have attached the output video file below this.
Code :
Download Code File => Click Here
Download exe File => Click Here
Comments
Post a Comment