https://github.com/iyashwantsaini/web-scraping-python
Web Scraping | requests | Beautiful Soup | pyQt5
https://github.com/iyashwantsaini/web-scraping-python
Last synced: 3 months ago
JSON representation
Web Scraping | requests | Beautiful Soup | pyQt5
- Host: GitHub
- URL: https://github.com/iyashwantsaini/web-scraping-python
- Owner: iyashwantsaini
- Created: 2020-01-06T17:36:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T17:54:38.000Z (over 5 years ago)
- Last Synced: 2025-01-16T22:29:23.668Z (5 months ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WEB SCRAPING PYTHON
# STEPS (dynamic/static content)
1) Importing libraries
2) passing URL to scrapping function
3) getting response in form of HTML
4) finding classes of required data
5) getting data using CSS selectors
6) writing data to CSV file
# STEPS (dynamic content - js rendered)
1) Importing libraries , pyQt5
2) passing URL to scrapping function
3) creating client class to act as a browser
4) loading the webpage using pyQt5's Qwebpage
5) converting the loaded data into HTML
6) finding classes of required data
7) getting data using CSS selectors
8) writing data to CSV file