a blog written in python django. users can comment, can send email. for learning purposes only. Install
virtualenv project
cd project
pip install django
django-admin.exe startproject mysite
cd mysiteedit settings.py, add blog in INSTALLED_APPS then:
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py runservergo to http://localhost/blog/