I was going through the Django's official Polls Tutorial. I am able to follow the steps and so far able to get the results. But I am not able to understand the structure of Models
While using the API in shell (Polls Tutorial Part 1) one use Polls.objects.all() to list objects Now polls is a class which inherits from models.Model. But what about objects?
Using Poll.objects lists objects to and then we can use the all method on it.
So what exactly is Poll.objects (an instance of something else?) Sorry if this sounds really dumb I am very new to all this stuff.