Getting started with Django Framework
Django is a python framework for developing web applications. To install Django, run pip install django To create a project, run django-admin startproject PROJECT_NAME Django come with built in development server. To start Django development server, change to the project folder and run ./manage.py runserver It will start a development web server on url http://127.0.0.1:8000/ … Read more