REST - List of reposistories by user (pagination!)
examples/github-rest/repos-of-user.py
import json import sys from github_rest_api import get_from_github if len(sys.argv) != 2: exit(f"Usage: {sys.argv[0]} USERNAME") organization = sys.argv[1] data = get_from_github(f"https://api.github.com/users/{organization}/repos", pages=True) with open("out.json", 'w') as fh: json.dump(data, fh, indent=4)
python examples/github-rest/repos-of-user.py szabgab but these also work: python examples/github-rest/repos-of-user.py kantoniko python examples/github-rest/repos-of-user.py osdc-code-maven