Skip to content

Python program to recover tweets and export it to .csv

License

Notifications You must be signed in to change notification settings

AythaE/twitter_search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

twitter_search

Python program to recover tweets and export it to .csv. It uses Tweepy to handle Twitter API. The script create 3 files:

  • queryX_(dateSince_dateUntil)_Tweets.csv: Contains the Tweet text and id, the creation date, the user that wrote it and some info about him/her.
  • queryX_(dateSince_dateUntil)_Users.csv: Contains the same user data than the previous file but without duplicated users. It is prepared to be imported into Gephi as a nodes table spreadsheet.
  • queryX_(dateSince_dateUntil)_Edges.csv: Contains the relationships between tweets (retweets and mentions). It is prepared to be imported into Gephi as a edges table spreadsheet.

To use this program you need to register a Twitter application to get the required credentials and insert it on the file credentials.py.

Tutorial

A complete tutorial for this could be found here.

Use

You need to install Python 3 and virtualenv before use this program. When this is done you could install the rest of the dependencies executing the next commands (the commands could be different in your OS):

virtualenv -p$(which python3) venv
source venv/bin/activate
pip install -r requirements.txt

And run the script with:

python twitter_search.py

Releases

No releases published

Packages

No packages published

Languages