My problem is that i have to scrape a website which has:
<div class="xyz tab"> blah blah </div>
And another div in the same website having which is as follows:
<div class="xyz">blah blah</div>
to scrape a website without space i can use this
pyquery('.xyz').text()
but for with space what should i do???