python
import requests
response = requests.get("https://www.example.com")
python
from bs4 import BeautifulSoup
html_doc = """
<html>
<head>
<title>Example Website</title>
</head>
<body>
<p class="title">Hello, World!</p>
</body>
</html>
"""
soup = BeautifulSoup(html_doc, 'html.parser')
python
from PIL import Image