mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-11 04:21:12 +01:00
🤖 An elegant Telegram bots framework for Rust
https://docs.rs/teloxide
src | ||
.gitignore | ||
.travis.yml | ||
Cargo.toml | ||
ICON.png | ||
LICENSE | ||
README.md | ||
rustfmt.toml |
async-telegram-bot
A full-featured framework that empowers you to easily build Telegram bots using the async
/.await
syntax in Rust. It handles all the difficult stuff so you can focus only on your business logic.
An echo bot
async-telegram-bot (Rust)const API_TOKEN: &str = "BOT TOKEN HERE";
|
aiogram (Python)import logging
from aiogram import Bot, Dispatcher, executor,
types
|