8个版本
使用旧的Rust 2015
0.7.8 | 2019年5月17日 |
---|---|
0.7.7 | 2018年11月23日 |
#35 in #telegram-api
40 每月下载量
175KB
4.5K SLoC
Rust Telegram Bot 库
文档 | crates.io最新版本 |
用于编写自己的 Telegram 机器人的库。更多信息 这里。官方API 这里。
示例
这是一个简单的示例(参见 example/simple.rs
)
extern crate futures;
extern crate telegram_bot_fork;
extern crate tokio;
use std::env;
use futures::{Stream, future::lazy};
use telegram_bot_fork::*;
fn main() {
tokio::runtime::current_thread::Runtime::new().unwrap().block_on(lazy(|| {
let token = env::var("TELEGRAM_BOT_TOKEN").unwrap();
let api = Api::new(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-fork = "0.7"
协作
当然!欢迎所有类型的贡献:创建问题、修改代码或提出建议。不知道从哪里开始?带有 up for grab 标签的问题是个好开始。
依赖关系
~8–20MB
~277K SLoC