1 个不稳定版本
0.8.2 | 2020年1月1日 |
---|
#75 在 #telegram-bot
在 2 个 crate 中使用 (通过 cxmr-telegram)
180KB
4.5K SLoC
Rust Telegram Bot 库
文档 | 最新 crates.io 版本 |
用于编写您自己的 Telegram 机器人的库。更多信息 这里。官方 API 这里。
示例
以下是一个简单的示例(请参阅 example/simple.rs
)
extern crate futures;
extern crate telegram_bot_async;
extern crate tokio;
use std::env;
use futures::{Stream, future::lazy};
use telegram_bot_async::*;
fn main() {
tokio::runtime::current_thread::Runtime::new().unwrap().block_on(lazy(|| {
let token = env::var("TELEGRAM_BOT_TOKEN").unwrap();
let api = Api::new_default(token).unwrap();
// Convert stream to the stream with errors in result
let stream = api.stream().then(|mb_update| {
let res: Result<Result<Update, Error>, ()> = Ok(mb_update);
res
});
// Print update or error for each update.
stream.for_each(move |update| {
match update {
Ok(update) => {
// If the received update contains a new message...
if let UpdateKind::Message(message) = update.kind {
if let MessageKind::Text { ref data, .. } = message.kind {
// Print received text message to stdout.
println!("<{}>: {}", &message.from.first_name, data);
// Answer message with "Hi".
api.spawn(message.text_reply(format!(
"Hi, {}! You just wrote '{}'",
&message.from.first_name, data
)));
}
}
}
Err(_) => {}
}
Ok(())
})
})).unwrap();
}
您可以在 examples
中找到更大的示例。
用法
此库可通过 crates.io
获得。为了使用它,只需将以下内容添加到您的 Cargo.toml
telegram-bot-async = "0.7"
协作
当然!欢迎各种类型的贡献:创建问题、修改代码或提出建议。不知道从哪里开始?标记为 up for grab 的良好起始问题。
依赖关系
~6–16MB
~213K SLoC