-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathconstants.py
133 lines (129 loc) · 3.99 KB
/
constants.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
"""Constants for tests."""
from pathlib import Path
TESTS_PATH = Path(__file__).parent
DATA_PATH = TESTS_PATH / "data"
TEST_HASS_PATH = Path(__file__).parents[1] / "test_hass"
TEST_FEEDS = [
{
"has_images": True,
"has_unique_images": False,
"sensor_config": {
"name": "CTK",
"feed_url": "https://www.ceskenoviny.cz/sluzby/rss/cr.php",
"scan_interval": {"hours": 1, "minutes": 30},
},
},
{
"has_images": True,
"sensor_config": {
"name": "nu_nl",
"feed_url": "https://www.nu.nl/rss",
},
},
{
"has_images": True,
"sensor_config": {
"name": "nu_nl_algemeen",
"feed_url": "https://www.nu.nl/rss/Algemeen",
},
},
{
"has_images": True,
"sensor_config": {
"name": "ct24",
"feed_url": "https://ct24.ceskatelevize.cz/rss/hlavni-zpravy",
},
},
{
"has_images": False,
"has_unique_links": False,
"has_unique_titles": False,
"has_unique_dates": False,
"sensor_config": {
"name": "bbc_europe",
"feed_url": "http://feeds.bbci.co.uk/news/world/europe/rss.xml",
"date_format": "%a, %d %b %Y %H:%M:%S %z",
},
},
{
"has_images": False,
"sensor_config": {
"name": "zive",
"feed_url": "https://www.zive.cz/rss/sc-47/",
"show_topn": 1,
},
},
{
"has_images": True,
"all_entries_have_images": False,
"has_images_in_summary": True,
"has_unique_links": False,
"sensor_config": {
"name": "buienradar_nl",
"feed_url": "https://data.buienradar.nl/1.0/feed/xml/rssbuienradar",
"date_format": "%Y-%m-%d %H:%M:%S.%f",
},
},
{
"has_images": False,
"has_unique_links": False,
"sensor_config": {
"name": "skolmaten_se_ede_skola",
"feed_url": "https://skolmaten.se/ede-skola/rss/weeks/?limit=2",
"inclusions": ["title", "link", "published", "summary"],
},
},
{
"has_images": False,
"has_unique_dates": False,
"sensor_config": {
"name": "api_met_no_metalerts",
"feed_url": "https://api.met.no/weatherapi/metalerts/1.1/",
"inclusions": ["title", "link", "published", "summary"],
},
},
{
"has_images": True,
"has_unique_images": False,
"has_unique_titles": False,
"sensor_config": {
"name": "anp_nieuws",
"feed_url": "https://www.omnycontent.com/d/playlist/56ccbbb7-0ff7-4482-9d99-a88800f49f6c/a49c87f6-d567-4189-8692-a8e2009eaf86/9fea2041-fccd-4fcf-8cec-a8e2009eeca2/podcast.rss",
"inclusions": ["title", "link", "published", "summary", "image"],
},
},
{
"has_images": True,
"all_entries_have_images": False,
"has_images_in_summary": True,
"all_entries_have_summary": False,
"sensor_config": {
"name": "alle_meldungen",
"feed_url": "https://rss.sueddeutsche.de/alles/",
"inclusions": ["image", "title", "link", "published", "summary"],
"remove_summary_image": True,
},
},
{
"has_images": True,
"has_unique_dates": False,
"sensor_config": {
"name": "stern_auto",
"feed_url": "https://www.stern.de/feed/standard/auto/",
"inclusions": ["image", "title", "link", "published", "summary"],
},
},
]
DEFAULT_EXCLUSIONS: list[str] = []
DEFAULT_INCLUSIONS = ["image", "title", "link", "summary", "published"]
DATE_FORMAT = "%a, %d %b %Y %H:%M:%S UTC%z"
URLS_HEADERS_REQUIRED = [
{
"name": "elcomercio_gijon",
"url": "https://www.elcomercio.es/rss/2.0/?section=gijon",
},
{
"name": "nasdaq_options",
"url": "https://www.nasdaq.com/feed/rssoutbound?category=Options",
},
]