Popularity
2.4
Declining
Activity
4.4
Growing
30
4
6
Programming language: Go
License: MIT License
Tags:
Third-party APIs
Latest version: v1.1.1
micha alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view micha alternatives based on common mentions on social networks and blogs.
-
aws-sdk-go
AWS SDK for the Go programming language (In Maintenance Mode, End-of-Life on 07/31/2025). The AWS SDK for Go v2 is available here: https://github.com/aws/aws-sdk-go-v2 -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
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. -
ynab
Go client for the YNAB API. Unofficial. It covers 100% of the resources made available by the YNAB API.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of micha or a related project?
Popular Comparisons
README
Micha
Client lib for Telegram bot api. Supports Bot API v2.3.1 (of 4th Dec 2016).
Simple echo bot example:
package main
import (
"log"
"github.com/onrik/micha"
)
func main() {
bot, err := micha.NewBot("<token>")
if err != nil {
log.Fatal(err)
}
go bot.Start()
for update := range bot.Updates() {
if update.Message != nil {
bot.SendMessage(update.Message.Chat.ID, update.Message.Text, nil)
}
}
}