Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Web Scraping In Python: Master The Fundamentals
Rating: 4.5 out of 5(5,510 ratings)
20,096 students

Web Scraping In Python: Master The Fundamentals

Learn to scrap the web fast and efficiently by building out an entire web scraping program in Python.
Created byMax A
Last updated 7/2022
English

What you'll learn

  • Tackle new challenges by understand the underlying method/approach to take
  • Scrape static webpages
  • Be able to scrape websites that use Javascript
  • Extract all sorts of data from websites
  • Know what to look for and how to approach parsing a website
  • Gather data from all over the internet
  • Use recursion algorithms to search through website content

Coding Exercises

This course includes our updated coding exercises so you can practice your skills as you learn.

See a demo
Image of coding exercise example

Course content

4 sections27 lectures3h 57m total length
  • Installing Webscraping Prerequisite Libraries5:10

    Here we look at the generals of web-scraping and get introduced to what we will do.

  • HTML Structure4:51

    Here we will quickly talk about the other way of scraping data from the web, namely APIs.

  • Status Codes1:47

    The main python libraries that we will be using in this tutorial series.

  • Error codes
  • Error Handling in Python9:02

    Here we will cover what the modulus operation does and what use that can be for us later on.

  • Introduction to the Modulus Operation4:40

    Here we will look at how we can deal with error that appear in our code and how we can work around them, especially if we expect them.

Requirements

  • Basic Python knowledge
  • A Python 3 Environment to Code in

Description

Web scraping is the art of picking out data from a website by looking at the HTML code and identifying patterns that can be used to identify your data. This data can then be gathered and later used for your own analysis.

In this course we will go over the basic of web scraping and crawling, learning all about how we can extract data from websites, and all of this is guided along by a work example.

In the course will start with the simpler aspect of scraping static websites. We'll do this using requests to get the website data and use BeautifulSoup to effortlessly parse it.

Once we have a hang of the fundamentals we'll then get into dynamic websites that use Javascript to render their content. In this section of the course we'll be using Selenium to render the pages for us which will provide us with the full page of information. We'll also learn to do commonly needed things like clicking on buttons (e.g. when a page has a pop-up), or sending text into a form - in case your scraper needs to perform searches or login somewhere.

At the end of the course you should be able to go off on your own, and pick out most common websites, and be able to extract all the relevant data you may need just through using Python code.

Who this course is for:

  • Anyone interested in analyzing data
  • Anyone who doesn't know how to start gathering data
  • Anyone who wants to develop their ability to scrap data
  • Anyone interested in starting with web scraping
  • Anyone who is interested in expanding their Python knowledge
  • Anyone who wants to gather a wide array of data to play with