def parse_poet(self, response):
        for href in response.css('.catlink a::attr(href)'):
            poem_url = response.urljoin(href.extract())
            yield scrapy.Request(poem_url, callback=self.parse_poem)