Popularity
6.1
Declining
Activity
3.8
-
349
12
54

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.

Do you think we are missing an alternative of tbot or a related project?

Add another 'Third-party APIs' Package

README

tbot - Telegram Bot Server GoDoc Go Report Card GitHub Actions

logo

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.