世界の中心で愛を叫ぶみたいになってもうた.
さて,TwitterAPIを使ったツイート収集だけど,最近検索APIで1週間分なら無制限にとれるっぽいことが分かったので,これを使って遊んでみよう計画.
最近Pythonも気になるので,Pythonでさくらサーバ使って遊んでみる.
PythonでTwitterのAPIをたたいてみよう-セットアップ偏
を参考にしてみる.
なお,Twitterとの接続に使うのは,python-twitter.
$ setenv PYTHONPATH /home/username/lib/python
$ wget --no-check-certificate github.com/simplegeo/python-oauth2/archive/master.zip
$ unzip master.zip
$ cd python-oauth2-master/
$ ./setup.py install --home=~
$ cd ../
$ rm master.zip
$ wget --no-check-certificate https://github.com/bear/python-twitter/archive/master.zip
$ unzip master.zip
$ cd python-twitter-master/
$ ./setup.py install --home=~
$ cd ../
$ rm master.zip
$ wget --no-check-certificate https://github.com/jcgregorio/httplib2/archive/master.zip
$ unzip master.zip
$ cd httplib2-master/
$ ./setup.py install --home=~
$ cd ../
$ rm master.zip
$ wget --no-check-certificate https://pypi.python.org/packages/source/s/simplejson/simplejson-3.6.5.tar.gz
$ tar zxvf simplejson-3.6.5.tar.gz
$ cd simplejson-3.6.5/
$ ./setup.py install --home=~
これで必要なファイルはダウンロード完了.
ここで適当なアプリを作成しておく.
以下のようなcgiを作成.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import site
site.addsitedir('/home/username/lib/python')
import sys
import twitter
print ('Content-type: text/html; charset=UTF-8\n\n')
CONSUMER_KEY = '' # Consumer Key
CONSUMER_SECRET = '' # Consumer Secret
ACCESS_TOKEN = '' # Access Token
ACCESS_TOKEN_SECRET = '' # Accesss Token Secert
api = twitter.Api(consumer_key=CONSUMER_KEY,
consumer_secret=CONSUMER_SECRET,
access_token_key=ACCESS_TOKEN,
access_token_secret=ACCESS_TOKEN_SECRET)
tlAry = api.GetSearch(term="keyword",count=100)
tweetlist=[]
for s in tlAry:
if not s.text.startswith('RT @'):
tweetlist.append(s.text)
print s.text.encode('utf-8')
これで,keywordを含むツイートを取得可能.ポイントの一つが,
import site
site.addsitedir('/home/username/lib/python')
の部分.
これを書いておかないとライブラリを読みに行ってくれないので注意.
さくらインターネットでは,ライブラリはローカルに置くしかないので,この作業をやらないと,twitterライブラリがimportできません.
0 件のコメント:
コメントを投稿