Changes between Version 1 and Version 2 of Guides/Telldus Live API
- Timestamp:
- Oct 4, 2024, 3:16:25 PM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Guides/Telldus Live API
v1 v2 53 53 }}} 54 54 55 For the main application, let's call it `app.py`. We will use the python module `requests_oauthlib` to facilitate the OAuth1.0a work flow.55 For the main application, let's call it `app.py`. 56 56 57 57 **app.py** 58 59 We will be using the Python package called [https://pypi.org/project/requests-oauthlib/ `requests_oauthlib`]. You can install this package using pip:\\ 60 {{{ 61 pip install -U requests_oauthlib 62 }}} 58 63 59 64 First, we construct a function to setup and return an OAuth 1.0a session: