15 个不稳定版本 (7 个破坏性更新)
0.8.0 | 2020年11月14日 |
---|---|
0.7.0 | 2020年3月21日 |
0.6.3 | 2019年7月17日 |
0.6.1 | 2018年2月17日 |
0.1.2 | 2015年7月30日 |
#1591 in Web 编程
716 每月下载量
用于 7 个软件包(其中 6 个直接使用)
255KB
6K SLoC
Rust Telegram Bot 库
文档 | 最新的 crates.io 版本 | master |
一个用于编写您自己的 Telegram 机器人的库。更多信息 这里。官方 API 这里。
示例
这是一个简单的示例(请参阅 example/simple.rs
)
use std::env;
use futures::StreamExt;
use telegram_bot::*;
#[tokio::main]
async fn main() -> Result<(), Error> {
let token = env::var("TELEGRAM_BOT_TOKEN").expect("TELEGRAM_BOT_TOKEN not set");
let api = Api::new(token);
// Fetch new updates via long poll method
let mut stream = api.stream();
while let Some(update) = stream.next().await {
// If the received update contains a new message...
let update = update?;
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.send(message.text_reply(format!(
"Hi, {}! You just wrote '{}'",
&message.from.first_name, data
)))
.await?;
}
}
}
Ok(())
}
您可以在 examples
中找到更大的示例。
使用方法
此库可通过 crates.io
获取。为了使用它,只需将其添加到您的 Cargo.toml
telegram-bot = "0.7"
此库允许您轻松地对您的机器人进行端到端测试:只需指定 TELEGRAM_API_URL
环境变量以指向您的假 Telegram 测试服务器。使用 tracing 框架可以收集大量诊断信息,请参阅 example/tracing.rs
)。
合作
当然!欢迎所有类型的贡献:创建问题、编写代码或提出建议。不知道从哪里开始?带有标签的“up for grab”的问题是好的起点 up for grab。
依赖关系
~11–25MB
~378K SLoC