aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-05-03 17:16:32 +0000
committerterminaldweller <thabogre@gmail.com>2022-05-03 17:16:32 +0000
commit6ab85750ae2d679a30be59a4ed7e78da52351234 (patch)
treeb99e6315dfb118347acf9441d7c43dd2c30c37ff
parentchanged >>> to > for dmenu -D (diff)
downloadkaminokumo-6ab85750ae2d679a30be59a4ed7e78da52351234.tar.gz
kaminokumo-6ab85750ae2d679a30be59a4ed7e78da52351234.zip
a crawler
-rw-r--r--crawler.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/crawler.py b/crawler.py
new file mode 100644
index 0000000..d10143d
--- /dev/null
+++ b/crawler.py
@@ -0,0 +1,17 @@
+import scrapy
+
+
+class QuotesSpider(scrapy.Spider):
+ name = "quotes"
+ start_urls = ["https://quotes.toscrape.com/tag/humor"]
+
+ def parse(self, response):
+ for quote in response.css("div.quote"):
+ yield {
+ "author": quote.xpath("span/small/text()").get(),
+ "text": quote.css("span.text::text").get(),
+ }
+
+ next_page = response.css('li.next a::attr("href")').get()
+ if next_page is not None:
+ yield response.follow(next_page, self.parse)