DJANGO - a web frame work of python (part-1)
third blog of series is here : https://codexmaze.blogspot.com/2019/06/django-web-framework-of-pythonpart-3.html Django is python framework for web development. This framework is now in use by big companies as google , instagram etc. The reason is python and other reason is a set pattern of django. This will be a three blog series to tell you what is Django , where to start and basic command lines with some snippets. Now we first start with installation of django.But first you have to check python is install in your windows or not. OPEN "WINDOW POWERSHELL" and type "python --version".If it is found then python is install. Now proceed further for installation of Django. Install PIP: PIP is a package manager for Python that uses the Python Package Index to install Python packages. PIP will later be used to install Django from PyPI. If you’ve installed Python 3.4, pip is included so you may skip this section. O...