An open API service indexing awesome lists of open source software.

https://github.com/akunna1/django-web-scraper

A web app build with Python's Django, that scraps through the products on Nigeria's Jumia online store
https://github.com/akunna1/django-web-scraper

backend beautifulsoup4 css django frontend html python requests-library-python web-scraping webapp

Last synced: 8 months ago
JSON representation

A web app build with Python's Django, that scraps through the products on Nigeria's Jumia online store

Awesome Lists containing this project

README

          

# Django-Web-Scraping
Web Scraping with Python's Django

**Setting up Django Project using VS Code:**
- on cmd --> cd C:\Users\akunna1\Desktop\django_project
- set up venv using pip install virtualenv
- python -m venv venv
- venv\scripts\activate
- pip install django
- django-admin startproject project1
- cd project1
- python manage.py startapp app1
- In app1 there's models.py(for backend, where to set up db), view.py(for running db, for setting up requests), tests.py(for running tests)
- python manage.py startapp app1
- add app1 to settings.py
- python manage.py runserver