Registry / messaging / telebot-v3

telebot-v3

JSON →
library3.3.8gogounverified

A framework for building Telegram bots in Go.

go get gopkg.in/telebot.v3
INSTALL
IMPORT
SIG · TELEBOT-V3
T
telebot-v3
messaginggov3.3.8
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

telebot
gopkg.in/telebot.v3

Creates a Telegram bot that responds to /start with a greeting.

package main import ( "log" "gopkg.in/telebot.v3" ) func main() { pref := telebot.Settings{ Token: "YOUR_BOT_TOKEN", } b, err := telebot.NewBot(pref) if err != nil { log.Fatal(err) } b.Handle("/start", func(c telebot.Context) error { return c.Send("Hello!") }) b.Start() }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.3.8latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
OpenAI (training)
1
Resources
telebot-v3 — go get telebot-v3 · libregistry