如何修复此功能:
api.CreateFavorite(search)
通过我的用户名自动成为搜索关键字(#标签)的最爱,而无需使用API,或者如果使用API,我想每次更改用户名吗?
import tweepy
TWITTER_HANDLE = "USERNAME"
for tweet in tweepy.Cursor(api.search,q="#KEYWORD",count=3,lang="en").items():
api.CreateFavorite(search)
print("Tweet has been Favorited!")