<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comentarios en: Buscador para Twitter, con Python, en 12 líneas</title>
	<atom:link href="http://www.patriciomolina.com/2009/09/buscador-para-twitter-con-python-en-12-lineas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.patriciomolina.com/2009/09/buscador-para-twitter-con-python-en-12-lineas/</link>
	<description>Blog de Patricio Molina</description>
	<lastBuildDate>Mon, 24 Oct 2011 01:19:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Por: pablo</title>
		<link>http://www.patriciomolina.com/2009/09/buscador-para-twitter-con-python-en-12-lineas/comment-page-1/#comment-5</link>
		<dc:creator>pablo</dc:creator>
		<pubDate>Wed, 16 Sep 2009 23:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.patriciomolina.com/?p=58#comment-5</guid>
		<description>muy buena...yo le hize una pequeña modificacion

import feedparser, urllib
 
def main():
	feed_source = &#039;http://search.twitter.com/search.atom?%s&#039;
	q = raw_input(&#039;Buscar: &#039;)
	if q:
		f = feedparser.parse(feed_source % urllib.urlencode({&#039;q&#039;: q}))
		for entry in f.entries:
			print &quot;###@###&quot;
			print &quot;&quot;
			print &#039;%s:&#039; % (entry.author)
			print &quot;&quot;
			print &#039;%s:&#039; % (entry.title)
			print &quot;&quot;
if __name__ == &#039;__main__&#039;:
	main()</description>
		<content:encoded><![CDATA[<p>muy buena&#8230;yo le hize una pequeña modificacion</p>
<p>import feedparser, urllib</p>
<p>def main():<br />
	feed_source = &#8216;<a href="http://search.twitter.com/search.atom?%s" rel="nofollow">http://search.twitter.com/search.atom?%s</a>&#8216;<br />
	q = raw_input(&#8216;Buscar: &#8216;)<br />
	if q:<br />
		f = feedparser.parse(feed_source % urllib.urlencode({&#8216;q&#8217;: q}))<br />
		for entry in f.entries:<br />
			print &#8220;###@###&#8221;<br />
			print &#8220;&#8221;<br />
			print &#8216;%s:&#8217; % (entry.author)<br />
			print &#8220;&#8221;<br />
			print &#8216;%s:&#8217; % (entry.title)<br />
			print &#8220;&#8221;<br />
if __name__ == &#8216;__main__&#8217;:<br />
	main()</p>
]]></content:encoded>
	</item>
</channel>
</rss>

