Show More
@@ -1,6 +1,10 b'' | |||
|
1 | 1 | #!/usr/bin/env python |
|
2 | 2 | """Simple tools to query github.com and gather stats about issues. |
|
3 | 3 | """ |
|
4 | #----------------------------------------------------------------------------- | |
|
5 | # Imports | |
|
6 | #----------------------------------------------------------------------------- | |
|
7 | ||
|
4 | 8 | from __future__ import print_function |
|
5 | 9 | |
|
6 | 10 | import json |
@@ -9,6 +13,9 b' import sys' | |||
|
9 | 13 | from datetime import datetime, timedelta |
|
10 | 14 | from urllib import urlopen |
|
11 | 15 | |
|
16 | #----------------------------------------------------------------------------- | |
|
17 | # Functions | |
|
18 | #----------------------------------------------------------------------------- | |
|
12 | 19 | |
|
13 | 20 | def get_issues(project="ipython/ipython/", state="open"): |
|
14 | 21 | """Get a list of the issues from the Github API.""" |
@@ -63,28 +70,40 b' def report(issues, show_urls=False):' | |||
|
63 | 70 | for i in issues: |
|
64 | 71 | print('* %d: %s' % (i['number'], i['title'].encode('utf-8'))) |
|
65 | 72 | |
|
73 | #----------------------------------------------------------------------------- | |
|
74 | # Main script | |
|
75 | #----------------------------------------------------------------------------- | |
|
66 | 76 | |
|
67 | 77 | if __name__ == "__main__": |
|
68 | # Demo, search one year back | |
|
78 | # Whether to add reST urls for all issues in printout. | |
|
69 | 79 | show_urls = True |
|
80 | ||
|
81 | # By default, search one month back | |
|
70 | 82 | if len(sys.argv) > 1: |
|
71 | 83 | days = int(sys.argv[1]) |
|
72 | 84 | else: |
|
73 |
days = 3 |
|
|
85 | days = 30 | |
|
74 | 86 | |
|
87 | # turn off to play interactively without redownloading, use %run -i | |
|
75 | 88 | if 1: |
|
76 |
issues = |
|
|
77 | reverse=True) | |
|
89 | issues = issues_closed_since(timedelta(days=days)) | |
|
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 | 95 | pulls = filter(is_pull_request, issues) |
|
80 | 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)) | |
|
84 | print("%d pull requests and %d regular issues." % (len(pulls), len(regular))) | |
|
99 | # Print summary report we can directly include into release notes. | |
|
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 | 104 | print() |
|
86 |
print('Pull requests (%d):\n' % |
|
|
105 | print('Pull requests (%d):\n' % n_pulls) | |
|
87 | 106 | report(pulls, show_urls) |
|
88 | 107 | print() |
|
89 |
print('Regular issues (%d):\n' % |
|
|
108 | print('Regular issues (%d):\n' % n_regular) | |
|
90 | 109 | report(regular, show_urls) |
General Comments 0
You need to be logged in to leave comments.
Login now