Python PyGithub how to list projectCard?

305 Views Asked by At

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 :

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')

thanks a lot in advance

1

There are 1 best solutions below

0
On

Thanks a lot for your help get_cards on columns solve the problem.