Web Scraping With Python

AMI SAVALIYA
2 min readAug 1, 2021

--

What is Web Scrapping?

Web Scraping is basic data Scraping from the website. And then we can use that data the way you want like analyze, retrieve, etc. Furthermore from the certain website you can not may include information that you are unable to copy and paste. Web scrapping may assist you in extracting any type of data you want.

The library used for web scrapping

  1. Selenium: It is a web testing library and uses for automation chrome.
  2. Beautiful Soup: Beautiful Soup is a Python package for parsing HTML and XML documents.
  3. Pandas: It is used for data manipulation and data analysis.

Steps for Web scrapping

  1. Import dependences

2.Open Url from you extract the data

3.Convert Data to Pandas DataFrame and Save the DataFrame as CSV. By using the to_csv function we can convert the data frame to a CSV file.

4.Stored data in CSV file.

Github link:https://github.com/amisavaliya/webscrapping1

--

--

No responses yet