Skip to content
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.

A Telegram bot to send Secret Santa matches in a group chat

Notifications You must be signed in to change notification settings

zeroone2numeral2/secret-santa-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Secret Santa Telegram bot 🤫🎅🏼

Extremely simple and straightforward Telegram bot to organize a Secret Santa in a Telegram group chat.

I was pretty shocked to discover there's not a single basic implementation of a Secret Santa bot on Telegram, so I've decided to spend a couple of hours on this small bot. I've tried to keep it as simple and gimmick-free as possible. The idea is simple: add the bot to a group chat, ask the members to start it, and start the Secret Santas draw. Easy as that.

A bit of background

This was actually suggested by a friend of mine, who was wondering whether there was a way to do a Secret Santa draw without having all your friends to gather at the same place - which, for various reasons, might be an impossible task sometimes.

If you have a Telegram chat with your friends already set up, a Telegram bot is a pretty handy solution to solve the problem.

To avoid headaches I've decided to go down the easiest path possible: since the Telegram bot API doesn't allow bots to fetch the members list of a chat, I went for Pyrogram, which is a Python MTProto client that allows to log-in as a bot and communicate with the servers via TCP, bypassing Telegram's HTTP API. Authorizing your bot account that way, Telegram will allow you to use some API methods which are usually not available through the bot API - such as fetching a chat's members list. Which is why this bot doesn't need to store any information to send Secret Santa matches to the participants. Thanks, Pyrogram!

Running an instance of the bot

The is no installation setup/packaging, it's just a Python script you run as you prefer. I'm personally running it using supervisor in a virtualenv

  1. rename config.example.toml to config.toml
  2. open config.toml and edit pyrogram's api_id and api_hash according to the docs, and set your bot's token
  3. install the requirements via pip install -r requirements.txt
  4. run the bot with python main.py

The bot

I have an instance running at @secretsantamatcherbot