https://github.com/simonw/mytweets
Script for saving a JSON archive of your tweets.
https://github.com/simonw/mytweets
Last synced: about 1 year ago
JSON representation
Script for saving a JSON archive of your tweets.
- Host: GitHub
- URL: https://github.com/simonw/mytweets
- Owner: simonw
- Created: 2009-08-13T21:41:44.000Z (almost 17 years ago)
- Default Branch: master
- Last Pushed: 2009-08-13T21:42:02.000Z (almost 17 years ago)
- Last Synced: 2024-10-18T07:54:14.805Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 103 KB
- Stars: 81
- Watchers: 4
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
mytweets
========
A simple script to back up all of your tweets in to a local JSON file.
Dependencies:
- httplib2 from http://code.google.com/p/httplib2/
- simplejson (unless Python 2.6) from http://pypi.python.org/pypi/simplejson/
Usage:
1. Create a file called config.py in the same directory as the script:
USERNAME = 'your-twitter-username'
PASSWORD = 'your-twitter-password'
2. Run the command like so:
python fetch.py
3. Your tweets will be saved to my_tweets.json
You can run the command again any time to save new tweets created since you
last ran the script.