-
Notifications
You must be signed in to change notification settings - Fork 1
/
teste1.py
38 lines (24 loc) · 926 Bytes
/
teste1.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
import requests
from bs4 import BeautifulSoup
import pandas as pd
lista_noticias = []
response = requests.get('https://g1.globo.com/')
content = response.content
site = BeautifulSoup(content, 'html.parser')
# HTML da notícia
noticias = site.findAll('div', attrs={'class': 'feed-post-body'})
for noticia in noticias:
# Título
titulo = noticia.find('a', attrs={'class': 'feed-post-link'})
# print(titulo.text)
# print(titulo['href']) # link da notícia
# Subtítulo: div class="feed-post-body-resumo"
subtitulo = noticia.find('div', attrs={'class': 'feed-post-body-resumo'})
if (subtitulo):
# print(subtitulo.text)
lista_noticias.append([titulo.text, subtitulo.text, titulo['href']])
else:
lista_noticias.append([titulo.text, '', titulo['href']])
news = pd.DataFrame(lista_noticias, columns=['Título', 'Subtítulo', 'Link'])
news.to_excel('noticias.xlsx', index=False)
# print(news)