Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
matplotlib/tools/github_stats.py at v3.4.x · matplotlib/matplotlib · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
matplotlib
/
matplotlib
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
8.5k
Star
23.2k
Code
Issues
1.1k
Pull requests
423
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
v3.4.x
Breadcrumbs
matplotlib
/
tools
/
github_stats.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
243 lines (200 loc) · 8.28 KB
v3.4.x
Breadcrumbs
matplotlib
/
tools
/
github_stats.py
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
243 lines (200 loc) · 8.28 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python
"""Simple tools to query github.com and gather stats about issues.
To generate a report for IPython 2.0, run:
python github_stats.py --milestone 2.0 --since-tag rel-1.0.0
"""
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import
sys
from
argparse
import
ArgumentParser
from
datetime
import
datetime
,
timedelta
from
subprocess
import
check_output
from
gh_api
import
(
get_paged_request
,
make_auth_header
,
get_pull_request
,
is_pull_request
,
get_milestone_id
,
get_issues_list
,
get_authors
,
)
#-----------------------------------------------------------------------------
# Globals
#-----------------------------------------------------------------------------
ISO8601
=
"%Y-%m-%dT%H:%M:%SZ"
PER_PAGE
=
100
#-----------------------------------------------------------------------------
# Functions
#-----------------------------------------------------------------------------
def
round_hour
(
dt
):
return
dt
.
replace
(
minute
=
0
,
second
=
0
,
microsecond
=
0
)
def
_parse_datetime
(
s
):
"""Parse dates in the format returned by the GitHub API."""
if
s
:
return
datetime
.
strptime
(
s
,
ISO8601
)
else
:
return
datetime
.
fromtimestamp
(
0
)
def
issues2dict
(
issues
):
"""Convert a list of issues to a dict, keyed by issue number."""
idict
=
{}
for
i
in
issues
:
idict
[
i
[
'number'
]]
=
i
return
idict
def
split_pulls
(
all_issues
,
project
=
"matplotlib/matplotlib"
):
"""Split a list of closed issues into non-PR Issues and Pull Requests."""
pulls
=
[]
issues
=
[]
for
i
in
all_issues
:
if
is_pull_request
(
i
):
pull
=
get_pull_request
(
project
,
i
[
'number'
],
auth
=
True
)
pulls
.
append
(
pull
)
else
:
issues
.
append
(
i
)
return
issues
,
pulls
def
issues_closed_since
(
period
=
timedelta
(
days
=
365
),
project
=
"matplotlib/matplotlib"
,
pulls
=
False
):
"""Get all issues closed since a particular point in time. period
can either be a datetime object, or a timedelta object. In the
latter case, it is used as a time before the present.
"""
which
=
'pulls'
if
pulls
else
'issues'
if
isinstance
(
period
,
timedelta
):
since
=
round_hour
(
datetime
.
utcnow
()
-
period
)
else
:
since
=
period
url
=
"https://api.github.com/repos/%s/%s?state=closed&sort=updated&since=%s&per_page=%i"
%
(
project
,
which
,
since
.
strftime
(
ISO8601
),
PER_PAGE
)
allclosed
=
get_paged_request
(
url
,
headers
=
make_auth_header
())
filtered
=
[
i
for
i
in
allclosed
if
_parse_datetime
(
i
[
'closed_at'
])
>
since
]
if
pulls
:
filtered
=
[
i
for
i
in
filtered
if
_parse_datetime
(
i
[
'merged_at'
])
>
since
]
# filter out PRs not against master (backports)
filtered
=
[
i
for
i
in
filtered
if
i
[
'base'
][
'ref'
]
==
'master'
]
else
:
filtered
=
[
i
for
i
in
filtered
if
not
is_pull_request
(
i
) ]
return
filtered
def
sorted_by_field
(
issues
,
field
=
'closed_at'
,
reverse
=
False
):
"""Return a list of issues sorted by closing date date."""
return
sorted
(
issues
,
key
=
lambda
i
:
i
[
field
],
reverse
=
reverse
)
def
report
(
issues
,
show_urls
=
False
):
"""Summary report about a list of issues, printing number and title."""
if
show_urls
:
for
i
in
issues
:
role
=
'ghpull'
if
'merged_at'
in
i
else
'ghissue'
print
(
'* :%s:`%d`: %s'
%
(
role
,
i
[
'number'
],
i
[
'title'
].
replace
(
'`'
,
'``'
)))
else
:
for
i
in
issues
:
print
(
'* %d: %s'
%
(
i
[
'number'
],
i
[
'title'
].
replace
(
'`'
,
'``'
)))
#-----------------------------------------------------------------------------
# Main script
#-----------------------------------------------------------------------------
if
__name__
==
"__main__"
:
# Whether to add reST urls for all issues in printout.
show_urls
=
True
parser
=
ArgumentParser
()
parser
.
add_argument
(
'--since-tag'
,
type
=
str
,
help
=
"The git tag to use for the starting point (typically the last major release)."
)
parser
.
add_argument
(
'--milestone'
,
type
=
str
,
help
=
"The GitHub milestone to use for filtering issues [optional]."
)
parser
.
add_argument
(
'--days'
,
type
=
int
,
help
=
"The number of days of data to summarize (use this or --since-tag)."
)
parser
.
add_argument
(
'--project'
,
type
=
str
,
default
=
"matplotlib/matplotlib"
,
help
=
"The project to summarize."
)
parser
.
add_argument
(
'--links'
,
action
=
'store_true'
,
default
=
False
,
help
=
"Include links to all closed Issues and PRs in the output."
)
opts
=
parser
.
parse_args
()
tag
=
opts
.
since_tag
# set `since` from days or git tag
if
opts
.
days
:
since
=
datetime
.
utcnow
()
-
timedelta
(
days
=
opts
.
days
)
else
:
if
not
tag
:
tag
=
check_output
([
'git'
,
'describe'
,
'--abbrev=0'
]).
strip
().
decode
(
'utf8'
)
cmd
=
[
'git'
,
'log'
,
'-1'
,
'--format=%ai'
,
tag
]
tagday
,
tz
=
check_output
(
cmd
).
strip
().
decode
(
'utf8'
).
rsplit
(
' '
,
1
)
since
=
datetime
.
strptime
(
tagday
,
"%Y-%m-%d %H:%M:%S"
)
h
=
int
(
tz
[
1
:
3
])
m
=
int
(
tz
[
3
:])
td
=
timedelta
(
hours
=
h
,
minutes
=
m
)
if
tz
[
0
]
==
'-'
:
since
+=
td
else
:
since
-=
td
since
=
round_hour
(
since
)
milestone
=
opts
.
milestone
project
=
opts
.
project
print
(
"fetching GitHub stats since %s (tag: %s, milestone: %s)"
%
(
since
,
tag
,
milestone
),
file
=
sys
.
stderr
)
if
milestone
:
milestone_id
=
get_milestone_id
(
project
=
project
,
milestone
=
milestone
,
auth
=
True
)
issues_and_pulls
=
get_issues_list
(
project
=
project
,
milestone
=
milestone_id
,
state
=
'closed'
,
auth
=
True
,
)
issues
,
pulls
=
split_pulls
(
issues_and_pulls
,
project
=
project
)
else
:
issues
=
issues_closed_since
(
since
,
project
=
project
,
pulls
=
False
)
pulls
=
issues_closed_since
(
since
,
project
=
project
,
pulls
=
True
)
# For regular reports, it's nice to show them in reverse chronological order
issues
=
sorted_by_field
(
issues
,
reverse
=
True
)
pulls
=
sorted_by_field
(
pulls
,
reverse
=
True
)
n_issues
,
n_pulls
=
map
(
len
, (
issues
,
pulls
))
n_total
=
n_issues
+
n_pulls
# Print summary report we can directly include into release notes.
print
(
'.. _github-stats:'
)
print
()
print
(
'GitHub Stats'
)
print
(
'============'
)
print
()
since_day
=
since
.
strftime
(
"%Y/%m/%d"
)
today
=
datetime
.
today
().
strftime
(
"%Y/%m/%d"
)
print
(
"GitHub stats for %s - %s (tag: %s)"
%
(
since_day
,
today
,
tag
))
print
()
print
(
"These lists are automatically generated, and may be incomplete or contain duplicates."
)
print
()
ncommits
=
0
all_authors
=
[]
if
tag
:
# print git info, in addition to GitHub info:
since_tag
=
tag
+
'..'
cmd
=
[
'git'
,
'log'
,
'--oneline'
,
since_tag
]
ncommits
+=
len
(
check_output
(
cmd
).
splitlines
())
author_cmd
=
[
'git'
,
'log'
,
'--use-mailmap'
,
"--format=* %aN"
,
since_tag
]
all_authors
.
extend
(
check_output
(
author_cmd
).
decode
(
'utf-8'
,
'replace'
).
splitlines
())
pr_authors
=
[]
for
pr
in
pulls
:
pr_authors
.
extend
(
get_authors
(
pr
))
ncommits
=
len
(
pr_authors
)
+
ncommits
-
len
(
pulls
)
author_cmd
=
[
'git'
,
'check-mailmap'
]
+
pr_authors
with_email
=
check_output
(
author_cmd
).
decode
(
'utf-8'
,
'replace'
).
splitlines
()
all_authors
.
extend
([
'* '
+
a
.
split
(
' <'
)[
0
]
for
a
in
with_email
])
unique_authors
=
sorted
(
set
(
all_authors
),
key
=
lambda
s
:
s
.
lower
())
print
(
"We closed %d issues and merged %d pull requests."
%
(
n_issues
,
n_pulls
))
if
milestone
:
print
(
"The full list can be seen `on GitHub <https://github.com/%s/milestone/%s?closed=1>`__"
%
(
project
,
milestone_id
)
)
print
()
print
(
"The following %i authors contributed %i commits."
%
(
len
(
unique_authors
),
ncommits
))
print
()
print
(
'
\n
'
.
join
(
unique_authors
))
if
opts
.
links
:
print
()
print
(
"GitHub issues and pull requests:"
)
print
()
print
(
'Pull Requests (%d):
\n
'
%
n_pulls
)
report
(
pulls
,
show_urls
)
print
()
print
(
'Issues (%d):
\n
'
%
n_issues
)
report
(
issues
,
show_urls
)
print
()
print
()
print
(
"""Previous GitHub Stats
---------------------
.. toctree::
:maxdepth: 1
:glob:
:reversed:
prev_whats_new/github_stats_*
"""
)
You can’t perform that action at this time.