Tweety

A wrapper for twitter v2.0 api written for rust.

An example

Create a new tweety::Bot struct and send a message with it. ```rs use tweety::Bot;

fn main() { let bot = Bot::new( accesstoken: "twitter bot access token" ) bot.sendmessage("hello world!"); } ```

Notice

⚠️ This is the first stable version of tweety, previous versions will not work!