If you only want Beautiful Soup to consider direct children, you can pass in ... But the recursive argument is different: find_all() and find() are the only methods ... code example
Example: 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())