What would be the simplest way to get the title of a page in Requests?
r = requests.get(\'http://www.imdb.com/title/tt0108778/\') # ? r.title Friends (TV Ser
Pythonic HTML Parsing for Humans.
from requests_html import HTMLSession print(HTMLSession().get('http://www.imdb.com/title/tt0108778/').html.find('title', first=True).text)