I'm working with PyGithub to get basic access to my own github repo. Most methods require a "path" and I'm not sure what that is. What parameters would I use in the .get_contents() function? Simple example:
from github import Github
g = Github("***","***")
repo = g.get_user().get_repo("my_projects")
contents = repo.get_contents()