Archive Twitter Stuff With Python
Just read this article which gives a description on how to archive Twitter stuff with Python. I saw the code and thought 'heck why so complicated?'.
Get python-twitter and do like so:
import twitter api = twitter.Api() statuses = api.GetUserTimeline('twitter', count=1000000) f = open('twitter.txt', 'w') for s ...
