Skip to content

Modify the code of your previous project so that functions are used. Adding functions will improve the modularity of your code

Notifications You must be signed in to change notification settings

ReagWarner/TaskManagerFinal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TaskManager

This is a simple Python Program that assists with monitoring, storing and updating tasks for employees, using .txt files to store information

Follow these steps:

● Modify the code of your previous project so that functions are used. Adding functions will improve the modularity of your code. Your program should include at least the following functions:

o reg_user — that is called when the user selects ‘r’ to register a user.

o add_task — that is called when a user selects ‘a’ to add a new task.

o view_all — that is called when users type ‘va’ to view all the tasks listed in ‘tasks.txt’.

o view_mine — that is called when users type ‘vm’ to view all the tasks that have been assigned to them.

● Modify the function called reg_user to make sure that you don’t duplicate usernames when you add a new user to user.txt. If a user tries to add a username that already exists in user.txt, provide a relevant error message and allow them to try to add a user with a different username.

● Add the following functionality when the user selects ‘vm’ to view all the tasks assigned to them:

o Display all tasks in a manner that is easy to read. Make sure that each task is displayed with a corresponding number which can be used to identify the task.

o Allow the user to select either a specific task by entering a number or input ‘-1’ to return to the main menu.

o If the user selects a specific task, they should be able to choose to either mark the task as complete or edit the task. If the user chooses to mark a task as complete, the ‘Yes’/’No’ value that describes whether the task has been completed or not should be changed to ‘Yes’. When the user chooses to edit a task, the username of the person to whom the task is assigned or the due date of the task can be edited. The task can only be edited if it has not yet been completed.

● Add an option to generate reports to the main menu of the application.

● When the user chooses to generate reports, two text files, called task_overview.txt and user_overview.txt, should be generated.

Both these text files should output data in a user-friendly, easy to read manner.

o task_overview.txt should contain:

▪ The total number of tasks that have been generated and tracked using the task_manager.py.

▪ The total number of completed tasks.

▪ The total number of uncompleted tasks.

▪ The total number of tasks that haven’t been completed and that are overdue.

▪ The percentage of tasks that are incomplete.

▪ The percentage of tasks that are overdue.

o user_overview.txt should contain:

▪ The total number of users registered with task_manager.py.

▪ The total number of tasks that have been generated and tracked using the task_manager.py.

▪ For each user also describe:

▪ The total number of tasks assigned to that user.

▪ What percentage of the total number of tasks have been assigned to that user?

▪ What percentage of the tasks assigned to that user have been completed?

▪ What percentage of the tasks assigned to that user must still be completed?

▪ What percentage of the tasks assigned to that user have not yet been completed and are overdue?

● Modify the menu option that allows the admin to display statistics so that the reports generated are read f rom task _overview.txt and user_overview.txt and displayed on the screen in a user-friendly manner.

If these text files don’t exist (because the user hasn’t selected to generate them yet), first call the code to generate the text files.

About

Modify the code of your previous project so that functions are used. Adding functions will improve the modularity of your code

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages