Documentation: | Latest crates.io version |
A library for writing your own Telegram bots. More information here. Official API here.
Here is a simple example of handling user command (see example/hello.rs
):
``` rust use botframework::BotWrapper; use std::env; use telegrambot::prelude::*;
fn main() { let token = env::var("TELEGRAMBOTKEY").expect("TELEGRAMBOTKEY not found in env"); let mut bot = BotWrapper::new(token); bot.command("hello".into(), |api, msg| { api.spawn(msg.textreply(format!("Hello, {}!", &msg.from.firstname))); });
bot.run();
}
``
You can find a bigger examples in the
examples`.
This library is available via crates.io
. In order to use it, just add this to your Cargo.toml
:
bot-framework = "0.1"
The library allows you to do E2E-testing of your bot easily: just specify TELEGRAM_API_URL
environment variable to point to your fake Telegram test server.
Yes please! Every type of contribution is welcome: Create issues, hack some code or make suggestions. Don't know where to start? Good first issues are tagged with up for grab.