検索トピック「レオ メッシ」があります。過去 2 時間に投稿された「レオ メッシ」に関するすべてのブログを取得したい。今、私はここで立ち往生しています.このコードはブログと時間をフィルタリングしていません
import urllib
import json as m_json
query = "leo messi"
query = urllib.urlencode ( { 'q' : query } )
response = urllib.urlopen ( 'http://ajax.googleapis.com/ajax/services/search/web?v=1.0&' + query ).read()
json = m_json.loads ( response )
results = json [ 'responseData' ] [ 'results' ]
for result in results:
title = result['title']
url = result['url'] # was URL in the original and that threw a name error exception
print ( title + '; ' + url )