Biến api là điểm vào để tổ chức các hành vi mong muốn với Twitter.
Ví dụ, chúng ta có thể đọc dòng trạng thái:
consumer_key = 'YOUR-CONSUMER-KEY'
consumer_secret = 'YOUR-CONSUMER-SECRET'
access_token = 'YOUR-ACCESS-TOKEN'
access_secret = 'YOUR-ACCESS-SECRET'
import tweepy
from tweepy import OAuthHandler
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
api = tweepy.API(auth)
import sys
non_bmp_map = dict.fromkeys(range(0x10000, sys.maxunicode + 1), 0xfffd)
for status in tweepy.Cursor(api.home_timeline).items(10):
# Process a single status
print(status.text.translate(non_bmp_map))