Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

beautifulsoup import

from requests import get
from bs4 import BeautifulSoup as bs

page = get("http://dataquestio.github.io/web-scraping-pages/simple.html")
soup = bs(page.content, 'html.parser')
Source by www.dataquest.io #
 
PREVIOUS NEXT
Tagged: #beautifulsoup #import
ADD COMMENT
Topic
Name
1+2 =