Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marado/tweet_dumper
A tool to retrieve all possible tweets from an user
https://github.com/marado/tweet_dumper
backup twitter
Last synced: about 2 months ago
JSON representation
A tool to retrieve all possible tweets from an user
- Host: GitHub
- URL: https://github.com/marado/tweet_dumper
- Owner: marado
- License: gpl-2.0
- Created: 2015-05-29T21:22:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-04-10T19:44:05.000Z (over 4 years ago)
- Last Synced: 2024-05-01T13:00:06.861Z (8 months ago)
- Topics: backup, twitter
- Language: Python
- Size: 12.7 KB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tweet dumper
A tool to retrieve all possible tweets from an user.# How to use it
Download the zip file from this repository to your computer and unzip it.Open the file `tweet_dumper.py` and insert the following information:
```
# EDIT THIS!
# Twitter API credentials - https://apps.twitter.com/
consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""`
```You will need to create an app, with your Twitter credentials, at https://apps.twitter.com to get this information.
Open a console in your computer, go to the directory of the file `tweet_dumper.py`, and write `python tweet_dumper.py twitter_handle`.
A CSV with all possible tweets should be created in the same directory of your unzipped folder.# Dependencies
* tweepy - If you don't have in installed in your system, you can do it (as root) by doing `easy_install tweepy`