Hi @jessicagarson I am using Tweepy. Here it is the longer code:
for tweet in tweepy.Cursor(api.search,q= "#iteachmath" or "#MTBoS", count=100,
lang="en",
since="2017-01-01").items():
csvWriter.writerow([tweet.created_at, tweet.text.encode('utf-8'), tweet.user, tweet.retweet_count, tweet.favorite_count, tweet.entities, tweet.coordinates])
Another issue I am running into is related to Twitter Archive. Initially I asked it here and they redirected me to the Twitter Support and Twitter Support was not helpful at all. When I download my archive and open the csv almost all the tweets are short cut with “Ķ” this sign. Attached you will see the example of it:
Thank you!