A twitter client for Linux
This repository has been archived on 2019-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2010-04-08 17:19:45 -04:00
default.glade Fixed buttons by handling clicked instead of activate 2010-04-08 17:19:45 -04:00
mytwitter.py Fixed buttons by handling clicked instead of activate 2010-04-08 17:19:45 -04:00
python-twitter-GetListStatuses.patch Added readme and necessary patch for python-twitter 2010-04-07 12:54:40 -04:00
README Saw the error of my ways, now using pyGtk with libglade 2010-04-08 16:39:56 -04:00

mytwitter is a simple python twitter application.  I wrote it for two reasons:

1. No existing twitter app supports the Lists API

2. An excuse to learn Python


While I doubt it will be terribly useful for anyone other than me, feel free to take it for a spin and let me know how it goes.  You'll need the following python modules:

* pyGTK
* dateutil
* twitter (the dev version, not 0.6), along with my patch (included here)


For the twitter module, you can download and install it with:

hg clone https://python-twitter.googlecode.com/hg/ python-twitter
cd python-twitter
hg update dev
hg patch -u "Patrick Wiggins <jpwigan@gmail.com>" ../mytwitter/python-twitter-GetListStatuses.patch
python build.py build
python build.py install --user

This will install python-twitter in your ~/.local/lib directory, which python 2.6 will automatically include in PYTHONPATH.