All Projects → onrik → Micha

onrik / Micha

Licence: mit
Client lib for Telegram bot api

Programming Languages

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

Projects that are alternatives of or similar to Micha

Telegram
✈️ Telegram Notifications Channel for Laravel
Stars: ✭ 450 (+2400%)
Mutual labels:  telegram-bot, telegram
Java Telegram Bot Api
Telegram Bot API for Java
Stars: ✭ 819 (+4450%)
Mutual labels:  telegram-bot, telegram
Shell Bot
🤖 Telegram bot that executes commands and sends the live output
Stars: ✭ 470 (+2511.11%)
Mutual labels:  telegram-bot, telegram
Pytelegrambotapi
Python Telegram bot api.
Stars: ✭ 4,986 (+27600%)
Mutual labels:  telegram-bot, telegram
Telegram Api
Complete async capable Telegram bot API implementation for PHP7
Stars: ✭ 650 (+3511.11%)
Mutual labels:  telegram-bot, telegram
Telegram Bot
Ruby gem for building Telegram Bot with optional Rails integration
Stars: ✭ 433 (+2305.56%)
Mutual labels:  telegram-bot, telegram
Zabbix In Telegram
Zabbix Notifications with graphs in Telegram
Stars: ✭ 710 (+3844.44%)
Mutual labels:  telegram-bot, telegram
Userge
Userge, Durable as a Serge
Stars: ✭ 363 (+1916.67%)
Mutual labels:  telegram-bot, telegram
Telegram Sms
An SMS-forwarding Robot Running on Your Android Device.
Stars: ✭ 641 (+3461.11%)
Mutual labels:  telegram-bot, telegram
Telegram Bot
Rust Library for creating a Telegram Bot
Stars: ✭ 633 (+3416.67%)
Mutual labels:  telegram-bot, telegram
Telegram Tutorial
Уроки по написанию своих Telegram-ботов
Stars: ✭ 409 (+2172.22%)
Mutual labels:  telegram-bot, telegram
Informer
A Telegram Mass Surveillance Bot in Python
Stars: ✭ 745 (+4038.89%)
Mutual labels:  telegram-bot, telegram
Trashemail
A hosted disposable email telegram bot; Extremely privacy friendly; Proudly hosted for community.
Stars: ✭ 408 (+2166.67%)
Mutual labels:  telegram-bot, telegram
Tgbot Cpp
C++ library for Telegram bot API
Stars: ✭ 439 (+2338.89%)
Mutual labels:  telegram-bot, telegram
Groupbutler
This bot can help you in managing your group with rules, anti-flood, description, custom triggers, and much more!
Stars: ✭ 399 (+2116.67%)
Mutual labels:  telegram-bot, telegram
Telegraf
Modern Telegram Bot Framework for Node.js
Stars: ✭ 5,178 (+28666.67%)
Mutual labels:  telegram-bot, telegram
Unifiedmessagerelay
Group Message Forward Framework (supports QQ Telegram Line Discord)
Stars: ✭ 363 (+1916.67%)
Mutual labels:  telegram-bot, telegram
Pytg
Python package that wraps around Telegram messenger CLI. Send and receive messages, and more.
Stars: ✭ 365 (+1927.78%)
Mutual labels:  telegram-bot, telegram
Mtproto
Full-native go implementation of Telegram API
Stars: ✭ 566 (+3044.44%)
Mutual labels:  telegram-bot, telegram
Flowerss Bot
A telegram bot for rss reader. 一个支持应用内阅读的 Telegram RSS Bot。
Stars: ✭ 660 (+3566.67%)
Mutual labels:  telegram-bot, telegram

Micha

Tests Coverage Status Go Report Card PkgGoDev Gitter

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)
        }
    }
}

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].