All Projects → python-botogram → Botogram

python-botogram / Botogram

Licence: mit
Just focus on your bots.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Botogram

Tlg joincaptchabot
Telegram Bot to verify if users that join a group, are humans. The Bot send an image captcha for each new user, and kick any of them that can't solve the captcha in a specified time.
Stars: ✭ 226 (+113.21%)
Mutual labels:  bot, hacktoberfest, telegram
Whatsapp Web.js
A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
Stars: ✭ 4,103 (+3770.75%)
Mutual labels:  bot-api, bot, hacktoberfest
Noderssbot
Another Telegram RSS bot but in Node.js Telegram RSS 机器人
Stars: ✭ 212 (+100%)
Mutual labels:  bot, hacktoberfest, telegram
Madelineproto
Async PHP client/server API for the telegram MTProto protocol
Stars: ✭ 1,776 (+1575.47%)
Mutual labels:  bot, hacktoberfest, telegram
Telegraf
Modern Telegram Bot Framework for Node.js
Stars: ✭ 5,178 (+4784.91%)
Mutual labels:  bot-api, bot, telegram
Groupbutler
This bot can help you in managing your group with rules, anti-flood, description, custom triggers, and much more!
Stars: ✭ 399 (+276.42%)
Mutual labels:  bot, hacktoberfest, telegram
Python Telegram Bot
We have made you a wrapper you can't refuse
Stars: ✭ 17,209 (+16134.91%)
Mutual labels:  bot, hacktoberfest, telegram
Mypackbot
🤖 Your own unlimited pack of Telegram-stickers
Stars: ✭ 18 (-83.02%)
Mutual labels:  bot-api, bot, telegram
Werewolf
Werewolf for Telegram
Stars: ✭ 458 (+332.08%)
Mutual labels:  bot, hacktoberfest, telegram
Telegram
✈️ Telegram Notifications Channel for Laravel
Stars: ✭ 450 (+324.53%)
Mutual labels:  bot-api, hacktoberfest, telegram
Notify
A dead simple Go library for sending notifications to various messaging services.
Stars: ✭ 727 (+585.85%)
Mutual labels:  bot, hacktoberfest, telegram
Ex gram
Telegram Bot API low level API and framework
Stars: ✭ 103 (-2.83%)
Mutual labels:  bot, hacktoberfest, telegram
Ex mustang
✨ A simple, clueless bot
Stars: ✭ 67 (-36.79%)
Mutual labels:  bot, hacktoberfest
Genesis
🤖 Warframe Discord Cephalon
Stars: ✭ 67 (-36.79%)
Mutual labels:  bot, hacktoberfest
Turibot
TuriBot is a simple way to communicate with Telegram APIs in PHP
Stars: ✭ 68 (-35.85%)
Mutual labels:  bot, telegram
Bot
A Discord bot for all your needs. With memes, utilities, moderation & more, Fire is the only bot you'll need.
Stars: ✭ 79 (-25.47%)
Mutual labels:  bot, hacktoberfest
Github Releases Notify Bot
Allows you to receive notifications of new releases of software on GitHub in Telegram
Stars: ✭ 65 (-38.68%)
Mutual labels:  bot, telegram
Telegram Pm Chat Bot
Telegram Private Message Chat Bot
Stars: ✭ 69 (-34.91%)
Mutual labels:  bot, telegram
Go Tgbot
Golang telegram bot API wrapper, session-based router and middleware
Stars: ✭ 90 (-15.09%)
Mutual labels:  bot, telegram
Telebot.nim
Async client for Telegram Bot API in pure Nim [Bot API 5.1]
Stars: ✭ 93 (-12.26%)
Mutual labels:  bot, telegram

botogram Build Status News channel

Just focus on your bots.

botogram is a Python framework, which allows you to focus just on creating your Telegram bots, without worrying about the underlying Bots API.

While most of the libraries for Telegram out there just wrap the Bots API, botogram focuses heavily on the development experience, aiming to provide you the best API possible. Most of the Telegram implementation details are managed by botogram, so you can just focus on your bot.

import botogram
bot = botogram.create("YOUR-API-KEY")

@bot.command("hello")
def hello_command(chat, message, args):
    """Say hello to the world!"""
    chat.send("Hello world")

if __name__ == "__main__":
    bot.run()

You can find the documentation at botogram.dev. Also, you can get all the news about botogram in its Telegram channel.

Please note botogram currently doesn't support some of the upstream API features. All of them will be implemented in botogram 1.0

Supported Python versions: 3.4+ License: MIT

Installation

You can install easily botogram with pip (be sure to have Python 3.4 or higher installed):

$ python3 -m pip install botogram2

If you want to install from the source code, you can clone the repository and install it with setuptools. Be sure to have Python 3.4 (or a newer version), pip, virtualenv, setuptools and invoke installed:

$ git clone https://github.com/python-botogram/botogram.git
$ cd botogram
$ invoke install

On some Linux systems you might need to wrap the invoke install command with sudo, if you don't have root privileges.

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