-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathtoggle_wifi.py
25 lines (22 loc) · 882 Bytes
/
toggle_wifi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python3
"""
Example code on how to toggle Wi-Fi on and off:
python3 toggle_wifi.py http://admin:[email protected]/ 1
python3 toggle_wifi.py http://admin:[email protected]/ 0
"""
from argparse import ArgumentParser
from huawei_lte_api.Connection import Connection
from huawei_lte_api.Client import Client
from huawei_lte_api.enums.client import ResponseEnum
parser = ArgumentParser()
parser.add_argument('url', type=str)
parser.add_argument('enabled', type=bool)
parser.add_argument('--username', type=str)
parser.add_argument('--password', type=str)
args = parser.parse_args()
with Connection(args.url, username=args.username, password=args.password) as connection:
client = Client(connection)
if client.wlan.wifi_network_switch(args.enabled) == ResponseEnum.OK.value:
print('Wi-Fi was toggled successfully')
else:
print('Error')