All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Sensors in Schools. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:59, 23 February 2024 EdmondLascaris talk contribs created page Dweepy to record temperature data (Created page with "= Get all data = <syntaxhighlight lang="python"> import dweepy url = dweepy.get_latest_dweet_for('MPPS-Tiny-House-11-bundoora') print(url) </syntaxhighlight> = Get temperature data = <syntaxhighlight lang="python"> import dweepy url = dweepy.get_latest_dweet_for('MPPS-Tiny-House-11-bundoora') print(url) dict = url[0] internalTemp = dict['content'][('intTemp')] print(f'The internal temperature is {internalTemp}') externalTemp = dict['content'][('extTemp')] prin...")