Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 643 Bytes

File metadata and controls

39 lines (31 loc) · 643 Bytes
theme dark

Part One

product_link = a_tag
product_link = a_tag.get()
product_link = a_tag.get('href')
product_link = a_tag.get('href')
product_page = requests.get()
product_link = a_tag.get('href')
product_page = requests.get(WEBSITE_URL + product_link)
product_link = a_tag.get('href')
product_page = requests.get(WEBSITE_URL + product_link)
product_soup = BeautifulSoup()
product_link = a_tag.get('href')
product_page = requests.get(WEBSITE_URL + product_link)
product_soup = BeautifulSoup(product_page.text, 'html.parser')