forked from dmitryn/GitStats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph_creator.py
53 lines (44 loc) · 842 Bytes
/
graph_creator.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
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
class GraphCreator:
"""
A template that can be inherited by all the clases that implement graphics creation for the tool
"""
def createAll(self):
self.createDayOfWeek()
self.createDomains()
self.createMonthOfYear()
self.createCommitsByYearMonth()
self.createCommitsByYear()
self.createFilesByDate()
self.createLinesOfCode()
def createHourOfDay(self):
"""
# hour of day
"""
def createDayOfWeek(self):
"""
# day of week
"""
def createDomains(self):
"""
# Domains
"""
def createMonthOfYear(self):
"""
# Month of Year
"""
def createCommitsByYearMonth(self):
"""
# commits_by_year_month
"""
def createCommitsByYear(self):
"""
# commits_by_year
"""
def createFilesByDate(self):
"""
# Files by date
"""
def createLinesOfCode(self):
"""
# Lines of Code
"""