File size: 309 Bytes
40dc76f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import requests
from bs4 import BeautifulSoup
# Fetch a web page
page = requests.get("http://www.example.com")
# Parse the HTML content
soup = BeautifulSoup(page.content, "html.parser")
# Find all the links on the page
links = soup.find_all("a")
# Print the links
for link in links:
   print(link.get("href"))