Tip: Days Remaining

How about a note with the current outside temperature?

Using https://openweathermap.org:

$URL = https://api.openweathermap.org/data/2.5/weather?id=6947478&appid={yourAppId}&units=metric

“yourAppId” is the API key you get for free after registering with openweathermap.org.

$AutoFetchCommand = if($Text.contains(“.temp.:([0-9.]+)”)){ $Temperatur = $1; };

you will get:
Bildschirmfoto 2021-11-03 um 22.57.19

Weather.tbx (81.2 KB)

3 Likes