This commit is contained in:
Chris Wanstrath 2011-02-24 13:04:04 -08:00
Родитель b4bf267594
Коммит d235fe95c4
1 изменённых файлов: 11 добавлений и 0 удалений

11
raffle.py Normal file
Просмотреть файл

@ -0,0 +1,11 @@
# pip install github2
from github2.client import Github
from random import choice
github = Github()
repos = github.repos.network('github/pycon2011')
print "And the winners are..."
print "*drumroll*"
print "%s and %s!" % ( choice(repos)['owner'], choice(repos)['owner'] )