Advertisement
Guest User

Untitled

a guest
May 25th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.33 KB | None | 0 0
  1. #!/usr/bin/perl
  2. use Net::Twitter::Lite
  3.  
  4. $user="Lawwait_private";
  5. $password="mipasswordpaltwitter_probad_probad_XD";
  6.  
  7. for ($i=0;$i<=300;$i++)
  8. {
  9.   my $nt = Net::Twitter::Lite->new(
  10.       traits   => [qw/API::REST/],
  11.       username => $user,
  12.       password => $password
  13.   );
  14.         print "$i\n";
  15.         $nt->update($i);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement