Secret Santa is a simple software used to distribute givers/receivers with optional wish list.
Its first use case is for Santa ("Noël" in France), obviously, and it can also be used at other occasions. Be creative!
Requires Python 3.9 minimum.
python3.9 -m venv venv
. venv/bin/activate
python -m pip install -U pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-tests.txt
./checks.sh
python -m pip install -r requirements-tests.txt
python -m pytest
Create a folder to setup the event, lets say 2024-noel
:
mkdir noel-2024
Now, the tool needs two files: one with the event itself, and one with concerned people.
Create the event's event file (noel-2024/event.yml
):
name: "[Secret Santa 2024] Noël au moulin !"
description: |
Salut {{ santa.nature.title() }} Noël {{ santa.name }} !
J’ai l’honneur de te dévoiler que tu pourras faire plaisir à {{ santa.buddy }} pour Noël {{ '🎅' if santa.nature == 'papa' else '🤶' }}
{%if buddy.wishes %}
À titre d’information, {{ 'il' if buddy.nature == 'papa' else 'elle' }} ne serait pas contre un{{ ' (ou plusieurs)' if buddy.wishes|length > 1 else '' }} cadeau de cette liste :
{% for wish in buddy.wishes: %}
- {{ wish }}
{%- endfor %}
Bien entendu, libre à toi de suivre cette liste ou non.
{% endif %}
Bonne chasse aux cadeaux, et ne perd pas un rein dans l’histoire : l’important est de prendre du bon temps entre nous ❤
La bise 💋
manager_name: Alice
manager_email: [email protected]
kickoff_email_title: "🌠 Top départ ! {}"
kickoff_email_body: |
Salutations {{ santa.nature.title() }} Noël {{ santa.name }} !
C’est le début des hostilités, et je t’invite à aller sur cette page pour remplir ta liste des souhaits : https://secret-santa.example.org/{{ event.hash }}/{{ santa.hash }}
La suite début décembre,
La bise 💋
Finally, create the event's people file (noel-2024/people.yml
):
Alice:
nature: maman
email: [email protected]
wishes:
-
buddy: null
Bob:
nature: papa
email: [email protected]
wishes:
-
buddy: null
Add as many entries as people doing the event. Adapt the nature depending on the person ("papa" for a man, or "maman" for a woman).
You are good to kickoff the event!
Send an email to all buddies with a link to the website so that they can add/update their wishes list, if any:
# In our example, replace FOLDER with 2024-noel
python -m secret_santa init --event FOLDER
Start the server, it should be kept running until December, 1st:
python -m secret_santa front >> logs.log 2<&1
Optionally, setup those environment variables:
SS_SMTP_HOSTNAME
, email server name, ex:mail.example.org
SS_SMTP_USERNAME
: email ID, ex:[email protected]
SS_SMTP_PASSWORD
: email ID password
If one of them is not set at runtime, it will be asked before sending emails.
Then:
# In our example, replace FOLDER with 2024-noel
python -m secret_santa results --event FOLDER
Note that you can use the command again to only display results, emails will not be sent again.