-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimesheet.py
26 lines (24 loc) · 1.08 KB
/
timesheet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import remove_times
import timesheet_helper
# Place your bulleted timesheet here. The format is based on microsoft word bullets to be copy and pasted in here. You can use the following format:
timesheet = """
• Monday
o task1 9:15-9:30, 10-12:15
o task2 9:30-10
• Tuesday
o task1 9-9:30, 10:30-12:15
o task2 9:30-10:30
• Wednesday
o task1 9-9:30, 10-12
o task2 9:30-10
• Thursday
o task1 9-12
• Friday
o task1 9-9:30, 10-12
o task2 9:30-10
"""
print('------------------------------------------------------------------------------------------------------------')
print(remove_times.remove_timespans(timesheet)) # Removes the timespans from the timesheet for email of what you did.
print('------------------------------------------------------------------------------------------------------------')
print(timesheet_helper.replace_with_duration(timesheet)) # Replaces the timespans with the duration of the timespans to be used for timesheet entry.
print('------------------------------------------------------------------------------------------------------------')