I can get a list of shots for the entire project via doing:
sg.find("Project",filters=[],fields=['name'])
However I want to get a list of shots JUST for a specific page.. how do I do that?
sg = Shotgun("URL", "API", "KEY")
page = sg.find("Page", filters=[["name", "is", user + "'s tasks"]], fields=['name'])[0]
### Now what?
I am fairly new to using the shotgun api... so forgive me if this is an easy thing to do..:P