I am trying to write program in Scrapy to open links and collect data from this tag: <p class="attrgroup"></p>
.
I've managed to make Scrapy collect all the links from given URL but not to follow them. Any help is very appreciated.
I am trying to write program in Scrapy to open links and collect data from this tag: <p class="attrgroup"></p>
.
I've managed to make Scrapy collect all the links from given URL but not to follow them. Any help is very appreciated.
You need to yield
Request
instances for the links to follow, assign a callback and extract the text of the desiredp
element in the callback: