I am dumping a webpage with requests, and I need to search for a string inside the code. I need to get the div fields and search for a certain value.
import requests, pprint
page = requests.get('')
tree = (page.content)
pp = pprint.PrettyPrinter(indent=4)
pp.pprint(tree)