From 5b3d6be195f7d9ff0a1e6df3111ea0c8a132c2f3 Mon Sep 17 00:00:00 2001 From: luanascardua <92794401+luanascardua@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:42:24 -0300 Subject: [PATCH 1/4] chore: scrapy project --- webcrawler/scrapy.cfg | 11 +++ webcrawler/webcrawler/__init__.py | 0 webcrawler/webcrawler/items.py | 12 +++ webcrawler/webcrawler/middlewares.py | 103 ++++++++++++++++++++++ webcrawler/webcrawler/pipelines.py | 13 +++ webcrawler/webcrawler/settings.py | 88 ++++++++++++++++++ webcrawler/webcrawler/spiders/__init__.py | 4 + 7 files changed, 231 insertions(+) create mode 100644 webcrawler/scrapy.cfg create mode 100644 webcrawler/webcrawler/__init__.py create mode 100644 webcrawler/webcrawler/items.py create mode 100644 webcrawler/webcrawler/middlewares.py create mode 100644 webcrawler/webcrawler/pipelines.py create mode 100644 webcrawler/webcrawler/settings.py create mode 100644 webcrawler/webcrawler/spiders/__init__.py diff --git a/webcrawler/scrapy.cfg b/webcrawler/scrapy.cfg new file mode 100644 index 0000000..238809a --- /dev/null +++ b/webcrawler/scrapy.cfg @@ -0,0 +1,11 @@ +# Automatically created by: scrapy startproject +# +# For more information about the [deploy] section see: +# https://scrapyd.readthedocs.io/en/latest/deploy.html + +[settings] +default = webcrawler.settings + +[deploy] +#url = http://localhost:6800/ +project = webcrawler diff --git a/webcrawler/webcrawler/__init__.py b/webcrawler/webcrawler/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/webcrawler/webcrawler/items.py b/webcrawler/webcrawler/items.py new file mode 100644 index 0000000..5a9d631 --- /dev/null +++ b/webcrawler/webcrawler/items.py @@ -0,0 +1,12 @@ +# Define here the models for your scraped items +# +# See documentation in: +# https://docs.scrapy.org/en/latest/topics/items.html + +import scrapy + + +class WebcrawlerItem(scrapy.Item): + # define the fields for your item here like: + # name = scrapy.Field() + pass diff --git a/webcrawler/webcrawler/middlewares.py b/webcrawler/webcrawler/middlewares.py new file mode 100644 index 0000000..6335bfb --- /dev/null +++ b/webcrawler/webcrawler/middlewares.py @@ -0,0 +1,103 @@ +# Define here the models for your spider middleware +# +# See documentation in: +# https://docs.scrapy.org/en/latest/topics/spider-middleware.html + +from scrapy import signals + +# useful for handling different item types with a single interface +from itemadapter import is_item, ItemAdapter + + +class WebcrawlerSpiderMiddleware: + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the spider middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_spider_input(self, response, spider): + # Called for each response that goes through the spider + # middleware and into the spider. + + # Should return None or raise an exception. + return None + + def process_spider_output(self, response, result, spider): + # Called with the results returned from the Spider, after + # it has processed the response. + + # Must return an iterable of Request, or item objects. + for i in result: + yield i + + def process_spider_exception(self, response, exception, spider): + # Called when a spider or process_spider_input() method + # (from other spider middleware) raises an exception. + + # Should return either None or an iterable of Request or item objects. + pass + + def process_start_requests(self, start_requests, spider): + # Called with the start requests of the spider, and works + # similarly to the process_spider_output() method, except + # that it doesn’t have a response associated. + + # Must return only requests (not items). + for r in start_requests: + yield r + + def spider_opened(self, spider): + spider.logger.info('Spider opened: %s' % spider.name) + + +class WebcrawlerDownloaderMiddleware: + # Not all methods need to be defined. If a method is not defined, + # scrapy acts as if the downloader middleware does not modify the + # passed objects. + + @classmethod + def from_crawler(cls, crawler): + # This method is used by Scrapy to create your spiders. + s = cls() + crawler.signals.connect(s.spider_opened, signal=signals.spider_opened) + return s + + def process_request(self, request, spider): + # Called for each request that goes through the downloader + # middleware. + + # Must either: + # - return None: continue processing this request + # - or return a Response object + # - or return a Request object + # - or raise IgnoreRequest: process_exception() methods of + # installed downloader middleware will be called + return None + + def process_response(self, request, response, spider): + # Called with the response returned from the downloader. + + # Must either; + # - return a Response object + # - return a Request object + # - or raise IgnoreRequest + return response + + def process_exception(self, request, exception, spider): + # Called when a download handler or a process_request() + # (from other downloader middleware) raises an exception. + + # Must either: + # - return None: continue processing this exception + # - return a Response object: stops process_exception() chain + # - return a Request object: stops process_exception() chain + pass + + def spider_opened(self, spider): + spider.logger.info('Spider opened: %s' % spider.name) diff --git a/webcrawler/webcrawler/pipelines.py b/webcrawler/webcrawler/pipelines.py new file mode 100644 index 0000000..97bf5e9 --- /dev/null +++ b/webcrawler/webcrawler/pipelines.py @@ -0,0 +1,13 @@ +# Define your item pipelines here +# +# Don't forget to add your pipeline to the ITEM_PIPELINES setting +# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html + + +# useful for handling different item types with a single interface +from itemadapter import ItemAdapter + + +class WebcrawlerPipeline: + def process_item(self, item, spider): + return item diff --git a/webcrawler/webcrawler/settings.py b/webcrawler/webcrawler/settings.py new file mode 100644 index 0000000..2e61769 --- /dev/null +++ b/webcrawler/webcrawler/settings.py @@ -0,0 +1,88 @@ +# Scrapy settings for webcrawler project +# +# For simplicity, this file contains only settings considered important or +# commonly used. You can find more settings consulting the documentation: +# +# https://docs.scrapy.org/en/latest/topics/settings.html +# https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +# https://docs.scrapy.org/en/latest/topics/spider-middleware.html + +BOT_NAME = 'webcrawler' + +SPIDER_MODULES = ['webcrawler.spiders'] +NEWSPIDER_MODULE = 'webcrawler.spiders' + + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +#USER_AGENT = 'webcrawler (+http://www.yourdomain.com)' + +# Obey robots.txt rules +ROBOTSTXT_OBEY = True + +# Configure maximum concurrent requests performed by Scrapy (default: 16) +#CONCURRENT_REQUESTS = 32 + +# Configure a delay for requests for the same website (default: 0) +# See https://docs.scrapy.org/en/latest/topics/settings.html#download-delay +# See also autothrottle settings and docs +#DOWNLOAD_DELAY = 3 +# The download delay setting will honor only one of: +#CONCURRENT_REQUESTS_PER_DOMAIN = 16 +#CONCURRENT_REQUESTS_PER_IP = 16 + +# Disable cookies (enabled by default) +#COOKIES_ENABLED = False + +# Disable Telnet Console (enabled by default) +#TELNETCONSOLE_ENABLED = False + +# Override the default request headers: +#DEFAULT_REQUEST_HEADERS = { +# 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', +# 'Accept-Language': 'en', +#} + +# Enable or disable spider middlewares +# See https://docs.scrapy.org/en/latest/topics/spider-middleware.html +#SPIDER_MIDDLEWARES = { +# 'webcrawler.middlewares.WebcrawlerSpiderMiddleware': 543, +#} + +# Enable or disable downloader middlewares +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +#DOWNLOADER_MIDDLEWARES = { +# 'webcrawler.middlewares.WebcrawlerDownloaderMiddleware': 543, +#} + +# Enable or disable extensions +# See https://docs.scrapy.org/en/latest/topics/extensions.html +#EXTENSIONS = { +# 'scrapy.extensions.telnet.TelnetConsole': None, +#} + +# Configure item pipelines +# See https://docs.scrapy.org/en/latest/topics/item-pipeline.html +#ITEM_PIPELINES = { +# 'webcrawler.pipelines.WebcrawlerPipeline': 300, +#} + +# Enable and configure the AutoThrottle extension (disabled by default) +# See https://docs.scrapy.org/en/latest/topics/autothrottle.html +#AUTOTHROTTLE_ENABLED = True +# The initial download delay +#AUTOTHROTTLE_START_DELAY = 5 +# The maximum download delay to be set in case of high latencies +#AUTOTHROTTLE_MAX_DELAY = 60 +# The average number of requests Scrapy should be sending in parallel to +# each remote server +#AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 +# Enable showing throttling stats for every response received: +#AUTOTHROTTLE_DEBUG = False + +# Enable and configure HTTP caching (disabled by default) +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings +#HTTPCACHE_ENABLED = True +#HTTPCACHE_EXPIRATION_SECS = 0 +#HTTPCACHE_DIR = 'httpcache' +#HTTPCACHE_IGNORE_HTTP_CODES = [] +#HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage' diff --git a/webcrawler/webcrawler/spiders/__init__.py b/webcrawler/webcrawler/spiders/__init__.py new file mode 100644 index 0000000..ebd689a --- /dev/null +++ b/webcrawler/webcrawler/spiders/__init__.py @@ -0,0 +1,4 @@ +# This package will contain the spiders of your Scrapy project +# +# Please refer to the documentation for information on how to create and manage +# your spiders. From cc5fb05b89d09652cb55d00231d412158e9ccfaf Mon Sep 17 00:00:00 2001 From: luanascardua <92794401+luanascardua@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:55:48 -0300 Subject: [PATCH 2/4] feat: spider --- webcrawler/webcrawler/items.py | 10 +++---- .../webcrawler/spiders/quotes_spider.py | 27 +++++++++++++++++++ 2 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 webcrawler/webcrawler/spiders/quotes_spider.py diff --git a/webcrawler/webcrawler/items.py b/webcrawler/webcrawler/items.py index 5a9d631..157368b 100644 --- a/webcrawler/webcrawler/items.py +++ b/webcrawler/webcrawler/items.py @@ -1,12 +1,10 @@ # Define here the models for your scraped items -# -# See documentation in: -# https://docs.scrapy.org/en/latest/topics/items.html import scrapy class WebcrawlerItem(scrapy.Item): - # define the fields for your item here like: - # name = scrapy.Field() - pass + author = scrapy.Field() + quote = scrapy.Field() + tag = scrapy.Field() + \ No newline at end of file diff --git a/webcrawler/webcrawler/spiders/quotes_spider.py b/webcrawler/webcrawler/spiders/quotes_spider.py new file mode 100644 index 0000000..d29cacb --- /dev/null +++ b/webcrawler/webcrawler/spiders/quotes_spider.py @@ -0,0 +1,27 @@ +import scrapy + +from ..items import WebcrawlerItem + + +class QuotesSpider(scrapy.Spider): + name = "webcrawler" + start_urls = ['http://quotes.toscrape.com/'] + + def parse(self, response): + + for quote in response.css('div.quote'): + item = WebcrawlerItem() + + item['title'] = quote.css('span.text::text').get() + item['author'] = { + 'name': quote.css('small.author::text').get(), + 'url':quote.xpath('//span/a/@href').get() + } + item['tag'] = quote.css('div.tags a.tag::text').getall() + + yield item + + next_page = response.css('li.next a::attr(href)').get() + if next_page is not None: + yield scrapy.Request(response.urljoin(next_page), callback=self.parse) + \ No newline at end of file From 7aaa826d70c5b96cd7713003b9aa0dbe753c3363 Mon Sep 17 00:00:00 2001 From: luanascardua <92794401+luanascardua@users.noreply.github.com> Date: Wed, 3 Aug 2022 06:59:19 -0300 Subject: [PATCH 3/4] feat: queries js --- webcrawler/webcrawler/items.py | 3 ++- webcrawler/webcrawler/pipelines.py | 19 ++++++++++++++----- webcrawler/webcrawler/queries/queries.js | 12 ++++++++++++ webcrawler/webcrawler/settings.py | 7 +++---- .../webcrawler/spiders/quotes_spider.py | 9 +++++---- 5 files changed, 36 insertions(+), 14 deletions(-) create mode 100644 webcrawler/webcrawler/queries/queries.js diff --git a/webcrawler/webcrawler/items.py b/webcrawler/webcrawler/items.py index 157368b..8866a1e 100644 --- a/webcrawler/webcrawler/items.py +++ b/webcrawler/webcrawler/items.py @@ -4,7 +4,8 @@ class WebcrawlerItem(scrapy.Item): + author = scrapy.Field() - quote = scrapy.Field() + text = scrapy.Field() tag = scrapy.Field() \ No newline at end of file diff --git a/webcrawler/webcrawler/pipelines.py b/webcrawler/webcrawler/pipelines.py index 97bf5e9..cfa5e0e 100644 --- a/webcrawler/webcrawler/pipelines.py +++ b/webcrawler/webcrawler/pipelines.py @@ -1,13 +1,22 @@ # Define your item pipelines here -# -# Don't forget to add your pipeline to the ITEM_PIPELINES setting -# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html +import pymongo - -# useful for handling different item types with a single interface from itemadapter import ItemAdapter class WebcrawlerPipeline: + + def __init__(self): + self.conn = pymongo.MongoClient( + 'localhost', 27017 + ) + + self.db = self.conn['quotestoscrape'] + self.collection = self.db['luana_scardua'] + + if 'quotestoscrape' in self.conn.list_database_names(): + self.collection.drop() + def process_item(self, item, spider): + self.collection.insert_one(dict(item)) return item diff --git a/webcrawler/webcrawler/queries/queries.js b/webcrawler/webcrawler/queries/queries.js new file mode 100644 index 0000000..f9ff7f2 --- /dev/null +++ b/webcrawler/webcrawler/queries/queries.js @@ -0,0 +1,12 @@ +// citações foram coletadas +dbo.luana_scardua.count() + +// tags distintas +db.luana_scardua.distinct("tags") + +// citações por autor foram +db.luana_scardua.aggregate( + [{ + $group: {_id: "$author.name", qtd: {$sum: 1}} + }]) + \ No newline at end of file diff --git a/webcrawler/webcrawler/settings.py b/webcrawler/webcrawler/settings.py index 2e61769..11fbc45 100644 --- a/webcrawler/webcrawler/settings.py +++ b/webcrawler/webcrawler/settings.py @@ -12,7 +12,6 @@ SPIDER_MODULES = ['webcrawler.spiders'] NEWSPIDER_MODULE = 'webcrawler.spiders' - # Crawl responsibly by identifying yourself (and your website) on the user-agent #USER_AGENT = 'webcrawler (+http://www.yourdomain.com)' @@ -62,9 +61,9 @@ # Configure item pipelines # See https://docs.scrapy.org/en/latest/topics/item-pipeline.html -#ITEM_PIPELINES = { -# 'webcrawler.pipelines.WebcrawlerPipeline': 300, -#} +ITEM_PIPELINES = { + 'webcrawler.pipelines.WebcrawlerPipeline': 300, +} # Enable and configure the AutoThrottle extension (disabled by default) # See https://docs.scrapy.org/en/latest/topics/autothrottle.html diff --git a/webcrawler/webcrawler/spiders/quotes_spider.py b/webcrawler/webcrawler/spiders/quotes_spider.py index d29cacb..9c5e675 100644 --- a/webcrawler/webcrawler/spiders/quotes_spider.py +++ b/webcrawler/webcrawler/spiders/quotes_spider.py @@ -4,6 +4,7 @@ class QuotesSpider(scrapy.Spider): + name = "webcrawler" start_urls = ['http://quotes.toscrape.com/'] @@ -12,10 +13,10 @@ def parse(self, response): for quote in response.css('div.quote'): item = WebcrawlerItem() - item['title'] = quote.css('span.text::text').get() - item['author'] = { + item['text'] = quote.css('span.text::text').get() + item['author'] ={ 'name': quote.css('small.author::text').get(), - 'url':quote.xpath('//span/a/@href').get() + 'url': quote.xpath('//span/a/@href').get() } item['tag'] = quote.css('div.tags a.tag::text').getall() @@ -24,4 +25,4 @@ def parse(self, response): next_page = response.css('li.next a::attr(href)').get() if next_page is not None: yield scrapy.Request(response.urljoin(next_page), callback=self.parse) - \ No newline at end of file + \ No newline at end of file From 88a9b29700590bed58a32cb6f0ba8860f502c38d Mon Sep 17 00:00:00 2001 From: luanascardua <92794401+luanascardua@users.noreply.github.com> Date: Wed, 3 Aug 2022 07:03:16 -0300 Subject: [PATCH 4/4] style: queries --- webcrawler/webcrawler/queries/queries.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcrawler/webcrawler/queries/queries.js b/webcrawler/webcrawler/queries/queries.js index f9ff7f2..67690aa 100644 --- a/webcrawler/webcrawler/queries/queries.js +++ b/webcrawler/webcrawler/queries/queries.js @@ -1,10 +1,10 @@ -// citações foram coletadas +// citações coletadas dbo.luana_scardua.count() // tags distintas db.luana_scardua.distinct("tags") -// citações por autor foram +// citações por autor db.luana_scardua.aggregate( [{ $group: {_id: "$author.name", qtd: {$sum: 1}}