Django Crash Course Commands #  Install pipenv#  Create Venv#  Install Django#  Create projectcd  pollster#  Run server on http: 127.0.0.1:8000 (ctrl+c to stop)#  Run initial migrations#  Create polls app#  Create polls migrations#  Run migrations#  Using the shellQuestion.objects.all ()
>>>  q = Question(question_text=" What is your favorite Python Framework?" q.save ()
>>>  q.id
>>>  q.question_text
>>>  Question.objects.all ()
>>>  Question.objects.filter(id=1)
>>>  Question.objects.get(pk=1)
>>>  q = Question.objects.get(pk=1)
>>>  q.choice_set.all ()
>>>  q.choice_set.create(choice_text=' Django' ' Flask' ' Flask' q.choice_set.all ()
>>>  quit ()#  Create admin user#  Create pages app