https://github.com/learncodingeasy/web_scraping
Web Scraping
https://github.com/learncodingeasy/web_scraping
django django-framework django-rest-framework python scraping scraping-api scraping-data scraping-framework scraping-python scraping-web scraping-websites vite vscode vue vuejs web web-scraping
Last synced: 2 months ago
JSON representation
Web Scraping
- Host: GitHub
- URL: https://github.com/learncodingeasy/web_scraping
- Owner: LearnCodingEasy
- Created: 2025-04-12T16:31:55.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-04-12T16:40:06.000Z (3 months ago)
- Last Synced: 2025-04-12T17:39:55.138Z (3 months ago)
- Topics: django, django-framework, django-rest-framework, python, scraping, scraping-api, scraping-data, scraping-framework, scraping-python, scraping-web, scraping-websites, vite, vscode, vue, vuejs, web, web-scraping
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web_Scraping
## web_scraping
Web Scraping
---
---
---
---
---
### Python
```cmd
pip install beautifulsoup4 requests Flask
```---
---
---
---
---
### Crete Virtual Environment
#### Create Virtual Environment
```cmd
python -m venv web_scraping_virtual_environment
```#### Activate Virtual Environment
```cmd
web_scraping_virtual_environment\Scripts\activate
```---
---
---
---
---
### Install Django & Libraries
#### Install Django
```cmd
pip install django
```#### Install Libraries
```cmd
pip install djangorestframework django-cors-headers
``````cmd
pip install requests
``````cmd
pip install beautifulsoup4
```### freeze Libraries
```cmd
pip freeze > requirements.txt
```### Create Django Project
```cmd
django-admin startproject web_scraping_django
```### Create Django App
```cmd
cd web_scraping_django
``````cmd
python manage.py startapp api
``````cmd
python manage.py createsuperuser
``````cmd
python manage.py makemigrations
``````cmd
python manage.py migrate
``````cmd
python manage.py runserver
```---
---
---
---
---
### Instal Vue
```cmd
npm create vue@latest
```### Setup Vue
```cmd
cd web_scraping_vue
``````cmd
npm install
``````cmd
npm run format
``````cmd
npm run build
``````cmd
npm run dev
```### Install Vue Libraries
```cmd
npm install -D tailwindcss@3 postcss autoprefixer
npx tailwindcss init -p
``````cmd
npm install primevue primeicons
npm install @primevue/themes
npm install quill
``````cmd
npm install -D sass@latest
``````cmd
npm install axios
``````cmd
npm i --save @fortawesome/fontawesome-svg-core @fortawesome/vue-fontawesome@latest @fortawesome/vue-fontawesome@prerelease @fortawesome/free-solid-svg-icons @fortawesome/free-brands-svg-icons @fortawesome/free-regular-svg-icons
``````cmd
npm install -D vite-plugin-pwa
``````cmd
npm i animate.css
``````cmd
```