<?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/"
		>
<channel>
	<title>Comments on: See Which Twitterers Don’t Follow You Back (and vice-versa) In Less Than 15 Lines of&#8230;Perl</title>
	<atom:link href="http://zefonseca.com/blogs/zen/see-which-twitterers-don%e2%80%99t-follow-you-back-and-vice-versa-in-less-than-15-lines-ofperl/feed/" rel="self" type="application/rss+xml" />
	<link>http://zefonseca.com/blogs/zen/see-which-twitterers-don%e2%80%99t-follow-you-back-and-vice-versa-in-less-than-15-lines-ofperl/</link>
	<description></description>
	<lastBuildDate>Wed, 01 Feb 2012 07:30:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Zen&#187;Blog Archive &#187; Zen Twitter Tools - Zen::Twitter Perl API</title>
		<link>http://zefonseca.com/blogs/zen/see-which-twitterers-don%e2%80%99t-follow-you-back-and-vice-versa-in-less-than-15-lines-ofperl/comment-page-1/#comment-10</link>
		<dc:creator>Zen&#187;Blog Archive &#187; Zen Twitter Tools - Zen::Twitter Perl API</dc:creator>
		<pubDate>Thu, 14 May 2009 17:00:56 +0000</pubDate>
		<guid isPermaLink="false">http://zefonseca.com/blogs/zen/?p=90#comment-10</guid>
		<description>[...] I&#8217;ll be implementing more and more of the published Twitter API(in my spare time, mostly). So far all we have here are some base classes and Friend/Follower functionality. [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ll be implementing more and more of the published Twitter API(in my spare time, mostly). So far all we have here are some base classes and Friend/Follower functionality. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lakshman</title>
		<link>http://zefonseca.com/blogs/zen/see-which-twitterers-don%e2%80%99t-follow-you-back-and-vice-versa-in-less-than-15-lines-ofperl/comment-page-1/#comment-8</link>
		<dc:creator>Lakshman</dc:creator>
		<pubDate>Thu, 14 May 2009 09:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://zefonseca.com/blogs/zen/?p=90#comment-8</guid>
		<description>And in python it takes 8 lines.

import wrapper
ts = wrapper.Twitter()
user = &#039;scorpion032&#039;
diff= set(ts.friends.ids(screen_name=user)) - set(ts.followers.ids(screen_name=user))
for i in diff:
	try: non_fol1 = ts.users.show(id=i)
	except: continue
	print &quot;%s with %d followers and %d following&quot; %(non_fol1[&#039;name&#039;],non_fol1[&#039;followers_count&#039;],non_fol1[&#039;friends_count&#039;])</description>
		<content:encoded><![CDATA[<p>And in python it takes 8 lines.</p>
<p>import wrapper<br />
ts = wrapper.Twitter()<br />
user = &#8216;scorpion032&#8242;<br />
diff= set(ts.friends.ids(screen_name=user)) &#8211; set(ts.followers.ids(screen_name=user))<br />
for i in diff:<br />
	try: non_fol1 = ts.users.show(id=i)<br />
	except: continue<br />
	print &#8220;%s with %d followers and %d following&#8221; %(non_fol1['name'],non_fol1['followers_count'],non_fol1['friends_count'])</p>
]]></content:encoded>
	</item>
</channel>
</rss>

