Django
Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source
Install virtualenv
pythonpip install virtualenvCreate the virtual environment
bashvirtualenv --no-site-packages nameActivate the virtual environment
bashsource name_of_env_dir/bin/activateInstall Django if not install
bashpip install DjangoStart your project
bashdjango-admin startproject project_nameCheck if the project is created
bashpython manage.py runserverOpen the link given in the browser:
http://localhost:8000orhttp://127.0.0.1:8000
