argument used in find_all() which tells Beautiful Soup to stop gathering results after it’s found a certain number. 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())