Spaces:
Sleeping
Sleeping
File size: 266 Bytes
6cae882 |
1 2 3 4 5 6 7 8 9 10 11 12 |
def check_user_existence(scraper):
pass
def get_tweets(scraper, number_of_tweets):
tweets = []
for i, tweet in enumerate(scraper.get_items()):
if i == number_of_tweets:
return tweets
tweets.append(tweet.rawContent)
|