Popularity
2.2
Declining
Activity
1.1
-
18
4
3
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.
-
geo-golang
Go Library to access Google Maps, MapQuest, Nominatim, OpenCage, HERE, Bing, and Mapbox geocoding / reverse geocoding APIs. -
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. -
go-tgbot
Pure Golang Telegram Bot API wrapper, generated from swagger file, session-based router and middleware. -
mixpanel
Mixpanel is a library for tracking events and sending Mixpanel profile updates to Mixpanel from your go applications. -
amazon-product-advertising-api
Go Client Library for Amazon Product Advertising API
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.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)
}
}
}