-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjobs.py
More file actions
267 lines (225 loc) · 9.68 KB
/
Copy pathjobs.py
File metadata and controls
267 lines (225 loc) · 9.68 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
"""
Jobs
TODO: support salary calculations
"""
from collections import OrderedDict
import datetime as dt
import math
import os
import pprint
from statistics import median, mean as average
from clay.graphing import Histogram
from clay.settings import JOBS_BREAK_SCHEDULES, JOBS_OVERTIME_RATES
DAYS_OF_THE_WEEK = (
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday'
)
DAYS_PER_WEEK = len(DAYS_OF_THE_WEEK)
class Attendance(object):
"""
Analyzes CSV time-sheets for jobs in the following format:
month day year,time in,time out,hours worked
Attendance sheet is read from 'attendance.csv', so it must exist for
anything to work.
"""
PT_TYPES = ('week', 'month')
def __init__(self, take_home_ratio, perhour, state, offset=0):
"""Accepts pay ratio, pay per hour, and the payday offset, default 0 is for Monday."""
if state not in JOBS_BREAK_SCHEDULES:
raise ValueError('state must be in [{}]'.format(", ".join(JOBS_BREAK_SCHEDULES)))
if not os.path.exists('attendance.csv'):
raise FileNotFoundError('attendance.csv doesn\'t exist')
with open('attendance.csv') as fp:
file = [line.split(',') for line in fp.read().strip().split('\n') \
if len(line) > 0 and not line.startswith('#')]
assert len(file) > 0, 'file must have at least one entry'
assert max(map(len, file)) == min(map(len, file)), 'data columns must be consistent'
if file[0][0] != 'date' or file[0][-1] != 'hours':
raise RuntimeError('First row of CSV must be column headers including date and hours')
self.headers = file[0]
file.pop(0) # remove the header row
db = [{j: line[i] for i, j in enumerate(self.headers)} for line in file]
for i in range(len(db)):
db[i]['hours'] = float(db[i]['hours']) # convert the hours from strings to floats
self.take_home_ratio = take_home_ratio
self.db = db
self.perhour = perhour
self.offset = offset
self.filtered = {}
self.pt = {}
self.state = state
def get_average_hours(self):
"""Returns the average hours per punch"""
return average(self.get_hours())
def get_hours(self):
"""Returns a list of hours from the punches"""
return list(self.select('hours'))
def get_overtime_hours(self):
"""Returns the weeks pivot table with regular hours removed"""
# use the existing pivot table if already created
if 'week' not in self.pt:
self.setup_pt('week')
# create a copy of the pivot table
overtime = self.pt['week'].copy()
for key, value in overtime.items():
# calculate overtime hours
overtime[key] = self._get_overtime_hours(value)
return overtime
def get_total_hours(self):
"""Returns the total hours from the punches"""
return sum(self.get_hours())
def print_money(self, per):
"""Calculates and prints the take-home estimate for the given period `per`"""
if per in Attendance.PT_TYPES and per in self.pt:
for key, value in self.pt[per].items():
# calculate regular pay
money = value * self.perhour
# calculate overtime pay
overtime = self._get_overtime_hours(value)
money += overtime * self.perhour * JOBS_OVERTIME_RATES[self.state]['rate']
# account for withholding and taxes
money *= self.take_home_ratio
# report the pay
print('{} {}: ${:,.2f}'.format(per, key, money))
else:
print(per, 'is not a supported type')
def print_money_all(self):
"""Calculates and prints the take-home estimate for the whole job"""
# calculate overtime hours
overtime = self.get_overtime_hours()
overtime_hours = sum(overtime.values())
# calculate regular hours
regular_hours = self.get_total_hours() - overtime_hours
# calculate the pay
money = self.perhour * \
(regular_hours + JOBS_OVERTIME_RATES[self.state]['rate'] * overtime_hours) * \
self.take_home_ratio
# report the estimated pay
print('estimate take-home using the ratio {}: ${:,.2f}'.format(
round(self.take_home_ratio, 4),
money))
def print_punchcard(self, names=True):
"""Prints the punchcard to stdout"""
# columns are initialized to 0
hg = Histogram(columns=DAYS_OF_THE_WEEK, sort=not names)
for col in hg.data:
for row in self.db:
date = dt.datetime.strptime(row['date'], '%m-%d-%Y').weekday()
if (names and DAYS_OF_THE_WEEK[date] == col) or date == col:
hg.sd[col] += 1
self.weekly_hg = hg
hg.build()
def print_report(self):
"""Prints the attendance report to stdout"""
hours = self.get_hours()
print()
self.setup_pt() # set up both pt's
print()
print('by week')
pprint.pprint(self.pt['week'])
print()
print('by month')
pprint.pprint(self.pt['month'])
print()
print('total hours: ', round(self.get_total_hours(), 4))
self.print_money('week')
self.print_money_all()
print()
print('average:', round(self.get_average_hours(), 4))
print('median :', round(median(hours), 4))
print('mode :', round(max(hours, key=hours.count), 4))
print()
self.print_punchcard()
print()
def remove_breaks(self):
"""Removes breaks from the punchcard, allows for accurate money calculations"""
state_schedule = JOBS_BREAK_SCHEDULES[self.state]
print('Removing breaks using the rules for', self.state)
print('break length is', state_schedule['length'], 'hr')
print('count', end='\t')
print('date', end='\t\t')
print('hours (before)', end='\t')
print('hours (after)')
for row in self.db:
number_of_breaks = math.floor(row['hours'] / state_schedule['hours'])
print(number_of_breaks, end='\t')
print(row['date'], end='\t')
print(row['hours'], end='\t\t')
# remove lunch breaks from hours
row['hours'] -= number_of_breaks * state_schedule['length']
print(row['hours'])
def select(self, attrib, until_date=None):
"""Returns a list of values selected from the database. `until_date` is exclusive"""
if attrib not in self.headers:
raise ValueError('attrib must be a column header. Headers are ' + ', '.join(self.headers))
selection = []
for row in self.db:
if not until_date or row['date'] < until_date:
selection.append(row[attrib])
return selection
def setup_pt(self, by=None):
"""Sets up the 'Pivot Table' for the given field. Sets up both tables if by is None"""
if by == 'month':
months = OrderedDict()
with open('months.log', 'w') as fp:
for row in self.db:
mon = row['date'].split('-')[0]
if mon not in months:
print('new', mon, file=fp)
months[mon] = []
print('adding', row['hours'], 'to', mon, file=fp)
months[mon].append(row['hours'])
sorted_months = OrderedDict()
for month in months:
sorted_months[month] = sum(months[month])
self.pt['month'] = sorted_months
elif by == 'week':
print('Note: this work week starts on day', self.offset)
prev = dt.date(2017, 7, 3) # date before any work starts
with open('weeks.log', 'w') as fp:
sorted_weeks = OrderedDict()
for row in self.db:
date = dt.datetime.strptime(row['date'], '%m-%d-%Y')
prevday = get_day_offset(prev.weekday(), self.offset)
dateday = get_day_offset(date.weekday(), self.offset)
print(row['date'], file=fp) # print the date
print(' prev {} : date {}'.format(prevday, dateday), file=fp)
print(' ' * 4, end='', file=fp)
if prevday < dateday and len(sorted_weeks) > 0:
print('date is bigger than last. using existing week', file=fp)
else:
print('date is smaller than last. adding a new week...', file=fp)
sorted_weeks[str(len(sorted_weeks))] = []
prev = date
sorted_weeks[str(len(sorted_weeks) - 1)].append(row['hours'])
print(' ' * 4, end='', file=fp)
thisweek = sorted_weeks[str(len(sorted_weeks) - 1)]
print(thisweek, '-> average =', average(thisweek), file=fp)
self.pt['week'] = OrderedDict()
for week, values in sorted_weeks.items():
self.pt['week'][week] = sum(values)
else:
self.setup_pt('week')
self.setup_pt('month')
def _get_overtime_hours(self, value):
return max(0, value - JOBS_OVERTIME_RATES[self.state]['hours'])
def get_day_offset(day, number):
"""
Returns an integer representing the day number shifted
by the given amount
"""
day -= number
if day < 0:
day += 7
return day
if __name__ == '__main__':
import os
os.chdir('test_files')
att = Attendance(0.75, 11.0, 'OR', offset=3)
att.remove_breaks()
att.print_report()