All Projects → strongo → Bots Framework

strongo / Bots Framework

Licence: apache-2.0
Golang framework to build multilingual bots for messengers (Telegram, FB Messenger, Skype, Line, Kik, WeChat) hosted on AppEngine, Amazon, Azure, Heroku or standalone

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Bots Framework

MyBot
🧠 Create chatbots easily with Bot Framework! 🤖
Stars: ✭ 30 (-84.13%)
Mutual labels:  bot-framework, bot-api
Whatsapp Bot
BOT - WhatsApp Web in TypeScript
Stars: ✭ 170 (-10.05%)
Mutual labels:  bot-api, bot-framework
Fondbot
Chatbot framework
Stars: ✭ 102 (-46.03%)
Mutual labels:  bot-api, bot-framework
nestjs-telegraf
🤖 Powerful Nest module for easy and fast creation Telegram bots
Stars: ✭ 300 (+58.73%)
Mutual labels:  bot-framework, bot-api
Eddi
Scalable Open Source Chatbot Platform. Build multiple Chatbots with NLP, Behavior Rules, API Connector, Templating. Developed in Java, provided with Docker, orchestrated with Kubernetes or Openshift.
Stars: ✭ 171 (-9.52%)
Mutual labels:  bot-api, bot-framework
Telegraf
Modern Telegram Bot Framework for Node.js
Stars: ✭ 5,178 (+2639.68%)
Mutual labels:  bot-api, bot-framework
Framework
Chatbot framework
Stars: ✭ 130 (-31.22%)
Mutual labels:  bot-api, bot-framework
Nds
A Go (golang) Google App Engine datastore package with strongly consistent caching.
Stars: ✭ 154 (-18.52%)
Mutual labels:  appengine
Whatsapp Web.js
A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
Stars: ✭ 4,103 (+2070.9%)
Mutual labels:  bot-api
Botonic
Build chatbots and conversational experiences using React
Stars: ✭ 144 (-23.81%)
Mutual labels:  bot-framework
Rasa
💬 Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants
Stars: ✭ 13,219 (+6894.18%)
Mutual labels:  bot-framework
Fluentular
Fluentular is a Fluentd regular expression editor
Stars: ✭ 154 (-18.52%)
Mutual labels:  appengine
Bot Connector
Bot Connector allows you to connect your bot to multiple messaging channels.
Stars: ✭ 185 (-2.12%)
Mutual labels:  bot-api
Yve Bot
Smart rule-based bot. For Browser & Node.
Stars: ✭ 181 (-4.23%)
Mutual labels:  bot-framework
Marvin
A go-kit HTTP server for the App Engine Standard Environment
Stars: ✭ 164 (-13.23%)
Mutual labels:  appengine
Slick
Slick, a Slack bot in Go
Stars: ✭ 150 (-20.63%)
Mutual labels:  bot-framework
Instabotai
Instagram AI bot with face detection. It works without instagram api, need only login and password.
Stars: ✭ 181 (-4.23%)
Mutual labels:  bot-api
Yawp
Kotlin/Java API framework for Google Appengine
Stars: ✭ 136 (-28.04%)
Mutual labels:  appengine
Jda
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
Stars: ✭ 2,598 (+1274.6%)
Mutual labels:  bot-api
Elixir Runtime
The community-supported runtime for Elixir on Google App Engine.
Stars: ✭ 158 (-16.4%)
Mutual labels:  appengine

Strongo Bots Framework

A Go language framework to develop bots for messengers.

Reasons to use:

  • Same code can work across different messenger (Telegram, Facebook Messenger, Viber, Skype, Line, Kik, WeChat, etc.)
  • You can tune your code to a specific messenger's APIs.
  • i18n & l10n support (multilingual)
  • Can be hosted in cloud or just as a standard Go HTTP server. Supports AppEngine standard environment.
  • It's fast

Conitious Integration

CircleCI Go Report Card GoDoc

Usage

func InitBot(httpRouter *httprouter.Router, botHost bots.BotHost, appContext common.DebtsTrackerAppContext) {

	driver := bots.NewBotDriver( // Orchestrate requests to appropriate handlers
		bots.AnalyticsSettings{GaTrackingID: common.GA_TRACKING_ID}, // TODO: Refactor to list of analytics providers
		appContext,                                       // Holds User entity kind name, translator, etc.
		botHost,                                          // Defines how to create context.Context, HttpClient, DB, etc...
		"Please report any issues to @DebtsTrackerGroup", // Is it wrong place? Router has similar.
	)

	driver.RegisterWebhookHandlers(httpRouter, "/bot",
		telegram.NewTelegramWebhookHandler(
			telegramBotsWithRouter, // Maps of bots by code, language, token, etc...
			newTranslator, // Creates translator that gets a context.Context (for logging purpose)
		),
		viber.NewViberWebhookHandler(
			viber.Bots,
			newTranslator,
		),
		fbm.NewFbmWebhookHandler(
			fbm.Bots,
			newTranslator,
		),
	)
}

Sample bots built with Strongo Bots Framework

The best way to learn is to see examples of usage. Here is few:

We would be happy to place a link to your example / bot that is implemented using this framework.

Go API libraries used by the framework to talk to messengers

You can use any Bot API library by implementing couple of simple interface but the framework comes with few buildins:

Other Go libraries used by the bot framework

Can I use — features cross-table for bot messenger APIs

We are building a cross-table of features supported by different bot APIs.

Contributors

Press

There are no articles about the Strongo Bots Framework just yet. Send us a link if you find such.

License

Licensed under Apache 2.0 license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].