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/orgs/{organization}")
with open("out.json", 'w') as fh:
json.dump(data, fh, indent=4)
python examples/github-rest/details-about-org.py github
python examples/github-rest/details-about-org.py kantoniko
python examples/github-rest/details-about-org.py osdc-code-maven
python examples/github-rest/details-about-org.py szabgab error, this is a user