Popularity
6.2
Growing
Activity
0.0
Stable
324
11
51
Programming language: Go
License: MIT License
Tags:
Third-party APIs
Latest version: v2.2.0
tbot alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view tbot alternatives based on common mentions on social networks and blogs.
-
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter Frontend API without authentication with Golang. -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-trending
Go library for accessing trending repositories and developers at Github. -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
gosip
⚡️ SharePoint authentication, HTTP client & fluent API wrapper for Go (Golang) -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Messaging API only) -
GoMusicBrainz
a Go (Golang) MusicBrainz WS2 client library - work in progress -
megos
Go(lang) client library for accessing information of an Apache Mesos cluster. -
fcm
Firebase Cloud Messaging for application servers implemented using the Go programming language.
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.com
Do you think we are missing an alternative of tbot or a related project?
README
tbot - Telegram Bot Server

Features
- 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
Installation
With go modules:
go get github.com/yanzay/tbot/v2
Without go modules:
go get github.com/yanzay/tbot
Support
Join telegram group to get support or just to say thank you.
Documentation
Documentation: https://yanzay.github.io/tbot-doc/.
Full specification: godoc.
Usage
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)
}
}
Examples
Please take a look inside examples folder.
*Note that all licence references and agreements mentioned in the tbot README section above
are relevant to that project's source code only.