A task generating package that lets you add, complete, and fetch random tasks.
Project description
Python Package Exercise
Funtasks: A Task Generating Package
This package was created by generally following the Packaging Python Projects guide, with the addition of pipenv
for virtual environment management.
Overview
Funtasks is a simple and fun task management package designed to help you add, complete, and randomly select tasks. It includes features for adding tasks with urgency levels, marking tasks as complete, and generating random tasks or daily goals based on your available time.
Team Members
Natalie Ovcarov
Jun Li
Daniel Brito
Alvaro Martinez
Link to Our Package on PyPI
Functions Overview
-
add_task(task_name: str, urgency: int) -> str
- Description: Adds a new task to the list with a specified urgency level.
- Parameters:
task_name
: The name of the task to add.urgency
: An integer representing the urgency level (1–5, with 5 being the most urgent).
- Returns: A confirmation message upon successful addition.
- Raises:
ValueError
if the task already exists. - Example:
add_task("Do laundry", 3)
-
complete_task(task_name: str) -> str
- Description: Marks a task as completed.
- Parameters:
task_name
: The name of the task to complete.
- Returns: A confirmation message or a message indicating the task doesn't exist.
- Example:
complete_task("Do laundry")
-
random_task() -> str
- Description: Retrieves a random task from the list.
- Returns: The name of a random task or a message indicating there are no tasks.
- Example:
random_task()
-
random_daily_goal(available_time: int) -> str
- Description: Suggests a task based on the available time.
- Parameters:
available_time
: Time available in minutes (used to determine task urgency).
- Returns: A task that fits the time constraint or a message indicating no tasks are suitable.
- Example:
random_daily_goal(25)
How to Install and Use This Package
Platform Configuration
-
Windows users: Use
python
andpip
commands instead ofpython3
andpip3
where necessary.pip install pipenv python your_program_filename.py
-
macOS/Linux users: Ensure Python 3 is installed and use
python3
.pip3 install pipenv python3 your_program_filename.py
-
Install
pipenv
(if not already installed):pip3 install pipenv
-
Install the package:
pip3 install funtasks
-
Activate the virtual environment:
pipenv shell
-
Create a Python program file to import and use the package:
from funtasks.tasks import add_task, complete_task, random_task, random_daily_goal add_task("Tell a joke", 2) complete_task("Tell a joke") print(random_task()) print(random_daily_goal(25))
-
Run the program:
python3 your_program_filename.py
-
Exit the virtual environment:
exit
Alternative: Run the Package Directly
- Create and activate a
pipenv
virtual environment. - Run the package directly:
python3 -m funtasks
- Exit the virtual environment:
exit
How to Run Unit Tests
We've included three unit tests for each function in the funtasks
package. To run these tests:
- Install
pytest
in the virtual environment:pipenv install pytest
- Run the tests from the main project directory:
python3 -m pytest
- Verify all tests pass to ensure correct functionality.
How to Contribute to Funtasks
Prerequisites
Make sure you have Python 3.9 or higher installed:
python3 --version
-
Clone the repository:
git clone https://github.com/software-students-fall2024/3-python-package-java_and_the_scripts_.git
-
Enter the directory:
cd 3-python-package-java_and_the_scripts_
-
Set up a virtual environment using
pipenv
:pipenv install --dev
-
Activate the virtual environment:
pipenv shell
-
Modify and run the file:
python -m funtasks
If you want to run a specific file (like
tasks.py
), use:python funtasks/tasks.py
-
Run tests:
pipenv run pytest
-
Build the package:
python3 -m build
-
Exit the virtual environment:
exit
Continuous Integration
This project has a continuous integration workflow that builds and runs unit tests automatically with every push to GitHub.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file funtasks-0.1.21.tar.gz
.
File metadata
- Download URL: funtasks-0.1.21.tar.gz
- Upload date:
- Size: 44.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83cff9857194e1f7b0ea3f27f95158cc96864bd169988544158608b6de2e1826 |
|
MD5 | fddad5c21a876a480e0b7de45fd824b2 |
|
BLAKE2b-256 | d93cf18733e1633231c8ea5e706af2f1b7854ed6cfca472de7001fe433a01477 |
File details
Details for the file funtasks-0.1.21-py3-none-any.whl
.
File metadata
- Download URL: funtasks-0.1.21-py3-none-any.whl
- Upload date:
- Size: 30.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 381aa3442e4cf1758de817d7ec597cc69f2c72325266d6e7aaca67dfd4dc5c2b |
|
MD5 | a318174e0ed578feaaf43f2fb1c42ad1 |
|
BLAKE2b-256 | 2dbcb299ba343302fc9a2cef078c508cb0ad4a20aec8bfeb26c8a5e620b29b38 |