Posts

Showing posts from November, 2020

Review Scrapper By Django

Image
 Review Scrapper project by Django Hello everyone in this blog we learn how to make a full fledge python project "Review Scrapper by Django" in Pycharm . We also use Django framework for doing some backend work. 0th Steps: Install Pycharm and create virtual environment by using Pycharm. For installing kindly refer my Pycharm Guide blog. Here is the link  1st steps: Install Django in your virtual environment and Create new project. Firstly activate your virtual environment in your Anaconda command prompt .By using command: conda activate env_name Navigate directory where you want to save your project.By using  cmd directory_name  Now install Django in your virtual environment :   pip install Django We are now ready to create our first Django project : django-admin startproject project_name In single project contain different app. Ex store/login/update and many more.It is recommended to seperate different app. For Creating New app: python manage.py startapp app_name Now We comp