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-20 15:43:06 -04:00
default.glade Basic multiple account support now functioning 2010-04-20 15:10:47 -04:00
mytwitter.py Basic multiple account support now functioning 2010-04-20 15:10:47 -04:00
python-twitter-GetHomeTimeline.patch Added functionality to get retweets in the home timeline, fixing the missing tweet problem (partially) 2010-04-11 00:42:44 -04:00
python-twitter-GetListStatuses.patch Improved the GetListStatuses patch 2010-04-10 11:03:33 -04:00
python-twitter-GetMentions.patch Replaced complicated GetReplies stuff with a simple implementation of GetMentions 2010-04-11 01:10:45 -04:00
python-twitter-GetUser_verified.patch Added Verified Account label to verified accounts 2010-04-16 17:32:17 -04:00
python-twitter-retweet-3.patch Changed retweet API to use the patch from http://code.google.com/p/python-twitter/issues/detail?id=130 for consistency. 2010-04-10 10:46:51 -04:00
README Implemented status bar messages for new tweets, and for successfully posting a tweet. 2010-04-11 01:37:09 -04:00
TODO Basic multiple account support now functioning 2010-04-20 15:10:47 -04:00
twitterwidgets.py Handle some edge cases elegantly 2010-04-20 15:43:06 -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 patches (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
for i in ../mytwitter/python-twitter-*.patch; do patch p1 < $i; done
python setup.py build
python setup.py install --user

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