グーグルニュースをスクレイピングしてみましたが、処理時間がかなり長くなってしまいます。
どうすれば短くできるのでしょうか?
python
1from flask import Flask, render_template, request 2from bs4 import BeautifulSoup 3import time, json, requests, datetime 4 5app = Flask(__name__) 6 7t1 = time.time() 8 9n1 = time.time() 10def get_news(): 11 news_results = [] 12 url = 'https://news.google.com/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFp1ZEdvU0FtcGhHZ0pLVUNnQVAB?hl=ja&gl=JP&ceid=JP%3Aja' 13 r = requests.get(url) 14 data = BeautifulSoup(r.content, 'html.parser') 15 news_list = data.find_all("div", class_="xrnccd") 16 for news in news_list: 17 try: 18 title = news.find("h3").a.text 19 link = news.find("a").get('href') 20 link = link.lstrip(".") 21 link = "https://news.google.com" + link 22 site = news.find("a", class_="wEwyrc").text 23 box = title,link,site 24 news_results.append(box) 25 except AttributeError: 26 pass 27 return news_results 28n2 = time.time() 29 30news_results = get_news() 31 32@app.route('/') 33def index(): 34 counts = len(news_results) 35 return render_template('index.html', news_results = news_results, counts = counts) 36 37t2 = time.time() 38 39n_time = n2 - n1 40time = t2 - t1 41print("ニュース処理時間:" + str(n_time)) 42print("全体の処理時間:" + str(time)) 43 44 45 46if __name__ == "__main__": 47 app.run(debug=True) 48
ニュース処理時間:9.5367431640625e-07 全体の処理時間:19.398283004760742
回答1件
あなたの回答
tips
プレビュー