Toxicity-detector / Scraper.py
danielcd99's picture
Duplicate from danielcd99/Toxicity-detection
6cae882
raw
history blame
266 Bytes
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)