Making a Weather Skin
Now that you have an API Key, we can use this to start querying data and making skins
DISCLAIMER: This guide is going to assume you've read the Rainmeter Manual already and have a decent understanding of how skins work. READ THE MANUAL.
Using the API
[Variables]
APIKey=(your API key)
CityID=(your city ID)
Units=(imperial/metric)[MeasureSite]
Measure=WebParser
URL=https://api.openweathermap.org/data/2.5/weather?id=#CityID#&appid=#APIKey#&units=#Units#
RegExp=(?siU)"main":"(.*)".*"temp":(.*),.*"feels_like":(.*),.*"temp_min":(.*),.*"temp_max":(.*),.*"humidity":(.*)}.*"wind":{"speed":(.*),.*"clouds":{"all":(.*)}.*"name":"(.*)".*
UpdateRate=3600Last updated