forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGoogle_News.py
More file actions
33 lines (21 loc) · 737 Bytes
/
Google_News.py
File metadata and controls
33 lines (21 loc) · 737 Bytes
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
import bs4
import lxml #xml parser
from bs4 import BeautifulSoup as soup
from urllib.request import urlopen
def news(xml_news_url):
Client=urlopen(xml_news_url)
xml_page=Client.read()
Client.close()
soup_page=soup(xml_page,"xml")
news_list=soup_page.findAll("item")
for news in news_list:
print(news.title.text)
print(news.link.text)
print(news.pubDate.text)
print("\n\n")
#you can add google news 'xml' URL here for any country/category
news_url="https://news.google.com/news/rss/?ned=us&gl=US&hl=en"
sports_url="https://news.google.com/news/rss/headlines/section/topic/SPORTS.en_in/Sports?ned=in&hl=en-IN&gl=IN"
#now call news function with any of these url or BOTH
news(news_url)
news(sports_url)