push_pinWeekly Challenge
Build a Web Scraper in Python
The goal for this week is to extract data from a static HTML page using BeautifulSoup.
import requests
from bs4 import BeautifulSoup
url = 'https://example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')person
person
+42