You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-20Lines changed: 5 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,14 @@ PyTado is a Python module implementing an interface to the Tado web API. It allo
10
10
Tado heating system for the purposes of monitoring or controlling their heating system, beyond what Tado themselves
11
11
currently offer.
12
12
13
-
It is hoped that this module might be used by those who wish to tweak their Tado systems, and further optimise their
13
+
It is hoped that this module might be used by those who wish to tweak their Tado systems, and further optimize their
14
14
heating setups.
15
15
16
16
---
17
17
18
18
Original author: Chris Jewell <chrism0dwk@gmail.com>
19
19
20
-
Licence: GPL v3
20
+
License: GPL v3
21
21
22
22
Copyright: Chris Jewell 2016-2018
23
23
@@ -26,7 +26,7 @@ Copyright: Chris Jewell 2016-2018
26
26
Besides owning a Tado system, I have no connection with the Tado company themselves. PyTado was created for my own use,
27
27
and for others who may wish to experiment with personal Internet of Things systems. I receive no help (financial or
28
28
otherwise) from Tado, and have no business interest with them. This software is provided without warranty, according to
29
-
the GNU Public Licence version 3, and should therefore not be used where it may endanger life, financial stakes, or
29
+
the GNU Public License version 3, and should therefore not be used where it may endanger life, financial stakes, or
30
30
cause discomfort and inconvenience to others.
31
31
32
32
## Usage
@@ -54,7 +54,7 @@ It is possible to save the refresh token and reuse to skip the next login.
54
54
55
55
The following code will use the `refresh_token` file to save the refresh-token after login, and load the refresh-token if you create the Tado interface class again.
56
56
57
-
If the file doesn't exists, the webbrowser is started and the device authentication url is automatically opened. You can activate the device in the browser. When you restart the program, the refresh-token is reused and no webbrowser will be opened.
57
+
If the file doesn't exists, the web browser is started and the device authentication url is automatically opened. You can activate the device in the browser. When you restart the program, the refresh-token is reused and no web browser will be opened.
58
58
59
59
```python
60
60
import webbrowser # only needed for direct web browser access
@@ -111,7 +111,6 @@ if __name__ == "__main__":
111
111
Note: For developers, there is an `example.py` script in `examples/` which is configured to fetch data from your account.
112
112
You can then invoke `python examples/example.py`.
113
113
114
-
115
114
## Contributing
116
115
117
116
We are very open to the community's contributions - be it a quick fix of a typo, or a completely new feature!
0 commit comments