Do you have awkward pauses in your standups because no one wants to give their update next? Why not have a defined order? To make it fair, why not also 🎲randomize🎲 that order!
You really should use the Go version of this tool. This Python version was developed solely as a comparison exercise for the package publishing process.
Star this repo!
You can sponsor me here!
-
Get the tool with
pip install random-standup
. -
Create a team roster in a TOML file, following the format in
example-roster.toml
:
[Subteam-1]
members = [
"Alice", # TOML spec allows whitespace to break arrays
"Bob",
"Carol",
"David"
]
["Subteam 2"] # Keys can have whitespace in quoted strings
members = ["Erin", "Frank", "Grace", "Heidi"]
standup example-roster.toml
$ standup example-roster.toml
2021-03-25
## Subteam-1
Alice
Bob
David
Carol
## Subteam 2
Erin
Grace
Frank
Heidi
- Clone and
cd
into the repo. - Install Poetry.
poetry install
poetry run standup example-roster.toml
Run tests with poetry run pytest -v