Add to Technorati Favorites

Python code for retrieving all your tweets

Wednesday, June 24th, 2009 Posted under python, twitter. | 13 Comments »

Here's a little Python code to pull back all a user's Twitter tweets. Make sure you read the notes at bottom in case you want to use it. import sys, twitter, ... Read more..

A mixin class allowing Python __init__ methods to work with Twisted deferreds

Monday, May 11th, 2009 Posted under deferreds, python, twisted. | Comments Off on A mixin class allowing Python __init__ methods to work with Twisted deferreds

I posted to the Python Twisted list back in Nov 2008 with subject: A Python metaclass for Twisted allowing __init__ to return a Deferred Briefly, I was trying to find a ... Read more..

A Python metaclass for Twisted allowing __init__ to return a Deferred

Monday, November 3rd, 2008 Posted under deferreds, python, tech, twisted. | 4 Comments »

OK, I admit, this is geeky. But we've all run into the situation in which you're using Python and Twisted, and you're writing a new class and you want to call ... Read more..