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
サンプルプログラム

リンク

  1. python twitter search 文字コード エンコード UTF8 Unicode - peroonの日記
  2. Twitter 検索API メモ - 超自己満足プログラミング
  3. GET search | Twitter Developers
  4. How bona! [Python RSS]