Skip to content

Instantly share code, notes, and snippets.

View sciunto's full-sized avatar

François Boulogne sciunto

View GitHub Profile
@sciunto
sciunto / skimage_weekly_update.py
Created April 17, 2020 13:40 — forked from emmanuelle/skimage_weekly_update.py
Use github API to print weekly updates for a given project (here scikit-image)
#!/usr/bin/env python
from github import Github
import datetime
def print_list(l, title=None):
"""From list of PullRequest of Issue objects,
print their number and title.
"""
print(f'## {title}\n')
if not l: