gawel/pyquery

Query returns the full HTML and query result

Closed this issue · 3 comments

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?

gawel commented

[print(item.html()) for item in doc('div').items()] ?

This is equivalent to:

for item in doc.items('div'):
    print(item.html())

I don't know if this is correct solution but instead of function items, I'm using find.