https://github.com/trendev/task-toss
https://github.com/trendev/task-toss
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/trendev/task-toss
- Owner: trendev
- Created: 2024-11-08T10:36:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-12T19:06:22.000Z (over 1 year ago)
- Last Synced: 2025-01-14T06:30:08.742Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Task Toss
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.
## Features
- 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.
## Installation
To use Task Toss, you need to have Python installed on your machine. You can clone the repository using the following command:
```bash
git clone https://github.com/trendev/task-toss.git
```
Navigate to the project directory:
```bash
cd task-toss
```
## Usage
Run the `main.py` file to see the random task assignments:
```bash
python main.py
```
## Code Overview
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.