Giter VIP home page Giter VIP logo

gotbot's Introduction

Gotbot

Gotbot is a small framework for creating Telegram Bots written in Golang.

Test

Bots are special Telegram accounts designed to handle messages automatically. Users can interact with bots by sending them command messages in private or group chats. These accounts serve as an interface for code running somewhere on your server.

Gotbot offers a framework to build bots that handle text requsets. You pass bot a set of commands and framework executes provided command handlers ensuring all command parameters have been collected from user.

Telebot is used to communicate with Telegram API. Here is an example "helloworld" bot, written with gotbot:

import (
    "fmt"

    "github.com/variar/gotbot"
)

func main() {
    bot, err := gotbot.NewBot("SECRET TOKEN")
    if err != nil {
        return
    }

    bot.AddCommand("/start",
      gotbot.NewCommandHandler(
      func(parsedParams map[string]string, replySender gotbot.ReplySender) {
        reply := fmt.Sprintf("Hello, %s!", replySender.FirstName())
        replySender.SendReply(reply)
      })
    )

    commandWithParam := gotbot.NewCommandHandler(
      func(parsedParams map[string]string, replySender gotbot.ReplySender) {
        reply := fmt.Sprintf("Param1 = %s!", parsedParams["param1"])
        replySender.SendReply(reply)
      }
    )

    parameter := gotbot.CommandParameter{
  		Name:        "param1",
  		AskQuestion: "Please, send param1",
  		Parse:       func(text string) (string, error) { return text, nil }
    }

    commandWithParam.AddParameter(&parameter)
	  bot.AddCommand("/command", commandWithParam)

    bot.Start()
}

gotbot's People

Contributors

variar avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.