
Net::Twitter::Diff - Twitter Diff

use Net::Twitter::Diff;
my $diff = Net::Twitter::Diff->new( username => '******' , password => '******');
my $res = $diff->diff();
# get screen_names who you are not following but they are.
print Dumper $res->{not_following};
# get screen_names who they are not following but you are.
print Dumper $res->{not_followed};
# get screen_names who you are following them and also they follow you.
print Dumper $res->{communicated};
my $res2 = $diff->comp_following( 'somebody_twitter_name' );
# only you are following
print Dumper $res2->{only_me} ;
# you are not following but somebody_twitter_name are following
print Dumper $res2->{not_me} ;
# both you and somebody_twitter_name are following
print Dumper $res2->{share} ;
# If you want , this module use Net::Twitter as base so you can use methods Net::Twitter has.
$diff->update('My current Status');

Handy when you want to know relationshop between your followers and follwoings and when you wnat to compare your following and sombody's.

run diff
response hash
get screen_names who you are not following but they are.
get screen_names who they are not following but you are.
get screen_names who you are following them and also they follow you.
compaire your following and somebody's
response hash
only you are following
you are not following but sombody is following
both you and somebody are following.
can get more that 100 followings.
can get more that 100 followers.

L:<Net::Twitter>

Tomohiro Teranishi<tomohiro.teranishi@gmail.com.