Task Toss is a simple Python application that randomly assigns household tasks to MY children. This project is designed to make chore assignments fun and fair, helping to distribute responsibilities evenly among family members.
Feel free to contribute to this project by submitting issues or pull requests.
- Randomly assigns tasks from a predefined list to each child.
- Simple and efficient implementation using Python.
- Easy to modify task and child lists as needed.
To use Task Toss, you need to have Python installed on your machine. You can clone the repository using the following command:
git clone https://github.com/trendev/task-toss.git
Navigate to the project directory:
cd task-toss
Run the main.py
file to see the random task assignments:
python main.py
The main functionality is contained in the assign_tasks
function, which takes a list of kids and a list of tasks, shuffles the tasks, and assigns one task to each kid.