Created
March 29, 2011 18:52
-
-
Save semifor/892991 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use Net::Twitter; | |
| my $nt = Net::Twitter->new(traits => [ | |
| qw/API::REST API::Search InflateObjects RetryOnError AutoCursor/, | |
| AutoCursor => { max_calls => 4, methods => [qw/followers friends/] }, | |
| ]); | |
| print ref $nt, "\n"; | |
| # Net::Twitter::with__API_REST__API_Search__AutoCursor__AutoCursor_1__InflateObjects__RetryOnError |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment