とりあえず AviSynth 関連のツイートを取得することを目的としているので、Twitter API で検索する方法を調べた。 tweepy v1.5 documentation*1 によると、API.search() で検索ができるらしい。戻り値は、SearchResult オブジェクトのリスト(JSON ではない)。 以前保存しておいた tweepy v1.5 のドキュメントから引用(少し古いバージョンのものです): API.search(q[, lang][, locale][, rpp][, page][, since_id][, geocode][, show_user]) Returns tweets that match a specified query. Parameters: q – the search query string lang – Restricts t

