Issue
I'm 14, pardon my Python knowlege. I'm trying to make this program that will only run while I'm at school (on the school's Wifi) using an if/else statement like this:
if ontheschoolwifi:
Keep running the program
else:
close the program because im not at school and wont need it
I'd like to know how to let python know how to get what wifi it is connected to. Thank you, in advance, for your help :)
Solution
import subprocess
if "SchoolWifiName" in subprocess.check_output("netsh wlan show interfaces"):
print "I am on school wifi!"
Answered By - Mark Ch Answer Checked By - Willingham (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.