Mining tweet data via Tweepy

2017-04-19  本文已影响0人  王德瑞

1. 环境配置

2.Get Started !!

# -*- coding: utf-8 -*-
# getStarted
import tweepy
from tweepy import OAuthHandler 
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_Token, access_Token_secret)

# api.home_timeline是一个home的tweet集合(lazy type)
api = tweepy.API(auth)
for tweet in api.home_timeline(): 
    print tweet.text

以上的代码会显示homepage里所有tweets. In my case

Screen Shot 2017-04-19 at 7.06.54 pm.png

api.home_timeline()[0].text()就是Donald J.Trump的这条tweet

3.Error exception

上一篇下一篇

猜你喜欢

热点阅读