The code below will list all my repos. But is there any way to add 3 more columns to include the creation date, language and type (for e.g. Sources / Forks)? I'm using the PyGithub package.
from github import Github
g = Github("user_name", "passwd")
for repo in g.get_user().get_repos():
print(repo.name)