Python Programming (137 Blogs) Become a Certified Professional
AWS Global Infrastructure

Data Science

Topics Covered
  • Business Analytics with R (32 Blogs)
  • Data Science (24 Blogs)
  • Mastering Python (93 Blogs)
  • Decision Tree Modeling Using R (1 Blogs)
SEE MORE

A Beginner’s Guide to learn web scraping with python!

Last updated on Mar 14,2023 1.2M Views

Omkar S Hiremath
Tech Enthusiast in Blockchain, Hadoop, Python, Cyber-Security, Ethical Hacking. Interested in anything... Tech Enthusiast in Blockchain, Hadoop, Python, Cyber-Security, Ethical Hacking. Interested in anything and everything about Computers.
1 / 2 Blog from Web Scraping

Web Scraping with Python

Imagine you have to pull a large amount of data from websites and you want to do it as quickly as possible. How would you do it without manually going to each website and getting the data? Well, “Web Scraping” is the answer. Web Scraping just makes this job easier and faster. 

Python Full Course – Learn Python in 12 Hours | Python Tutorial For Beginners | Edureka

This Edureka Python Full Course helps you to became a master in basic and advanced Python Programming Concepts.

In this article on Web Scraping with Python, you will learn about web scraping in brief and see how to extract data from a website with a demonstration. I will be covering the following topics:

Why is Web Scraping Used?

Web scraping is used to collect large information from websites. But why does someone have to collect such large data from websites? To know about this, let’s look at the applications of web scraping:

  • Price Comparison: Services such as ParseHub use web scraping to collect data from online shopping websites and use it to compare the prices of products.
  • Email address gathering: Many companies that use email as a medium for marketing, use web scraping to collect email ID and then send bulk emails.
  • Social Media Scraping: Web scraping is used to collect data from Social Media websites such as Twitter to find out what’s trending.
  • Research and Development: Web scraping is used to collect a large set of data (Statistics, General Information, Temperature, etc.) from websites, which are analyzed and used to carry out Surveys or for R&D.
  • Job listings: Details regarding job openings, interviews are collected from different websites and then listed in one place so that it is easily accessible to the user.

What is Web Scraping?

Web scraping is an automated method used to extract large amounts of data from websites. The data on the websites are unstructured. Web scraping helps collect these unstructured data and store it in a structured form. There are different ways to scrape websites such as online Services, APIs or writing your own code. In this article, we’ll see how to implement web scraping with python. 

Web Scraping - Edureka

Is Web Scraping Legal?

Talking about whether web scraping is legal or not, some websites allow web scraping and some don’t. To know whether a website allows web scraping or not, you can look at the website’s “robots.txt” file. You can find this file by appending “/robots.txt” to the URL that you want to scrape. For this example, I am scraping Flipkart website. So, to see the “robots.txt” file, the URL is www.flipkart.com/robots.txt.

Get in-depth Knowledge of Python along with its Diverse Applications

Why is Python Good for Web Scraping?

