- Welcome new joiners
- Remove spamming links
- Force users to pass a verify link to be able to write in the group
- Forwarding automatically messages from other groups
Telegram bot is using these python dependencies
import logging
import os
import telebot
from telegram import ParseMode
from telegram.ext import CallbackContext, Updater, CommandHandler, JobQueue, Dispatcher
import pymongo
import json
import pandas as pd
import jsonpickle
These environment variable are mandatory to run the bot. You can override them when you run the bot on Google Colab or you can setup Heroku configs.
BOT_TELEGRAM_API_TOKEN = ""
BOT_MONGODB_CONECTION_URL = ""
BOT_DATABASE_NAME = ""
This is a Telegram Bot. It uses Telegram's HTTP API.
- Bot username on Telegram:
@Athalbota_bot
You can find the bot on Telegram. Initiate a chat or you can add the bot into your groups. Then try these sample commands.
- /about - About this bot
- /help - Help topics
BotFather is the parent of all Telegram Bots.This telegram bot is registered via BotFather. (@Athalbota_bot
) and these parameters have been setup using the BotFather.
- Name of the bot
- Description of the bot
- Profile Picture of the bot
- Command list
Bot communicates with the backend python code using the bot-token. The bot-token is mandatory to run the bot.
Search @Athalbota_bot
and add it into your group. Grant admin permission if you want to manage the group via the bot.
To test the bot, use the .ipynb file on a Google Colab environment. Execute each step and run the bot. At the end you can view collected data using python Pandas library. Using python pandas library you can manipulate almost everything on your data.
To receive messages, the bot must do polling (continuous triggering the telegram API).
# start polling to continuously listen for messages
bot.polling()
# gracefully stop the bot after ctrl c
bot.stop_polling()
Chat ID is same as the user ID if it's a private chat between the user and the bot. If the bot is inside a group, chat ID is different.
bot.send_message(chat_id, txt)
#Ex: bot.send_message(-1001545752396, "Hi") -> 1664758714 is the chat ID (For private messages, group ID = Chat ID)
This repository is owned by @freshtony
MIT, Not for Commercial purpose