PythonでTwitter
Pythonを使ってtwitterしてみる
検索する
サンプルプログラム
#!/usr/bin/python
#coding: utf-8
import feedparser
import urllib
queryword = u'チョコレート' #unicode
queryword = queryword.encode('utf-8') #encode
queryword = urllib.quote(queryword) #URL encode
url = 'http://search.twitter.com/search.atom?q=' + queryword
print url
print
fdp = feedparser.parse( url )
for entry in fdp['entries']:
if( 'date' in entry ):
date = entry['date']
print 'date:'+date.encode('utf_8')
if( 'title' in entry ):
title = entry['title']
print 'title:'+title.encode('utf_8')
if( 'link' in entry ):
link = entry['link']
print 'link:'+link.encode('utf_8')
print
サンプルプログラム
リンク
- python twitter search 文字コード エンコード UTF8 Unicode - peroonの日記
- Twitter 検索API メモ - 超自己満足プログラミング
- GET search | Twitter Developers
- How bona! [Python RSS]