Course Content
Web Scraping with Python
Web Scraping with Python
Challenge
Give it a try - open and read the HTML
file on your own!
Task
- Import the
urlopen
function from theurllib.request
. - Use the
urlopen()
function to open the page from the specifiedurl
. - Read the page and decode the received bytes object to
'utf-8'
.
Everything was clear?
Section 1. Chapter 9