object of type 'Response' has no len() code example
Example: object of type 'Response' has no len()
import requests
url = 'http://vineoftheday.com/?order_by=rating'
response = requests.get(url)
html = response.content
soup = BeautifulSoup(html, "html.parser")