Inofficial API Client for appWash by Miele.
Check the Juypter-Notebook (example.ipynb) for more code examples!
Install the package via pip:
$ pip install appwashpy
Import and initialize the AppWash-Client with your Email and Password:
Optionally pass the ID of your default location. See below how to obtain it.
from appwashpy import AppWash
appwash = AppWash("example@mail.org", "superstrongpassword", location_id="12345")
Get the Location Object either to the location you specified in the AppWash-Object or to the given parameter.
It contains information like the name and available services and their prices.
location = appwash.location()
# or
location = appwash.location("12345")
If you login at appwash.com you should get redirected to your default location.
The URL then contains the Location ID. For example 12345 for https://appwash.com/myappwash/location/?id=12345
Get a list of available services/machines at your default or the specified location.
The Service Object contains among other things the type of service (washing machine, dryer, ...) and the current status (available, occupied, ...).
services = appwash.services()
# or
services = appwash.services("12345")
Get a specific Service Object.
services = appwash.services("12345")
The service can be bought directly through the .buy() method or via the AppWash-Object.
This will bill you the corresponding price!
services[0].buy()
# or
appwash.buy("12345")
Be careful, calling this function multiple times cancels the previous service and bills you again.
No warranty for freedom from errors and no compensation for damages incurred.