https://github.com/ticosax/secret_santa
https://github.com/ticosax/secret_santa
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ticosax/secret_santa
- Owner: ticosax
- License: mit
- Created: 2022-12-06T22:33:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-24T13:32:37.000Z (6 months ago)
- Last Synced: 2024-12-25T04:36:22.883Z (5 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Secret Santa for your familly and friends organization
## create config file
```toml
# participants.toml
title = 'Groups To Make'[participants]
[participants.alice]
exclusions = ['bob'][participants.bob]
exclusions = ['alice'][participants.kevin]
exclusions = [][participants.jessica]
exclusions = []
```## invoke
```sh
santa participants.toml
```Should output something like
```
alice should give to kevin
bob should give to jessica
kevin should give to bob
jessica should give to alice
```