Scripting Twitter with Python

9 April 2008

Twitter is a social networking service where users can write a sentence (maximum 140 characters) about themselves. It is similar to the mood in myspace or the status line in Facebook (Zeth is ... ), except that in Twitter it takes centre stage. It somewhat like sending your friends random SMS text messages but in a website format instead. Indeed you can even use Twitter with a phone if you really want to.

You can choose to let the general public to view your 'updates', or decide to only grant access to those who have become your "friends". Here is my new Twitter page. I am still thinking about how open/closed I should be about it.

When discussing it on IRC, Andy asked me what it offers over other social networking sites, and having used Twitter for only one day I am not sure I have a good answer. However, it is fun while it lasts, at least until we all get bored and just move along to the next one (for more see my prediction that social networking will eventually just become a protocol).

One fun thing about Twitter is that is has an open API with all kinds of language bindings that people have written for it.

DeWitt Clinton's last Twitter entry is "Just spent $65 to register TextMate. 20 minutes later, back to emacs". Hilarious! Especially since I am now writing this very post in Emacs.

DeWitt has also written Python bindings for the Twitter API, available from the Cheeseshop.

This has lots of potential, you can take your info out of Twitter and feed them into another service or other software, and visa-versa. In this post, we will just focus on Twitter, and getting the information in and out of Twitter using Python.

If you want to test it out yourself along with me, go grab the Python module, get yourself a Twitter account, and then type (or copy and paste) the commands into the Python interpreter (start Python by typing python into the terminal).

# Lets start by importing the Twitter API Python bindings:
import twitter

# New lets login with your username and password.
# Don't forget to change them to your details!
api = twitter.Api(username='zeth0', password='lenna')

# Lets printout the timeline
for i in api.GetFriendsTimeline():
    print i.relative_created_at, "|", i.user.name, "|", i.text

# Lets print out only the last status message for each of our
friends:
for u in api.GetFriends():
    print u.GetStatus().relative_created_at, "|", u.name, "|" ,\
    u.GetStatus().text

# Lets print the replies to our own posts:
for i in api.GetReplies():
    print i.relative_created_at, "|", i.user.name, "|", i.text

# Lets print out the personal messages that we have been sent
for i in api.GetDirectMessages():
    print i.created_at, "|", i.sender_screen_name, "|", i.text

# Lets create a new update
api.PostUpdate("""I just read an interesting post about using the
Python programming language and Twitter at Command Line Warriors
- http://commandline.org.uk/ - cooler than salmon on a stick.""")

# Lets make a new friend
api.CreateFriendship('zeth0')

Pretty cool! In a future post, we will connect it to other software. Bye for now.

Discuss this post | Leave a comment

1 dbr says...

I was looking for a simple script to post to Twitter, but all the API's were large, complex and had dependancies. When I stopped being lazy and actually looked at the Twitter API documentation, it is very simple.. Basically a HTTP post with status:your%20message (and it needs your username/password, of course)

The simple post-to-twitter module I wrote is.. 20 lines, with doc-strings, and only needs urllib:

"""Very simple Twitter-posting library.
Requires only default Python modules.
Very short."""
import urllib

def truncate(string,target):
    if len(string) > target:
    return string[:(target-3)] + "..."
else:
    return string

def squawk(username,password,message):
    """Simple post-to-twitter function"""
    message = truncate(message,140) # trim message

data = urllib.urlencode({"status" : message})
res = urllib.urlopen("http://%s:%s@twitter.com/statuses/update.xml" % \
    (username,password), data)

squawk("yourusername","yourpassword","The message to post")

(tab = 4 spaces)

It does nothing but post status-updates, so no pulling data in - but most of the code is there.. The only ~difficult thing would be parsing the XML (And beautifulSoup makes this much simpler)

Posted at 9:49 a.m. on April 10, 2008


What do you have to say?

Show Editing Help


About

Hello, my name is Zeth, I'll be your host here.

Command Line Warriors is about taking control of your own technology, it looks at our experiences of computing; especially using GNU/Linux, the Python programming language, the command-line and issues such as techno-ethics, best practices and whatever is cool now. If you take control of your technology then you are a Warrior too!

This site is your site too which means that you can contribute and get involved. You can leave comments using the facility provided. For me, the comments and discussions are by far the best part of the site. So please do have your say!

Latest Discussions

Nui

July 18, 2008
Hmm, this would be more persuasive as an argument with some evidence. I am a happy admin of Windows and a novice user of Linux, so I have taken the ...
Give Linux a chance

Paddy3118

July 18, 2008
Hi, I too work with Electronic Design Automation tools, where Tcl is used extensively. I tend to only occasionally have to write in Tcl and so find the TclTutor utility: ...
Python and TCL

Cliff Wells

July 17, 2008
I personally cannot live without the Web Developer extension or Firebug. Unfortunately these are probably both among the more difficult to port extensions. Given how poorly Firefox functions on Linux ...
Will Epiphany be able to compete with Firefox's extensions?

making money on the internet

July 17, 2008
[url=http://www.divinecaroline.com/public/user/profile?user_id=83997]extra money 101waystoincome.com[/url]
A year after my 2007 predictions - the score card

Leatherjackets99

July 16, 2008
New Style in Leather Jackets For Man and Woman at http://www.Leatherjackets99.com They Offer Free Shipment Worldwide.
Email Syntax Check in Python

Åke Forslund

July 13, 2008
I'm pretty much a novice in both of these languages but I find them both easy to use and preform the tasks I give them. However I rarely use them ...
Python and TCL

Christopher Thoday

July 12, 2008
A single test is not sufficient to give you confidence that the algorithm is working. You should make 'number' an argument of 'main' so that you can test some boundary ...
Python and TCL

paul21

July 10, 2008
Shame on Mozilla. They should make developers specify the extension license before hosting it. They should show the license next to download button as well.
Are your Firefox extensions proprietary software?

Tris

July 8, 2008
Justin - You say they had not heard of Linux? That doesn't sound very professional to me!
Give Linux a chance

michael

July 8, 2008
what about Galeon? in Gnome i use Galeon mostly. it is fast and stable and has a nice portal with search masks for Debian, FSF, Freshmeat and so on. wtf ...
Will Epiphany be able to compete with Firefox's extensions?

vermin

July 7, 2008
> Eventually, after a bit of digging and Googling, I found their Toolbar-License... You simply found the license of the StumbleUpon Toolbar for Internet Explorer. This is another product, much ...
Are your Firefox extensions proprietary software?

Andrew West

July 6, 2008
Both the Python and the Tcl example could do with error checking. While at first this may not seem on topic with the post I think it better shows the ...
Python and TCL

Kurushiyama

June 30, 2008
XML is no replacement for SGML, it's a subset.
An Introduction to ReStructuredText