Django automatically creates an id field as primary key.
Now I need to get the object by this id.
object = Class.objects.filter()
How
You can use:
objects_all=Class.objects.filter(filter_condition="")
This will return a query set even if it gets one object. If you need exactly one object use:
obj=Class.objects.get(conditon="")