-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.toml
38 lines (30 loc) · 955 Bytes
/
weather.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name = "weather"
description = "Get the weather for multiple locations"
[[resources]]
url = "https://www.timeanddate.com/weather/%%"
[[resources.selectors]]
path = "body > div.main-content-div > header > div.bn-header__wrap.fixed > div > section.headline-banner__wrap > div > h1"
name = "Title"
parsed_type = "String"
[[resources.selectors]]
path = "#qlook > div.h2"
name = "Temperature"
parsed_type = "Number"
[[resources.selectors]]
path = "#qlook > p:nth-child(4)"
name = "Condition"
parsed_type = "String"
[[resources]]
url = "https://www.timeanddate.com/weather/%%"
[[resources.selectors]]
path = "body > div.main-content-div > header > div.bn-header__wrap.fixed > div > section.headline-banner__wrap > div > h1"
name = "Title"
parsed_type = "String"
[[resources.selectors]]
path = "#qlook > div.h2"
name = "Temperature"
parsed_type = "Number"
[[resources.selectors]]
path = "#qlook > p:nth-child(4)"
name = "Condition"
parsed_type = "String"