Tweepy 最大推文

Tweepy max tweets

我想设置从 Twitter 接收的最大推文数量。

我已经试过了count=100但是我好像没用

import tweepy

api_key = ''
api_secret = ''

access_token = ''
access_token_secret = ''

auth = tweepy.OAuthHandler(api_key, api_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)

public_tweets = api.home_timeline()

for tweet in public_tweets:
    print tweet.text

for tweet in tweepy.Cursor(api.search, q="google", rpp=100, count=20, result_type="recent", include_entities=True, lang="en").items():
    print tweet.created_at, tweet.text

使用 items 设置您要施加的限制。

for tweet in tweepy.Cursor(api.search, q="google", rpp=100, count=20, result_type="recent", include_entities=True, lang="en").items(200)

将推文数量限制为 200。