# Install virtualenv
pip install virtualenv
# Create env
virtualenv -p python3 env
# Activate env
source env/bin/activate (macOS/linux)
env/Scripts/activate.bat (Windows)
# Install Django
pip install django
# Create project
django-admin startproject MyAwesomeProject
cd MyAwesomeProject
# Run server on http: 127.0.0.1:8000 (ctrl+c to stop)
python manage.py runserver
# Run initial migrations
python manage.py migrate
# Create polls app
python manage.py startapp blogs
# Create polls migrations
python manage.py makemigrations blogs
# Run migrations
python manage.py migrate
# Using the shell
python manage.py shell
>>> from blogs.models import Question, Choice
>>> from django.utils import timezone
>>> Question.objects.all()
>>> q = Question(question_text="What is your favorite Python Framework?", pub_date=timezone.now())
>>> 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', votes=0)
>>> q.choice_set.create(choice_text='Flask', votes=0)
>>> q.choice_set.create(choice_text='Flask', votes=0)
>>> q.choice_set.all()
>>> quit()
# Create admin user
python manage.py createsuperuser
# Create pages app
python manage.py startapp pages
🥇 This is great Shubham brother @LondheShubham153 🎓