-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
get_devices.py
36 lines (32 loc) · 1.02 KB
/
get_devices.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
26
27
28
29
30
31
32
33
34
35
36
from getpass import getpass
from libdyson.cloud import DysonAccount
from libdyson.cloud.account import DysonAccountCN
from libdyson.exceptions import DysonOTPTooFrequently
print("Please choose your account region")
print("1: Mainland China")
print("2: Rest of the World")
region = input("Region [1/2]: ")
if region == "1":
account = DysonAccountCN()
mobile = input("Phone number: ")
verify = account.login_mobile_otp(f"+86{mobile}")
otp = input("Verification code: ")
verify(otp)
elif region == "2":
region = input("Region code: ")
account = DysonAccount()
email = input("Email: ")
verify = account.login_email_otp(email, region)
password = getpass()
otp = input("Verification code: ")
verify(otp, password)
else:
print(f"Invalid input {region}")
exit(1)
devices = account.devices()
for device in devices:
print()
print(f"Serial: {device.serial}")
print(f"Name: {device.name}")
print(f"Device Type: {device.product_type}")
print(f"Credential: {device.credential}")