Answers for "how to disconnect wifi using python"

0

how to disconnect wifi using python

import os 
def enable():
    os.system("netsh interface set interface 'Wifi' enabled")

def disable():
    os.system("netsh interface set interface 'Wifi' disabled")
Posted by: Guest on April-02-2021

Code answers related to "how to disconnect wifi using python"

Python Answers by Framework

Browse Popular Code Answers by Language