You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from github import Github
# github access token
g = Github("XXXXX")
repo = g.get_repo("Myrepo")
projects = repo.get_projects(state='open')
for project in projects:
print('do something with project')
I'm trying to access project card from github api with PyGithub but I'm unable to find how to call the projectcard method (https://developer.github.com/v3/projects/cards/) It seems to be ready to use (https://pygithub.readthedocs.io/en/latest/github_objects/ProjectCard.html)
My code working for projects :
thanks a lot for your help