the field mark with blue, those are the field i am trying to scrape
<div class="txt-block">
<h4 class="inline">Budget:</h4>
"€650,000
"
<span class="attribute">(estimated)</span>
</div>
I want to scrape data which is outside h4 tag i.e €650,000. how can I do it using scrapy css in python.
I was trying this but it returns multiple field.
item['Budget'] = response.css(".txt-block h4:not(span)::text").extract()