When this blog was hosted on Wordpress I used a Twitter plugin which would connect to my Twitter feed and display my recent tweets. Since I recently moved over to Google App Engine I needed to recreate this plugin in Python. There is a great Python library called Universal Feed Parser (http://www.feedparser.org/) which can be used to do this. It can parse every type of feed you can think of including RSS which is a format the Twitter API (http://dev.twitter.com/pages/api_overview) provides. Here is url to get my latest tweets in RSS format. Simply replace my screen name with yours: http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=benjaminbramley
There are a whole load of parameters that can be passed to the url to set various options around the feed. Check out Twitter API docs for more info. I am using a code snippet from here - http://teebes.com/blog/17/simple-python-twitter-rss-feed-parser - which I’ve modified slightly to allow me to display only tweets which contain a certain hashtag:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
To display the Tweets I pass the result of the method above into a Django template which iterates over the list and outputs the result:
{% if twitter_list %}
<ul>
<li id="recentposts">
<h2>Recent Tweets</h2>
<ul>{% for tweet in twitter_list %}
<li>{{ tweet.text }}</li>
{% endfor %}</ul>
</li>
</ul>
{% endif %}