-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetfeeds.py
47 lines (38 loc) · 1.42 KB
/
getfeeds.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
#!/bin/python
import feedparser
# import sys
urlDict = {
'ibd-business': 'http://feeds2.feedburner.com/BusinessRss',
'nasdaq-tech':
'https://www.nasdaq.com/feed/rssoutbound?category=Technology',
'nasdaq-stocks': 'https://www.nasdaq.com/feed/rssoutbound?category=Stocks',
}
for key, value in urlDict.items():
print('Processing ', key, '->', value)
url = value
json_feed = feedparser.parse(url)
# for debugging
# entry = json_feed['entries'][0]
# summary_detail prints too much info for IBD
# print ("summary_detail: ", entry['summary_detail'])
# print ("links: ", entry['links'])#
# print("link ====> ", entry['link'])
# print ("title_detail", entry['title_detail'])
# print("summary ====>", entry["summary"])
# if 'content' in entry:
# print("content====>", entry["content"])
# print (len(entry))
print("")
with open(key + '-feedoutput.html', 'w', encoding='utf-8') as fo:
fo.write("<html>")
for entry in json_feed['entries']:
# print("Link: " + entry['link'])
# linksMap = entry['links'][0]
# print(linksMap['href'])
# print (entry['summary_detail'])
fo.write("<a href=" + entry['link'] + ">" +
entry['title'] + "</a>")
fo.write(entry['description'])
# print (entry['subtitle'])
fo.write("<br />")
fo.write("</html>")