washpy

washpy implements parts of the Miele Professional IP Profile API.

Start by setting up the admin user, see washpy.post_new_password.

Then, create a washpy.device_user.DeviceUser, representing an user on a device. Most of the functionality is derived from that class.

 1"""
 2washpy implements parts of the Miele Professional IP Profile API.
 3
 4Start by setting up the admin user, see `washpy.post_new_password`.
 5
 6Then, create a `washpy.device_user.DeviceUser`, representing an user on a device.
 7Most of the functionality is derived from that class.
 8"""
 9
10import requests
11
12# disables warnings from the unverified HTTPS requests
13requests.packages.urllib3.disable_warnings()
14
15from washpy.device_user import DeviceUser
16from washpy.authenticate import authenticate
17from washpy.post_new_password import post_new_password
18from washpy.device import get_devices_from_host
19
20
21if __name__ == "__main__":
22    print("Hello World!")