Learn practical skills, build real-world projects, and advance your career

Introduction

The first step to any Web Scraping project is to get the content of the page from an URL. In this notebook, we will see how to use the Requests Library and access the content from Amazon and Youtube.

Once we get the content, we will Use Beautiful Soup to parse the data into structure format

Imports

Uncomment and run the below line to install requests library

#!pip install requests
#!pip install bs4
import requests
from bs4 import BeautifulSoup