Model

Create an object without saving

objectName = ClassName()

Save an object (create or update)

objectName.save()

Create and save and object in the database

ClassName.objects.create(name='...', description='...')

List all objects

ClassName.objects.all()

Get a single object, identified by a field

ClassName.objects.get(id=1)