Posts

Showing posts from November, 2020

Installation of VS Code Editor

Image
 Installation of VS Code Editor  1. Go to Below link      https://code.visualstudio.com/download 2. Click On Windows          3. VS Code will be Downloaded  4. Double Click on VS Code Software accept the agreement and click on Next 5. Click on Next 6. Click on Next 7. Check the below configuration and Click on Next 8. Click on Install 9. Done 10. Click on Finish 11. Add Extensions (It helps you if forgot syntax) 1. First Click on Extensions                                                  2. Install Django, HTML, Jinja, Python Extensions  

Installation of Django

Image
 Installation of Django Let's Get Started 1. Install Python (Ignore if you already installed it ) 2. Install VS code editor  (Ignore if you already installed it ) 4. Make folder where you want make project ( Here i make "Django project" folder) 5. open that folder in vs code software 1. Open software 2. Click on file 3. Select open folder 6. open terminal in vs code 1. Click on terminal 2. Select new terminal 7. Install Virtual environment 1. pip install virtualenv 2. virtualenv venv                    In this this command venv is my virtual environment name you can give any thing you want.          As you see we successfully create virtual environment. 8. Activate virtual environment 1. venv/Scripts/activate 9. Install Django 1. pip install django 2. pip install djangorestframework 10. Make new project in django 1. django-admin startproject myform .       ...

Getting Started With Django

Getting Started With Django 1. Who read this blog ? 1. Who wants to career in Web development 2 . Don't know what learn after learn python          3 . Who trying to learn new things 2. What is Django ? 🤔      Django is a high level Python web framework which allows fast, clean and pragmatic design development. Django handles much of the complex websites, so you can focus on writing your app without a need to reinvent the wheel. Django is totally free and open source.       It works with mostly all important databases like Oracle, MySQL, PostgreSQL,SQLite, etc. There are numbers of websites which uses Django as their primary framework for backend development. for example Youtube , Instagram ,  Spotify .   Current Version of Django is 3.0 Commonly used 1.11. Features of Django 1.  Excellent Documentation   2. Pthon Web-framework 3. SEO ( Search Engine Optimization   )...