-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsources.js
97 lines (96 loc) · 4.01 KB
/
sources.js
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
const sources = {
"status": "ok",
"sources": [
{
"id": "abc-news",
"name": "ABC News",
"description": "Your trusted source for breaking news, analysis, exclusive interviews, headlines, and videos at ABCNews.com.",
"url": "https://abcnews.go.com",
"category": "general",
"language": "en",
"country": "us"
},
{
"id": "abc-news-au",
"name": "ABC News (AU)",
"description": "Australia's most trusted source of local, national and world news. Comprehensive, independent, in-depth analysis, the latest business, sport, weather and more.",
"url": "http://www.abc.net.au/news",
"category": "general",
"language": "en",
"country": "au"
},
{
"id": "aftenposten",
"name": "Aftenposten",
"description": "Norges ledende nettavis med alltid oppdaterte nyheter innenfor innenriks, utenriks, sport og kultur.",
"url": "https://www.aftenposten.no",
"category": "general",
"language": "no",
"country": "no"
},
{
"id": "al-jazeera-english",
"name": "Al Jazeera English",
"description": "News, analysis from the Middle East and worldwide, multimedia and interactives, opinions, documentaries, podcasts, long reads and broadcast schedule.",
"url": "http://www.aljazeera.com",
"category": "general",
"language": "en",
"country": "us"
},
{
"id": "ansa",
"name": "ANSA.it",
"description": "Agenzia ANSA: ultime notizie, foto, video e approfondimenti su: cronaca, politica, economia, regioni, mondo, sport, calcio, cultura e tecnologia.",
"url": "http://www.ansa.it",
"category": "general",
"language": "it",
"country": "it"
},
{
"id": "axios",
"name": "Axios",
"description": "Axios are a new media company delivering vital, trustworthy news and analysis in the most efficient, illuminating and shareable ways possible.",
"url": "https://www.axios.com",
"category": "general",
"language": "en",
"country": "us"
},
{
"id": "ars-technica",
"name": "Ars Technica",
"description": "The PC enthusiast's resource. Power users and the tools they love, without computing religion.",
"url": "http://arstechnica.com",
"category": "technology",
"language": "en",
"country": "us"
},
{
"id": "ary-news",
"name": "Ary News",
"description": "ARY News is a Pakistani news channel committed to bring you up-to-the minute Pakistan news and featured stories from around Pakistan and all over the world.",
"url": "https://arynews.tv/ud/",
"category": "general",
"language": "ud",
"country": "pk"
},
{
"id": "associated-press",
"name": "Associated Press",
"description": "The AP delivers in-depth coverage on the international, politics, lifestyle, business, and entertainment news.",
"url": "https://apnews.com/",
"category": "general",
"language": "en",
"country": "us"
},
{
"id": "australian-financial-review",
"name": "Australian Financial Review",
"description": "The Australian Financial Review reports the latest news from business, finance, investment and politics, updated in real time. It has a reputation for independent, award-winning journalism and is essential reading for the business and investor community.",
"url": "http://www.afr.com",
"category": "business",
"language": "en",
"country": "au"
}
]
}
export default sources;