Skip to content

Instantly share code, notes, and snippets.

@billchen8888
billchen8888 / list_repos.py
Created April 27, 2022 21:21 — forked from xrotwang/list_repos.py
List an organizations GitHub repositories and their size
import sys
import re
import requests
from hurry.filesize import size
NEXT = re.compile('\<(?P<url>[^\>]+)\>; rel\=\"next\"')