-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnews.py
22 lines (20 loc) · 1.18 KB
/
news.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import requests
from bs4 import BeautifulSoup
def get_article():
bbc_request = requests.get('https://www.bbc.com/news')
soup = BeautifulSoup(bbc_request.text, "html.parser")
raw_article = soup.find_all('div', {'class': 'gs-c-promo-body gel-1/2@xs gel-1/1@m gs-u-mt@m'})[0].find_all(text=True, recursive=True)
if raw_article[0].startswith('Video'): #Cheking if article has video and then moving index by 1 for proper display in message
topic = raw_article[5]
title = raw_article[1]
description = raw_article[2]
publish_time = raw_article[4]
else:
topic = raw_article[4]
title = raw_article[0]
description = raw_article[1]
publish_time = raw_article[3]
href = soup.find_all('div', {'class': 'gs-c-promo-body gel-1/2@xs gel-1/1@m gs-u-mt@m'})[0].find('a', {'class': 'gs-c-promo-heading gs-o-faux-block-link__overlay-link gel-pica-bold nw-o-link-split__anchor'})['href']
link = f' https://www.bbc.com{href}'
article = f'✏️ <b>Topic</b>: {topic}\n⚠️ <b>Title</b>: {title}\n📌 <b>Description</b>: {description}\n🕒 <b>Published</b>: {publish_time}\n➡️ <b>Full article</b>: {link}'
return article