Here is the list of features of Python which makes it more suitable for web scraping.

  • Ease of Use: Python Programming is simple to code. You do not have to add semi-colons “;” or curly-braces “{}” anywhere. This makes it less messy and easy to use.
  • Large Collection of Libraries: Python has a huge collection of libraries such as Numpy, Matlplotlib, Pandas etc., which provides methods and services for various purposes. Hence, it is suitable for web scraping and for further manipulation of extracted data.
  • Dynamically typed: In Python, you don’t have to define datatypes for variables, you can directly use the variables wherever required. This saves time and makes your job faster.
  • Easily Understandable Syntax: Python syntax is easily understandable mainly because reading a Python code is very similar to reading a statement in English. It is expressive and easily readable, and the indentation used in Python also helps the user to differentiate between different scope/blocks in the code. 
    • Small code, large task: Web scraping is used to save time. But what’s the use if you spend more time writing the code? Well, you don’t have to. In Python, you can write small codes to do large tasks. Hence, you save time even while writing the code.
    • Community: What if you get stuck while writing the code? You don’t have to worry. Python community has one of the biggest and most active communities, where you can seek help from.

    Find out our Python Training in Top Cities/Countries

    IndiaUSAOther Cities/Countries
    BangaloreNew YorkUK
    HyderabadChicagoLondon
    DelhiAtlantaCanada
    ChennaiHoustonToronto
    MumbaiLos AngelesAustralia
    PuneBostonUAE
    KolkataMiamiDubai
    AhmedabadSan FranciscoPhilippines

    How Do You Scrape Data From A Website?

    When you run the code for web scraping, a request is sent to the URL that you have mentioned. As a response to the request, the server sends the data and allows you to read the HTML or XML page. The code then, parses the HTML or XML page, finds the data and extracts it. 

    To extract data using web scraping with python, you need to follow these basic steps:

    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 

    Now let us see how to extract data from the Flipkart website using Python.

    Learn Python, Deep Learning, NLP, Artificial Intelligence, Machine Learning with these AI and ML courses a PG Diploma certification program by NIT Warangal.

    Libraries used for Web Scraping 

    As we know, Python is has various applications and there are different libraries for different purposes. In our further demonstration, we will be using the following libraries:

    • Selenium:  Selenium is a web testing library. It is used to automate browser activities.
    • BeautifulSoupBeautiful Soup is a Python package for parsing HTML and XML documents. It creates parse trees that is helpful to extract the data easily.
    • PandasPandas is a library used for data manipulation and analysis. It is used to extract the data and store it in the desired format. 

    Subscribe to our YouTube channel to get new updates..!

    Web Scraping Example : Scraping Flipkart Website

    Pre-requisites:

    • Python 2.x or Python 3.x with Selenium, BeautifulSoup, pandas libraries installed
    • Google-chrome browser
    • Ubuntu Operating System

    Let’s get started!

    Step 1: Find the URL that you want to scrape

    For this example, we are going scrape Flipkart website to extract the Price, Name, and Rating of Laptops. The URL for this page is https://www.flipkart.com/laptops/~buyback-guarantee-on-laptops-/pr?sid=6bo%2Cb5g&uniqBStoreParam1=val1&wid=11.productCard.PMU_V2.

    Step 2: Inspecting the Page

    The data is usually nested in tags. So, we inspect the page to see, under which tag the data we want to scrape is nested. To inspect the page, just right click on the element and click on “Inspect”.

    Inspect Button - Web Scraping with Python - Edureka

    When you click on the “Inspect” tab, you will see a “Browser Inspector Box” open.

    Inspecting page - Web Scraping with Python - Edureka

    Step 3: Find the data you want to extract

    Let’s extract the Price, Name, and Rating which is in the “div” tag respectively.

    Learn Python in 42 hours!

    Step 4: Write the code

    First, let’s create a Python file. To do this, open the terminal in Ubuntu and type gedit <your file name> with .py extension.

    I am going to name my file “web-s”. Here’s the command:

    gedit web-s.py

    Now, let’s write our code in this file. 

    First, let us import all the necessary libraries:

    from selenium import webdriver
    from BeautifulSoup import BeautifulSoup
    import pandas as pd

    To configure webdriver to use Chrome browser, we have to set the path to chromedriver

    driver = webdriver.Chrome("/usr/lib/chromium-browser/chromedriver")

    Refer the below code to open the URL:

    products=[] #List to store name of the product
    prices=[] #List to store price of the product
    ratings=[] #List to store rating of the product
    driver.get("https://www.flipkart.com/laptops/~buyback-guarantee-on-laptops-/pr?sid=6bo%2Cb5g&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;uniq")
    

    Now that we have written the code to open the URL, it’s time to extract the data from the website. As mentioned earlier, the data we want to extract is nested in <div> tags. So, I will find the div tags with those respective class-names, extract the data and store the data in a variable. Refer the code below:

    content = driver.page_source
    soup = BeautifulSoup(content)
    for a in soup.findAll('a',href=True, attrs={'class':'_31qSD5'}):
    name=a.find('div', attrs={'class':'_3wU53n'})
    price=a.find('div', attrs={'class':'_1vC4OE _2rQ-NK'})
    rating=a.find('div', attrs={'class':'hGSR34 _2beYZw'})
    products.append(name.text)
    prices.append(price.text)
    ratings.append(rating.text) 
    

    Step 5: Run the code and extract the data

    To run the code, use the below command:

    python web-s.py

    Step 6: Store the data in a required format

    After extracting the data, you might want to store it in a format. This format varies depending on your requirement. For this example, we will store the extracted data in a CSV (Comma Separated Value) format. To do this, I will add the following lines to my code:

    df = pd.DataFrame({'Product Name':products,'Price':prices,'Rating':ratings}) 
    df.to_csv('products.csv', index=False, encoding='utf-8')

    Now, I’ll run the whole code again.

    A file name “products.csv” is created and this file contains the extracted data.

    web-scraping-with-python-output-Edureka

    I hope you guys enjoyed this article on “Web Scraping with Python”. I hope this blog was informative and has added value to your knowledge. Now go ahead and try Web Scraping. Experiment with different modules and applications of Python

    If you wish to know about Web Scraping With Python on Windows platform, then the below video will help you understand how to do it or you can also join our Python Master course.

    Got a question regarding “web scraping with Python”? You can ask it on edureka! Forum and we will get back to you at the earliest or you can join our Python Training in Hobart today..

    To get in-depth knowledge on Python Programming language along with its various applications, you can enroll here for live online Python Course Online with 24/7 support and lifetime access.

    Upcoming Batches For Python Certification Training Course
    Course NameDate
    Python Certification Training Course

    Class Starts on 22nd April,2023

    22nd April

    SAT&SUN (Weekend Batch)
    View Details
    Python Certification Training Course

    Class Starts on 27th May,2023

    27th May

    SAT&SUN (Weekend Batch)
    View Details
    Comments
    8 Comments
    • drago says:

      thanks for a great article on web scraping,it was helpful

    • Hello! great article about web scraping service.

    • Daniel says:

      Wonderful! It works perfectly….

    • Lucifer says:

      syntax error when trying to run the redditbot with crawl, can you help?

    • Brunda B says:

      Blog was helpful! Thank you so much Omkar bhai?!!

      • EdurekaSupport says:

        Hey Brunda, we are glad you found the blog helpful! Do take a look at our other blogs too and please do consider subscribing. Cheers!

    • Markandeshwar says:

      Really very informative. Easy to understand… Good going Omkar..

      • EdurekaSupport says:

        Hey Markandeshwar, we are glad you loved the blog. Do check it our other blogs and please do consider subscribing. Cheers!

    Join the discussion

    Browse Categories

    webinar REGISTER FOR FREE WEBINAR
    REGISTER NOW
    webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

    Subscribe to our Newsletter, and get personalized recommendations.

    image not found!
    image not found!

    A Beginner’s Guide to learn web scraping with python!

    edureka.co