- Full Telegram Bot API 4.7 support
- Zero dependency
- Type-safe API client with functional options
- Capture messages by regexp
- Middlewares support
- Can be used with go modules
- Support for external logger
- MIT licensed
With go modules:
go get github.com/yanzay/tbot/v2
Without go modules:
go get github.com/yanzay/tbot
Join telegram group to get support or just to say thank you.
Documentation: https://yanzay.github.io/tbot-doc/.
Full specification: godoc.
Simple usage example:
package main
import (
"log"
"os"
"time"
"github.com/yanzay/tbot/v2"
)
func main() {
bot := tbot.New(os.Getenv("TELEGRAM_TOKEN"))
c := bot.Client()
bot.HandleMessage(".*yo.*", func(m *tbot.Message) {
c.SendChatAction(m.Chat.ID, tbot.ActionTyping)
time.Sleep(1 * time.Second)
c.SendMessage(m.Chat.ID, "hello!")
})
err := bot.Start()
if err != nil {
log.Fatal(err)
}
}
Please take a look inside examples folder.