Bugfix rename search method following API change

This commit is contained in:
Vivek Santayana 2021-11-11 05:46:50 +00:00
parent bb298e5f9f
commit 5d570394c0

View File

@ -32,7 +32,7 @@ def storeLastSeen(filename, lastSeen):
def searchTweets(query):
print('Searching for tweets')
lastSeen = getLastSeen(lastSeenFile)
tweets = api.search(query, since_id=lastSeen)
tweets = api.search_tweets(query, since_id=lastSeen)
return tweets
def interactions():