Show More
@@ -1,90 +1,109 b'' | |||||
1 | #!/usr/bin/env python |
|
1 | #!/usr/bin/env python | |
2 | """Simple tools to query github.com and gather stats about issues. |
|
2 | """Simple tools to query github.com and gather stats about issues. | |
3 | """ |
|
3 | """ | |
|
4 | #----------------------------------------------------------------------------- | |||
|
5 | # Imports | |||
|
6 | #----------------------------------------------------------------------------- | |||
|
7 | ||||
4 | from __future__ import print_function |
|
8 | from __future__ import print_function | |
5 |
|
9 | |||
6 | import json |
|
10 | import json | |
7 | import sys |
|
11 | import sys | |
8 |
|
12 | |||
9 | from datetime import datetime, timedelta |
|
13 | from datetime import datetime, timedelta | |
10 | from urllib import urlopen |
|
14 | from urllib import urlopen | |
11 |
|
15 | |||
|
16 | #----------------------------------------------------------------------------- | |||
|
17 | # Functions | |||
|
18 | #----------------------------------------------------------------------------- | |||
12 |
|
19 | |||
13 | def get_issues(project="ipython/ipython/", state="open"): |
|
20 | def get_issues(project="ipython/ipython/", state="open"): | |
14 | """Get a list of the issues from the Github API.""" |
|
21 | """Get a list of the issues from the Github API.""" | |
15 | f = urlopen("http://github.com/api/v2/json/issues/list/%s%s" % (project, |
|
22 | f = urlopen("http://github.com/api/v2/json/issues/list/%s%s" % (project, | |
16 | state)) |
|
23 | state)) | |
17 | return json.load(f)['issues'] |
|
24 | return json.load(f)['issues'] | |
18 |
|
25 | |||
19 |
|
26 | |||
20 | def _parse_datetime(s): |
|
27 | def _parse_datetime(s): | |
21 | """Parse dates in the format returned by the Github API.""" |
|
28 | """Parse dates in the format returned by the Github API.""" | |
22 | return datetime.strptime(s.rpartition(" ")[0], "%Y/%m/%d %H:%M:%S") |
|
29 | return datetime.strptime(s.rpartition(" ")[0], "%Y/%m/%d %H:%M:%S") | |
23 |
|
30 | |||
24 |
|
31 | |||
25 | def issues2dict(issues): |
|
32 | def issues2dict(issues): | |
26 | """Convert a list of issues to a dict, keyed by issue number.""" |
|
33 | """Convert a list of issues to a dict, keyed by issue number.""" | |
27 | idict = {} |
|
34 | idict = {} | |
28 | for i in issues: |
|
35 | for i in issues: | |
29 | idict[i['number']] = i |
|
36 | idict[i['number']] = i | |
30 | return idict |
|
37 | return idict | |
31 |
|
38 | |||
32 |
|
39 | |||
33 | def is_pull_request(issue): |
|
40 | def is_pull_request(issue): | |
34 | """Return True if the given issue is a pull request.""" |
|
41 | """Return True if the given issue is a pull request.""" | |
35 | return 'pull_request_url' in issue |
|
42 | return 'pull_request_url' in issue | |
36 |
|
43 | |||
37 |
|
44 | |||
38 | def issues_closed_since(period=timedelta(days=365), project="ipython/ipython/"): |
|
45 | def issues_closed_since(period=timedelta(days=365), project="ipython/ipython/"): | |
39 | """Get all issues closed since a particular point in time. period |
|
46 | """Get all issues closed since a particular point in time. period | |
40 | can either be a datetime object, or a timedelta object. In the |
|
47 | can either be a datetime object, or a timedelta object. In the | |
41 | latter case, it is used as a time before the present.""" |
|
48 | latter case, it is used as a time before the present.""" | |
42 | allclosed = get_issues(project=project, state='closed') |
|
49 | allclosed = get_issues(project=project, state='closed') | |
43 | if isinstance(period, timedelta): |
|
50 | if isinstance(period, timedelta): | |
44 | period = datetime.now() - period |
|
51 | period = datetime.now() - period | |
45 | return [i for i in allclosed if _parse_datetime(i['closed_at']) > period] |
|
52 | return [i for i in allclosed if _parse_datetime(i['closed_at']) > period] | |
46 |
|
53 | |||
47 |
|
54 | |||
48 | def sorted_by_field(issues, field='closed_at', reverse=False): |
|
55 | def sorted_by_field(issues, field='closed_at', reverse=False): | |
49 | """Return a list of issues sorted by closing date date.""" |
|
56 | """Return a list of issues sorted by closing date date.""" | |
50 | return sorted(issues, key = lambda i:i[field], reverse=reverse) |
|
57 | return sorted(issues, key = lambda i:i[field], reverse=reverse) | |
51 |
|
58 | |||
52 |
|
59 | |||
53 | def report(issues, show_urls=False): |
|
60 | def report(issues, show_urls=False): | |
54 | """Summary report about a list of issues, printing number and title. |
|
61 | """Summary report about a list of issues, printing number and title. | |
55 | """ |
|
62 | """ | |
56 | # titles may have unicode in them, so we must encode everything below |
|
63 | # titles may have unicode in them, so we must encode everything below | |
57 | if show_urls: |
|
64 | if show_urls: | |
58 | for i in issues: |
|
65 | for i in issues: | |
59 | print('* `%d <%s>`_: %s' % (i['number'], |
|
66 | print('* `%d <%s>`_: %s' % (i['number'], | |
60 | i['html_url'].encode('utf-8'), |
|
67 | i['html_url'].encode('utf-8'), | |
61 | i['title'].encode('utf-8'))) |
|
68 | i['title'].encode('utf-8'))) | |
62 | else: |
|
69 | else: | |
63 | for i in issues: |
|
70 | for i in issues: | |
64 | print('* %d: %s' % (i['number'], i['title'].encode('utf-8'))) |
|
71 | print('* %d: %s' % (i['number'], i['title'].encode('utf-8'))) | |
65 |
|
72 | |||
|
73 | #----------------------------------------------------------------------------- | |||
|
74 | # Main script | |||
|
75 | #----------------------------------------------------------------------------- | |||
66 |
|
76 | |||
67 | if __name__ == "__main__": |
|
77 | if __name__ == "__main__": | |
68 | # Demo, search one year back |
|
78 | # Whether to add reST urls for all issues in printout. | |
69 | show_urls = True |
|
79 | show_urls = True | |
|
80 | ||||
|
81 | # By default, search one month back | |||
70 | if len(sys.argv) > 1: |
|
82 | if len(sys.argv) > 1: | |
71 | days = int(sys.argv[1]) |
|
83 | days = int(sys.argv[1]) | |
72 | else: |
|
84 | else: | |
73 |
days = 3 |
|
85 | days = 30 | |
74 |
|
86 | |||
|
87 | # turn off to play interactively without redownloading, use %run -i | |||
75 | if 1: |
|
88 | if 1: | |
76 |
issues = |
|
89 | issues = issues_closed_since(timedelta(days=days)) | |
77 | reverse=True) |
|
90 | ||
|
91 | # For regular reports, it's nice to show them in reverse chronological order | |||
|
92 | issues = sorted_by_field(issues, reverse=True) | |||
78 |
|
93 | |||
|
94 | # Break up into pull requests and regular issues | |||
79 | pulls = filter(is_pull_request, issues) |
|
95 | pulls = filter(is_pull_request, issues) | |
80 | regular = filter(lambda i: not is_pull_request(i), issues) |
|
96 | regular = filter(lambda i: not is_pull_request(i), issues) | |
81 | n = len(issues) |
|
97 | n_issues, n_pulls, n_regular = map(len, (issues, pulls, regular)) | |
82 |
|
98 | |||
83 | print("%d total issues closed in the last %d days." % (n, days)) |
|
99 | # Print summary report we can directly include into release notes. | |
84 | print("%d pull requests and %d regular issues." % (len(pulls), len(regular))) |
|
100 | print("Github stats for the last %d days." % days) | |
|
101 | print("We closed a total of %d issues, %d pull requests and %d regular \n" | |||
|
102 | "issues; this is the full list (generated with the script \n" | |||
|
103 | "`tools/github_stats.py`):" % (n_issues, n_pulls, n_regular)) | |||
85 | print() |
|
104 | print() | |
86 |
print('Pull requests (%d):\n' % |
|
105 | print('Pull requests (%d):\n' % n_pulls) | |
87 | report(pulls, show_urls) |
|
106 | report(pulls, show_urls) | |
88 | print() |
|
107 | print() | |
89 |
print('Regular issues (%d):\n' % |
|
108 | print('Regular issues (%d):\n' % n_regular) | |
90 | report(regular, show_urls) |
|
109 | report(regular, show_urls) |
General Comments 0
You need to be logged in to leave comments.
Login now