dustin / bindir

My ~/bin

This URL has Read+Write access

bindir / git-contributors
100755 20 lines (12 sloc) 0.438 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
"""Who works on this project?
 
For printing a chart (the default), pygooglechart is required:
 
http://pygooglechart.slowchop.com/
 
Note that this assumes you've got an OS-X style "open" command. If
you don't, it should be easy enough to adapt main to what you need.
 
"""
 
import sys
 
import gitaggregates
 
if __name__ == '__main__':
    c = gitaggregates.Contributors(sys.argv[1:])
    gitaggregates.open_chart(c)