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

Europython

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

gutes Qualitätscasino

July 3, 2009
The paragraph is the most basic block in a reST document. Paragraphs are simply chunks of text separated by one or more blank lines. As in Python, indentation is significant ...
An Introduction to ReStructuredText

sreejith

July 3, 2009
I want to download a file from remote server in binary format. Can anyone let me know the command to do so? Thanks in advance
PuTTY Series: Using PSFTP

jythlkedl;rg

July 2, 2009
????? ??? ????????? ?????? ?? ???????? ? ????????? ???, ? ??????? ??? ??????? ??????? ? ??? ?? ???? ?? ?? ????? ???????????????? ??????????????????. ??????????????????? ????? ?? ?? ????, ?, ???, ...
Burning an iso to CD on Windows

gbi-service-ru

July 1, 2009
???? ?????????, ?????????? ?? ?? ? ???"??? ??????, ?????????? ??? ?? ???? ? ????, ? ? ?????. ?? ??? ???? ???? ??? ???. ?? ?????????? ???? ?? ?. ???????? ?, ...
Burning an iso to CD on Windows

seo techniques

July 1, 2009
I would like to thank you for the inforamtion you have put on this article no matter.
Only the penitent man will pass - on captchas and cotton wool

Online Craps lernen

July 1, 2009
I would like to thank you for the making these clarifications in such a detailed manner to rebuilt the communication and enhancing the strategies of the organization which could be ...
Disclaimer: NO WARRANTY

ZK@Web Marketing Blog

July 1, 2009
Django is an amazing web framework; we built a lot of features in a very short period of time and Django [mostly] stayed out of our way. Last night as ...
Baby Steps with Django - Part 4 Django Applications and flow

overnight payday loans

July 1, 2009
I found commandline.org.uk very informative. The article is professionally written and I feel like the author knows the subject very well. commandline.org.uk keep it that way.
Only the penitent man will pass - on captchas and cotton wool

Drogo

June 30, 2009
Gotta agree with your sentiments about many modern games. The cost of a new game is prohibitive, especially for consoles (although I've noticed that PS2 games have crashed in price ...
Retro British Gaming - Part 3: Amstrad CPC Games

pppiohooddd

June 29, 2009
Free vadult video site! http://crech.us/ 1000 free video every day!
OpenSolaris, Gobuntu, and be careful who you kiss

Tesyimasystus

June 29, 2009
...Love this dude!!! http://www.esnips.com/doc/79c22395-7bd6-4299-92db-cf392e381698/kutiman---this-is-what-it-became Peace
5 Homebrew Python Games

Simon Tite

June 28, 2009
twitterfall is still there, I just tried it, and to me it beats Visible Tweets hands down. Problem with Visible Tweets: * Extremely **irritating** animations! (There are three available, but ...
Visualising your favourite keywords in Twitter

piffAltetle

June 28, 2009
??? ??? ???? ???????????? ??????,?????????? ???? ?????? ??????????? ???????,??????????? ????? mp3,??????? ??????????? ??????.
Encrypt your /home this Christmas: part three - moving your data to the encrypted partition

idhyougjdsyhfr

June 26, 2009
SMS Trap is something that never fails to help you get your partner off guard? Our software will make reading other people?s SMS as easy as ABC. Ready for some ...
Burning an iso to CD on Windows

Sozdanie-saitov-com

June 26, 2009
???? ???????? ? ?????????????????? ????????????? - ??? - ???? ?? ????? ?????. ???? ?? ??? ? ??????? ?????? ????????? ?????! ???, ?????23126 sozdanie-saitov.com@mail.ru
Burning an iso to CD on Windows

gameskillz

June 26, 2009
Killzone 2 - the best PS3 game yet?Still LittleBigPlanet for me, but Sony's new shooter is mightily impressive. What you think about my web? http://www.easyfaxlesspaydayloan.com/payday-loans-online.html
Email Syntax Check in Python

Anish

June 25, 2009
hey Moritz, Check this http://commandline.org.uk/python/my-merry-five-minutes-with-bazaar/
Setting up a bazaar server

gbi zavod 177

June 24, 2009
???? ?????????, ?????????? ?? ?? ? ???"??? ??????, ?????????? ??? ?? ???? ? ????, ? ? ?????. ?? ??? ???? ???? ??? ???. ?? ?????????? ???? ?? ?. ???????? ?, ...
Burning an iso to CD on Windows

vettone

June 24, 2009
??? ????? ????? ????,??????? ?? ???,????? ???? ???.????? ?? ??????????? ????,?????????? ?????? ???????? ?? ????.???? ????????: http://euro-football.ucoz.com ????? ???? ??????????.
Burning an iso to CD on Windows

tuegjhg78kjfhuey

June 23, 2009
? ???????????????? ???? ??? ???, ?? ?????? ?? ?????????, ???, ???????????????? ??? ??????????, ???? ????? ??? ??? http://remont.ucoz.ua/
Burning an iso to CD on Windows