Server Side Programming
23. Django basics
Django basic configurationPython's WEB frameworks include Django, Tornado, Flask, etc. Compared with other WEB frameworks, Django has the following advantages: large and complete. The framework itself integrates ORM, model binding, template engine, cache, Session and many other functions.1. Installation# windows install directly with pip pip install django # The generated django file is added to the system environment variable2. Create and startcreate django-admin startproject mysite run python