0
Q:

how to convert response to beautifulsoup object

import requests
from bs4 import BeautifulSoup

url = 'https://www.google.com'

response = requests.get(url)

html_file = BeautifulSoup(response.text, "html.parser")

print(html_file.prettify())
0

New to Communities?

Join the community