Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/noureldin2303/web-scraping-using-multithreading

extract data using web scraping with python
https://github.com/noureldin2303/web-scraping-using-multithreading

chrome communityexchange dataset datasets github-campus-experts github-codespaces learn python scraper scraping-websites selenium selenium-python selenium-webdriver web-scraping

Last synced: 2 days ago
JSON representation

extract data using web scraping with python

Awesome Lists containing this project

README

        

# Web-scraping

**To extract data using web scraping with python using multithreading:**

1- Find the URL that you want to scrape

2- Inspecting the Page

3- Find the data you want to extract

4- Write the code

5- Run the code and extract the data

6- Store the data in the required format



**Download Browser driver is using**

Chrome:
https://sites.google.com/chromium.org/driver/





  • Importing packages: from selenium import webdriver

  • Create Chrome driver Instance: driver = webdriver.Chrome(r'Path in your computer where you have installed chromedriver')

  • Fetch webpage: driver.get('URL')

  • Parse webpage using Xpath: Data = driver.find_elements(By.XPATH,‘Xpath’)