Django Basics and Implementation of a basic App
REFERENCE :https://docs.djangoproject.com/en/3.0/ Installing Django in steps: Install python We are going to use the official release of Django , which can be done by $ python -m pip install Django Verify the installation by typing , open a python from you shell >>>import django >>>print(django.get_version()) That’s it Difference between Projects and apps An app is […]
Read More Django Basics and Implementation of a basic App