Scrapping with Python

Helper Function(dataquest only)

The helper function has in build fuctions to help us read from url.

First, import the helper function and then use the following.

from helper import *
url='https://en.wikipedia.org/wiki/List_of_helicopter_prison_escapes'
data=data_from_url(url)

We, will have a list of data from the URL.

Last updated