diff --git a/list_builder.py b/list_builder.py index 8432af7..09470f4 100755 --- a/list_builder.py +++ b/list_builder.py @@ -4,6 +4,7 @@ import os import sys import time import json +import zlib import argparse import requests @@ -13,7 +14,14 @@ from dateutil.parser import parse ## Regular expression patterns """GitHub repository URL.""" -re_github_repo = re.compile(r'^(http[s]?|git)://github.com/(?P[\w\-_]+)/(?P[\w\-_]+)(.git)?') +re_github_repo = re.compile( + r'^(http[s]?|git)://github.com/(?P[\w\-_]+)/(?P[\w\-_]+)(.git)?' +) + +re_commit_author = re.compile( + r'^author (?P.+) <(?P.+)> (?P