Accessing github in python using pyGithub



INSTALLING PACKAGE:

pip install pyGithub


code:

from github import Github
access_token="your token"

g=Github(access_token)

user=g.get_user("your github username")

for repo in user.get_repos:

print(repo.full_name)







)

Stay Blessed

Comments

Popular posts from this blog

Exporting HTML Page into PDF In Django

How to save and download a csv file in django