I have following HTML file
When i execute:
with open("sto.html", 'r') as f:
contents = f.read()
doc = pq(contents)
[print(item.html()) for item in doc.items('div')]
I get following result which contains full HTML and query result.
How to get only query result?