This is a small framework for providing Twitter-bot.

You can write event-driven style code on this framework.

class TuiBotter_Behaviour_Greeting implements TuiBotter_Event_BeFollowed
{
  public function eventBeFollowed(Tuitter_User $user, Tuitter $tuitter)
  {
    if(!$user->isFollowing()){
      $user->follow();
      $user->sendDM('Thanks for becoming friends!');
    }
  }
}

Why you should choose TuiBotter?

  • Event-driven programming.
  • Easy to handle Twitter using Tuitter.
  • Auto incremental requests.

Naming

Tui, an endemic passerine bird of New Zealand.

License

Dual licensed under the MIT and GPL licenses.

About me

Naohiko MORI, Japanese

Changes

Mar 17th, 2010
Add OAuth function
Dec 26th, 2009
1st release

ToDo