我使用Python3
和newspaper
库。据说这个库可以创建一个Source
对象,它是新闻网站的抽象。但是,如果我只需要某个类别的抽象怎么办。
例如,当我使用此 url 时,我想获取'technology'
类别的所有文章。相反,我从'politics'
.
我认为在创建Source
对象时,报纸仅使用域名,在我的例子中是www.kyivpost.com
)。
有没有办法让它与像 http://www.kyivpost.com/technology/
这样的网址一起使用?
newspaper
将在可用时使用站点的RSS提要;KyivPost 只有一个 rss 提要,并主要发布关于政治的文章,这就是为什么您的结果集主要是政治。
使用BeautifulSoup
专门从技术页面绘制文章URL并直接将它们提供给newspaper
,您可能会更幸运。
这有点老了。但是,如果有人仍在寻找这样的东西,您可以首先使用正则表达式获取所有锚标签元素过滤器链接,然后请求文章的所有链接 + 所需数据。我正在粘贴一个示例代码,您可以根据您的页面更改必要的汤元素-
'''
"""
Created on Tue Jan 21 10:10:02 2020
@author: prakh
"""
import requests
#import csv
from bs4 import BeautifulSoup
import re
from functools import partial
from operator import is_not
from dateutil import parser
import pandas as pd
from datetime import timedelta, date
final_url = 'https://www.kyivpost.com/technology'
links = []
news_data = []
filter_null = partial(filter, partial(is_not, None))
try:
page = requests.get(final_url)
soup = BeautifulSoup(page.text, 'html.parser')
last_links = soup.find(class_='filter-results-archive')
artist_name_list_items = last_links.find_all('a')
for artist_name in artist_name_list_items:
links.append(artist_name.get('href'))
L =list(filter_null(links))
regex = re.compile(r'technology')
selected_files = list(filter(regex.match, L))
# print(selected_files)
# print(list(page))
except Exception as e:
print(e)
print("continuing....")
# continue
for url in selected_files:
news_category = url.split('/')[-2]
try:
data = requests.get(url)
soup = BeautifulSoup(data.content, 'html.parser')
last_links2 = soup.find(id='printableAreaContent')
last_links3 = last_links2.find_all('p')
# metadate = soup.find('meta', attrs={'name': 'publish-date'})['content']
#print(metadate)
# metadate = parser.parse(metadate).strftime('%m-%d-%Y')
# metaauthor = soup.find('meta', attrs={'name': 'twitter:creator'})['content']
news_articles = [{'news_headline': soup.find('h1',
attrs={"class": "post-title"}).string,
'news_article': last_links3,
# 'news_author': metaauthor,
# 'news_date': metadate,
'news_category': news_category}
]
news_data.extend(news_articles)
# print(list(page))
except Exception as e:
print(e)
print("continuing....")
continue
df = pd.DataFrame(news_data)
'''