From 755f5dcfd0877f3865ec0849ca0ac8dd692e2066 Mon Sep 17 00:00:00 2001 From: Marcos Vinicius Date: Fri, 25 Dec 2020 01:38:06 -0300 Subject: [PATCH 1/2] =?UTF-8?q?finaliza=C3=A7=C3=A3o=20webcrawler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 121 ++++++++++++++++++++++++++++ INSTRUCOES.md | 28 +++++++ WebCrawling/__init__.py | 0 WebCrawling/middlewares.py | 103 +++++++++++++++++++++++ WebCrawling/models/__init__.py | 0 WebCrawling/models/items.py | 7 ++ WebCrawling/pipelines.py | 17 ++++ WebCrawling/settings.py | 87 ++++++++++++++++++++ WebCrawling/spiders/QuotesSpider.py | 27 +++++++ WebCrawling/spiders/__init__.py | 0 queries.js | 27 +++++++ requirements.txt | 4 + scrapy.cfg | 6 ++ 13 files changed, 427 insertions(+) create mode 100644 .gitignore create mode 100644 INSTRUCOES.md create mode 100644 WebCrawling/__init__.py create mode 100644 WebCrawling/middlewares.py create mode 100644 WebCrawling/models/__init__.py create mode 100644 WebCrawling/models/items.py create mode 100644 WebCrawling/pipelines.py create mode 100644 WebCrawling/settings.py create mode 100644 WebCrawling/spiders/QuotesSpider.py create mode 100644 WebCrawling/spiders/__init__.py create mode 100644 queries.js create mode 100644 requirements.txt create mode 100644 scrapy.cfg diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7b36c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,121 @@ +# Created by .ignore support plugin (hsz.mobi) +### JupyterNotebooks template +# gitignore template for Jupyter Notebooks +# website: http://jupyter.org/ + +.ipynb_checkpoints +*/.ipynb_checkpoints/* + +# IPython +profile_default/ +ipython_config.py + +# Remove previous ipynb_checkpoints +# git rm -r .ipynb_checkpoints/ + +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### VirtualEnv template +# Virtualenv +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ +.Python +[Bb]in +[Ii]nclude +[Ll]ib +[Ll]ib64 +[Ll]ocal +[Ss]cripts +pyvenv.cfg +.venv +pip-selfcheck.json + +### Example user template template +### Example user template + +# IntelliJ project files +.idea +*.iml +out +gen +### VisualStudioCode template +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + diff --git a/INSTRUCOES.md b/INSTRUCOES.md new file mode 100644 index 0000000..5c2383b --- /dev/null +++ b/INSTRUCOES.md @@ -0,0 +1,28 @@ +# Desafio Webcrawler BIT + +## Configurações iniciais: + +- Certificar de que possui o python 3. +- O MongoDB estou utilizando o MongoDB Atlas que é em nuvem, portanto, o link para poder utiilzar via Shell/MongoDB Compass ou + alguma IDE que permita que faça consultas em banco é esse:
+ ``mongodb+srv://admin:@cluster0.lw17c.mongodb.net/?retryWrites=true&w=majority + ``
+ OBS: Trocar as tags `` e `` para conseguir ter plena utilização do banco de dados. + +- Caso ainda não tenha o PyMongo, DNSPython ou o Scrapy, na pasta raíz tem o arquivo `requirements.txt` que irá fazer a + instalação dos pacotes principais para rodar o robô. No CMD você pode digitar:
+ ``pip install -r requirements.txt`` + +## Como rodar: + +Entrar na pasta WebCrawling/spiders e executar o comando no CMD:
+``scrapy crawl quotes`` + +O robô irá fazer a varredura de todas as citações — página por página — e irá guardar esses dados no banco `quotescrape` +na collection `marcosvinicius_simoescampos`. + +## Queries: + +Todas as queries que foram pedidas estão no arquivo `queries.js`. Lá tem os comentários sobre o retorno esperado. Tudo +que precisa ser feito é copiar e colar na ferramenta de consulta para verificar os dados que foram estruturados conforme +foi solicitado. \ No newline at end of file diff --git a/WebCrawling/__init__.py b/WebCrawling/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/WebCrawling/middlewares.py b/WebCrawling/middlewares.py new file mode 100644 index 0000000..b7440d5 --- /dev/null +++ b/WebCrawling/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 WebcrawlingSpiderMiddleware: + # 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 WebcrawlingDownloaderMiddleware: + # 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/WebCrawling/models/__init__.py b/WebCrawling/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/WebCrawling/models/items.py b/WebCrawling/models/items.py new file mode 100644 index 0000000..c461173 --- /dev/null +++ b/WebCrawling/models/items.py @@ -0,0 +1,7 @@ +import scrapy + + +class WebcrawlingItem(scrapy.Item): + title = scrapy.Field() + author = scrapy.Field() + tags = scrapy.Field() diff --git a/WebCrawling/pipelines.py b/WebCrawling/pipelines.py new file mode 100644 index 0000000..da00e6d --- /dev/null +++ b/WebCrawling/pipelines.py @@ -0,0 +1,17 @@ +import pymongo + +MONGO_URL = 'mongodb+srv://admin:quotescrape@cluster0.lw17c.mongodb.net/quotescrape?retryWrites=true&w=majority' +MONGO_DB = 'quotescrape' +DB_COLLECTION = 'marcosvinicius_simoescampos' + + +class WebcrawlingPipeline: + + def __init__(self): + self.connection = pymongo.MongoClient(MONGO_URL) + DATABASE = self.connection[MONGO_DB] + self.collection = DATABASE[DB_COLLECTION] + + def process_item(self, item, spider): + self.collection.insert(dict(item)) + return item diff --git a/WebCrawling/settings.py b/WebCrawling/settings.py new file mode 100644 index 0000000..a88c818 --- /dev/null +++ b/WebCrawling/settings.py @@ -0,0 +1,87 @@ +# Scrapy settings for WebCrawling 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 = 'WebCrawling' + +SPIDER_MODULES = ['WebCrawling.spiders'] +NEWSPIDER_MODULE = 'WebCrawling.spiders' + +# Crawl responsibly by identifying yourself (and your website) on the user-agent +# USER_AGENT = 'WebCrawling (+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 = { +# 'WebCrawling.middlewares.WebcrawlingSpiderMiddleware': 543, +# } + +# Enable or disable downloader middlewares +# See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html +# DOWNLOADER_MIDDLEWARES = { +# 'WebCrawling.middlewares.WebcrawlingDownloaderMiddleware': 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 = { + 'WebCrawling.pipelines.WebcrawlingPipeline': 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/WebCrawling/spiders/QuotesSpider.py b/WebCrawling/spiders/QuotesSpider.py new file mode 100644 index 0000000..9dfc606 --- /dev/null +++ b/WebCrawling/spiders/QuotesSpider.py @@ -0,0 +1,27 @@ +import scrapy +from WebCrawling.models.items import WebcrawlingItem + + +class QuotesSpider(scrapy.Spider): + name = "quotes" + start_urls = ['http://quotes.toscrape.com'] + + def parse(self, response, **kwargs): + for quote in response.css('div.quote'): + title = quote.css('span.text::text').get() + author = { + 'name': quote.css('small.author::text').get(), + 'url': 'http://quotes.toscrape.com' + quote.css('span a::attr(href)').get() + } + tags = quote.css('div.tags a.tag::text').getall() + + items = WebcrawlingItem() + items['title'] = title + items['author'] = author + items['tags'] = tags + + yield items + + next_page = response.css('li.next a::attr(href)').get() + if next_page is not None: + yield response.follow(next_page, callback=self.parse) diff --git a/WebCrawling/spiders/__init__.py b/WebCrawling/spiders/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/queries.js b/queries.js new file mode 100644 index 0000000..7d413c2 --- /dev/null +++ b/queries.js @@ -0,0 +1,27 @@ +// Quantas citações foram coletadas? +db.marcosvinicius_simoescampos.aggregate( + [ + {$group: {_id: "$title"}}, + {$count: "quotes"} + ] +) + +// Quantas tags distintas foram coletadas? +db.marcosvinicius_simoescampos.aggregate( + {$unwind: "$tags"}, + {$group: {_id: "$tags"}}, + {$count: "tags"} +) + +// Quantas citações por autor foram coletadas? +db.marcosvinicius_simoescampos.aggregate( + [ + { + $group: { + _id: "$author.name", + qtd: {$sum: 1} + } + }, + {$sort: {qtd: -1}} + ] +) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..090f156 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +dnspython==2.0.0 +itemadapter==0.2.0 +pymongo==3.11.2 +Scrapy==2.4.1 \ No newline at end of file diff --git a/scrapy.cfg b/scrapy.cfg new file mode 100644 index 0000000..dd0d312 --- /dev/null +++ b/scrapy.cfg @@ -0,0 +1,6 @@ +[settings] +default = WebCrawling.settings + +[deploy] +#url = http://localhost:6800/ +project = WebCrawling From ff08b0b0183fca6a8900aa14f8a98bf3df73963a Mon Sep 17 00:00:00 2001 From: Marcos Vinicius Date: Fri, 25 Dec 2020 01:49:13 -0300 Subject: [PATCH 2/2] ajustes finais --- INSTRUCOES.md | 8 +- items.json | 1131 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1136 insertions(+), 3 deletions(-) create mode 100644 items.json diff --git a/INSTRUCOES.md b/INSTRUCOES.md index 5c2383b..b697ca7 100644 --- a/INSTRUCOES.md +++ b/INSTRUCOES.md @@ -3,8 +3,8 @@ ## Configurações iniciais: - Certificar de que possui o python 3. -- O MongoDB estou utilizando o MongoDB Atlas que é em nuvem, portanto, o link para poder utiilzar via Shell/MongoDB Compass ou - alguma IDE que permita que faça consultas em banco é esse:
+- O MongoDB estou utilizando o MongoDB Atlas que é em nuvem, portanto, o link para poder utiilzar via Shell/MongoDB + Compass ou alguma IDE que permita que faça consultas em banco é esse:
``mongodb+srv://admin:@cluster0.lw17c.mongodb.net/?retryWrites=true&w=majority ``
OBS: Trocar as tags `` e `` para conseguir ter plena utilização do banco de dados. @@ -25,4 +25,6 @@ na collection `marcosvinicius_simoescampos`. Todas as queries que foram pedidas estão no arquivo `queries.js`. Lá tem os comentários sobre o retorno esperado. Tudo que precisa ser feito é copiar e colar na ferramenta de consulta para verificar os dados que foram estruturados conforme -foi solicitado. \ No newline at end of file +foi solicitado. + +#### OBS: O arquivo ``items.json`` que está na pasta raíz foi criado para que veja como está estruturado os dados. \ No newline at end of file diff --git a/items.json b/items.json new file mode 100644 index 0000000..1a31471 --- /dev/null +++ b/items.json @@ -0,0 +1,1131 @@ +[ + { + "title": "\u201cThe world as we have created it is a process of our thinking. It cannot be changed without changing our thinking.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "change", + "deep-thoughts", + "thinking", + "world" + ] + }, + { + "title": "\u201cIt is our choices, Harry, that show what we truly are, far more than our abilities.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "abilities", + "choices" + ] + }, + { + "title": "\u201cThere are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "inspirational", + "life", + "live", + "miracle", + "miracles" + ] + }, + { + "title": "\u201cThe person, be it gentleman or lady, who has not pleasure in a good novel, must be intolerably stupid.\u201d", + "author": { + "name": "Jane Austen", + "url": "http://quotes.toscrape.com/author/Jane-Austen" + }, + "tags": [ + "aliteracy", + "books", + "classic", + "humor" + ] + }, + { + "title": "\u201cImperfection is beauty, madness is genius and it's better to be absolutely ridiculous than absolutely boring.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "be-yourself", + "inspirational" + ] + }, + { + "title": "\u201cTry not to become a man of success. Rather become a man of value.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "adulthood", + "success", + "value" + ] + }, + { + "title": "\u201cIt is better to be hated for what you are than to be loved for what you are not.\u201d", + "author": { + "name": "Andr\u00e9 Gide", + "url": "http://quotes.toscrape.com/author/Andre-Gide" + }, + "tags": [ + "life", + "love" + ] + }, + { + "title": "\u201cI have not failed. I've just found 10,000 ways that won't work.\u201d", + "author": { + "name": "Thomas A. Edison", + "url": "http://quotes.toscrape.com/author/Thomas-A-Edison" + }, + "tags": [ + "edison", + "failure", + "inspirational", + "paraphrased" + ] + }, + { + "title": "\u201cA woman is like a tea bag; you never know how strong it is until it's in hot water.\u201d", + "author": { + "name": "Eleanor Roosevelt", + "url": "http://quotes.toscrape.com/author/Eleanor-Roosevelt" + }, + "tags": [ + "misattributed-eleanor-roosevelt" + ] + }, + { + "title": "\u201cA day without sunshine is like, you know, night.\u201d", + "author": { + "name": "Steve Martin", + "url": "http://quotes.toscrape.com/author/Steve-Martin" + }, + "tags": [ + "humor", + "obvious", + "simile" + ] + }, + { + "title": "\u201cThis life is what you make it. No matter what, you're going to mess up sometimes, it's a universal truth. But the good part is you get to decide how you're going to mess it up. Girls will be your friends - they'll act like it anyway. But just remember, some come, some go. The ones that stay with you through everything - they're your true best friends. Don't let go of them. Also remember, sisters make the best friends in the world. As for lovers, well, they'll come and go too. And baby, I hate to say it, most of them - actually pretty much all of them are going to break your heart, but you can't give up because if you give up, you'll never find your soulmate. You'll never find that half who makes you whole and that goes for everything. Just because you fail once, doesn't mean you're gonna fail at everything. Keep trying, hold on, and always, always, always believe in yourself, because if you don't, then who will, sweetie? So keep your head high, keep your chin up, and most importantly, keep smiling, because life's a beautiful thing and there's so much to smile about.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "friends", + "heartbreak", + "inspirational", + "life", + "love", + "sisters" + ] + }, + { + "title": "\u201cIt takes a great deal of bravery to stand up to our enemies, but just as much to stand up to our friends.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "courage", + "friends" + ] + }, + { + "title": "\u201cIf you can't explain it to a six year old, you don't understand it yourself.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "simplicity", + "understand" + ] + }, + { + "title": "\u201cYou may not be her first, her last, or her only. She loved before she may love again. But if she loves you now, what else matters? She's not perfect\u2014you aren't either, and the two of you may never be perfect together but if she can make you laugh, cause you to think twice, and admit to being human and making mistakes, hold onto her and give her the most you can. She may not be thinking about you every second of the day, but she will give you a part of her that she knows you can break\u2014her heart. So don't hurt her, don't change her, don't analyze and don't expect more than she can give. Smile when she makes you happy, let her know when she makes you mad, and miss her when she's not there.\u201d", + "author": { + "name": "Bob Marley", + "url": "http://quotes.toscrape.com/author/Bob-Marley" + }, + "tags": [ + "love" + ] + }, + { + "title": "\u201cI like nonsense, it wakes up the brain cells. Fantasy is a necessary ingredient in living.\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "fantasy" + ] + }, + { + "title": "\u201cI may not have gone where I intended to go, but I think I have ended up where I needed to be.\u201d", + "author": { + "name": "Douglas Adams", + "url": "http://quotes.toscrape.com/author/Douglas-Adams" + }, + "tags": [ + "life", + "navigation" + ] + }, + { + "title": "\u201cThe opposite of love is not hate, it's indifference. The opposite of art is not ugliness, it's indifference. The opposite of faith is not heresy, it's indifference. And the opposite of life is not death, it's indifference.\u201d", + "author": { + "name": "Elie Wiesel", + "url": "http://quotes.toscrape.com/author/Elie-Wiesel" + }, + "tags": [ + "activism", + "apathy", + "hate", + "indifference", + "inspirational", + "love", + "opposite", + "philosophy" + ] + }, + { + "title": "\u201cIt is not a lack of love, but a lack of friendship that makes unhappy marriages.\u201d", + "author": { + "name": "Friedrich Nietzsche", + "url": "http://quotes.toscrape.com/author/Friedrich-Nietzsche" + }, + "tags": [ + "friendship", + "lack-of-friendship", + "lack-of-love", + "love", + "marriage", + "unhappy-marriage" + ] + }, + { + "title": "\u201cGood friends, good books, and a sleepy conscience: this is the ideal life.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "books", + "contentment", + "friends", + "friendship", + "life" + ] + }, + { + "title": "\u201cLife is what happens to us while we are making other plans.\u201d", + "author": { + "name": "Allen Saunders", + "url": "http://quotes.toscrape.com/author/Allen-Saunders" + }, + "tags": [ + "fate", + "life", + "misattributed-john-lennon", + "planning", + "plans" + ] + }, + { + "title": "\u201cI love you without knowing how, or when, or from where. I love you simply, without problems or pride: I love you in this way because I do not know any other way of loving but this, in which there is no I or you, so intimate that your hand upon my chest is my hand, so intimate that when I fall asleep your eyes close.\u201d", + "author": { + "name": "Pablo Neruda", + "url": "http://quotes.toscrape.com/author/Pablo-Neruda" + }, + "tags": [ + "love", + "poetry" + ] + }, + { + "title": "\u201cFor every minute you are angry you lose sixty seconds of happiness.\u201d", + "author": { + "name": "Ralph Waldo Emerson", + "url": "http://quotes.toscrape.com/author/Ralph-Waldo-Emerson" + }, + "tags": [ + "happiness" + ] + }, + { + "title": "\u201cIf you judge people, you have no time to love them.\u201d", + "author": { + "name": "Mother Teresa", + "url": "http://quotes.toscrape.com/author/Mother-Teresa" + }, + "tags": [ + "attributed-no-source" + ] + }, + { + "title": "\u201cAnyone who thinks sitting in church can make you a Christian must also think that sitting in a garage can make you a car.\u201d", + "author": { + "name": "Garrison Keillor", + "url": "http://quotes.toscrape.com/author/Garrison-Keillor" + }, + "tags": [ + "humor", + "religion" + ] + }, + { + "title": "\u201cBeauty is in the eye of the beholder and it may be necessary from time to time to give a stupid or misinformed beholder a black eye.\u201d", + "author": { + "name": "Jim Henson", + "url": "http://quotes.toscrape.com/author/Jim-Henson" + }, + "tags": [ + "humor" + ] + }, + { + "title": "\u201cToday you are You, that is truer than true. There is no one alive who is Youer than You.\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "comedy", + "life", + "yourself" + ] + }, + { + "title": "\u201cIf you want your children to be intelligent, read them fairy tales. If you want them to be more intelligent, read them more fairy tales.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "children", + "fairy-tales" + ] + }, + { + "title": "\u201cIt is impossible to live without failing at something, unless you live so cautiously that you might as well not have lived at all - in which case, you fail by default.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [] + }, + { + "title": "\u201cLogic will get you from A to Z; imagination will get you everywhere.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "imagination" + ] + }, + { + "title": "\u201cOne good thing about music, when it hits you, you feel no pain.\u201d", + "author": { + "name": "Bob Marley", + "url": "http://quotes.toscrape.com/author/Bob-Marley" + }, + "tags": [ + "music" + ] + }, + { + "title": "\u201cThe more that you read, the more things you will know. The more that you learn, the more places you'll go.\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "learning", + "reading", + "seuss" + ] + }, + { + "title": "\u201cOf course it is happening inside your head, Harry, but why on earth should that mean that it is not real?\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "dumbledore" + ] + }, + { + "title": "\u201cThe truth is, everyone is going to hurt you. You just got to find the ones worth suffering for.\u201d", + "author": { + "name": "Bob Marley", + "url": "http://quotes.toscrape.com/author/Bob-Marley" + }, + "tags": [ + "friendship" + ] + }, + { + "title": "\u201cNot all of us can do great things. But we can do small things with great love.\u201d", + "author": { + "name": "Mother Teresa", + "url": "http://quotes.toscrape.com/author/Mother-Teresa" + }, + "tags": [ + "misattributed-to-mother-teresa", + "paraphrased" + ] + }, + { + "title": "\u201cTo the well-organized mind, death is but the next great adventure.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "death", + "inspirational" + ] + }, + { + "title": "\u201cAll you need is love. But a little chocolate now and then doesn't hurt.\u201d", + "author": { + "name": "Charles M. Schulz", + "url": "http://quotes.toscrape.com/author/Charles-M-Schulz" + }, + "tags": [ + "chocolate", + "food", + "humor" + ] + }, + { + "title": "\u201cWe read to know we're not alone.\u201d", + "author": { + "name": "William Nicholson", + "url": "http://quotes.toscrape.com/author/William-Nicholson" + }, + "tags": [ + "misattributed-to-c-s-lewis", + "reading" + ] + }, + { + "title": "\u201cAny fool can know. The point is to understand.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "knowledge", + "learning", + "understanding", + "wisdom" + ] + }, + { + "title": "\u201cI have always imagined that Paradise will be a kind of library.\u201d", + "author": { + "name": "Jorge Luis Borges", + "url": "http://quotes.toscrape.com/author/Jorge-Luis-Borges" + }, + "tags": [ + "books", + "library" + ] + }, + { + "title": "\u201cIt is never too late to be what you might have been.\u201d", + "author": { + "name": "George Eliot", + "url": "http://quotes.toscrape.com/author/George-Eliot" + }, + "tags": [ + "inspirational" + ] + }, + { + "title": "\u201cA reader lives a thousand lives before he dies, said Jojen. The man who never reads lives only one.\u201d", + "author": { + "name": "George R.R. Martin", + "url": "http://quotes.toscrape.com/author/George-R-R-Martin" + }, + "tags": [ + "read", + "readers", + "reading", + "reading-books" + ] + }, + { + "title": "\u201cYou can never get a cup of tea large enough or a book long enough to suit me.\u201d", + "author": { + "name": "C.S. Lewis", + "url": "http://quotes.toscrape.com/author/C-S-Lewis" + }, + "tags": [ + "books", + "inspirational", + "reading", + "tea" + ] + }, + { + "title": "\u201cYou believe lies so you eventually learn to trust no one but yourself.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [] + }, + { + "title": "\u201cIf you can make a woman laugh, you can make her do anything.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "girls", + "love" + ] + }, + { + "title": "\u201cLife is like riding a bicycle. To keep your balance, you must keep moving.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "life", + "simile" + ] + }, + { + "title": "\u201cThe real lover is the man who can thrill you by kissing your forehead or smiling into your eyes or just staring into space.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "love" + ] + }, + { + "title": "\u201cA wise girl kisses but doesn't love, listens but doesn't believe, and leaves before she is left.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "attributed-no-source" + ] + }, + { + "title": "\u201cOnly in the darkness can you see the stars.\u201d", + "author": { + "name": "Martin Luther King Jr.", + "url": "http://quotes.toscrape.com/author/Martin-Luther-King-Jr" + }, + "tags": [ + "hope", + "inspirational" + ] + }, + { + "title": "\u201cIt matters not what someone is born, but what they grow to be.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "dumbledore" + ] + }, + { + "title": "\u201cLove does not begin and end the way we seem to think it does. Love is a battle, love is a war; love is a growing up.\u201d", + "author": { + "name": "James Baldwin", + "url": "http://quotes.toscrape.com/author/James-Baldwin" + }, + "tags": [ + "love" + ] + }, + { + "title": "\u201cThere is nothing I would not do for those who are really my friends. I have no notion of loving people by halves, it is not my nature.\u201d", + "author": { + "name": "Jane Austen", + "url": "http://quotes.toscrape.com/author/Jane-Austen" + }, + "tags": [ + "friendship", + "love" + ] + }, + { + "title": "\u201cDo one thing every day that scares you.\u201d", + "author": { + "name": "Eleanor Roosevelt", + "url": "http://quotes.toscrape.com/author/Eleanor-Roosevelt" + }, + "tags": [ + "attributed", + "fear", + "inspiration" + ] + }, + { + "title": "\u201cI am good, but not an angel. I do sin, but I am not the devil. I am just a small girl in a big world trying to find someone to love.\u201d", + "author": { + "name": "Marilyn Monroe", + "url": "http://quotes.toscrape.com/author/Marilyn-Monroe" + }, + "tags": [ + "attributed-no-source" + ] + }, + { + "title": "\u201cIf I were not a physicist, I would probably be a musician. I often think in music. I live my daydreams in music. I see my life in terms of music.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "music" + ] + }, + { + "title": "\u201cIf you only read the books that everyone else is reading, you can only think what everyone else is thinking.\u201d", + "author": { + "name": "Haruki Murakami", + "url": "http://quotes.toscrape.com/author/Haruki-Murakami" + }, + "tags": [ + "books", + "thought" + ] + }, + { + "title": "\u201cThe difference between genius and stupidity is: genius has its limits.\u201d", + "author": { + "name": "Alexandre Dumas fils", + "url": "http://quotes.toscrape.com/author/Alexandre-Dumas-fils" + }, + "tags": [ + "misattributed-to-einstein" + ] + }, + { + "title": "\u201cHe's like a drug for you, Bella.\u201d", + "author": { + "name": "Stephenie Meyer", + "url": "http://quotes.toscrape.com/author/Stephenie-Meyer" + }, + "tags": [ + "drug", + "romance", + "simile" + ] + }, + { + "title": "\u201cThere is no friend as loyal as a book.\u201d", + "author": { + "name": "Ernest Hemingway", + "url": "http://quotes.toscrape.com/author/Ernest-Hemingway" + }, + "tags": [ + "books", + "friends", + "novelist-quotes" + ] + }, + { + "title": "\u201cWhen one door of happiness closes, another opens; but often we look so long at the closed door that we do not see the one which has been opened for us.\u201d", + "author": { + "name": "Helen Keller", + "url": "http://quotes.toscrape.com/author/Helen-Keller" + }, + "tags": [ + "inspirational" + ] + }, + { + "title": "\u201cLife isn't about finding yourself. Life is about creating yourself.\u201d", + "author": { + "name": "George Bernard Shaw", + "url": "http://quotes.toscrape.com/author/George-Bernard-Shaw" + }, + "tags": [ + "inspirational", + "life", + "yourself" + ] + }, + { + "title": "\u201cThat's the problem with drinking, I thought, as I poured myself a drink. If something bad happens you drink in an attempt to forget; if something good happens you drink in order to celebrate; and if nothing happens you drink to make something happen.\u201d", + "author": { + "name": "Charles Bukowski", + "url": "http://quotes.toscrape.com/author/Charles-Bukowski" + }, + "tags": [ + "alcohol" + ] + }, + { + "title": "\u201cYou don\u2019t forget the face of the person who was your last hope.\u201d", + "author": { + "name": "Suzanne Collins", + "url": "http://quotes.toscrape.com/author/Suzanne-Collins" + }, + "tags": [ + "the-hunger-games" + ] + }, + { + "title": "\u201cRemember, we're madly in love, so it's all right to kiss me anytime you feel like it.\u201d", + "author": { + "name": "Suzanne Collins", + "url": "http://quotes.toscrape.com/author/Suzanne-Collins" + }, + "tags": [ + "humor" + ] + }, + { + "title": "\u201cTo love at all is to be vulnerable. Love anything and your heart will be wrung and possibly broken. If you want to make sure of keeping it intact you must give it to no one, not even an animal. Wrap it carefully round with hobbies and little luxuries; avoid all entanglements. Lock it up safe in the casket or coffin of your selfishness. But in that casket, safe, dark, motionless, airless, it will change. It will not be broken; it will become unbreakable, impenetrable, irredeemable. To love is to be vulnerable.\u201d", + "author": { + "name": "C.S. Lewis", + "url": "http://quotes.toscrape.com/author/C-S-Lewis" + }, + "tags": [ + "love" + ] + }, + { + "title": "\u201cNot all those who wander are lost.\u201d", + "author": { + "name": "J.R.R. Tolkien", + "url": "http://quotes.toscrape.com/author/J-R-R-Tolkien" + }, + "tags": [ + "bilbo", + "journey", + "lost", + "quest", + "travel", + "wander" + ] + }, + { + "title": "\u201cDo not pity the dead, Harry. Pity the living, and, above all those who live without love.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "live-death-love" + ] + }, + { + "title": "\u201cThere is nothing to writing. All you do is sit down at a typewriter and bleed.\u201d", + "author": { + "name": "Ernest Hemingway", + "url": "http://quotes.toscrape.com/author/Ernest-Hemingway" + }, + "tags": [ + "good", + "writing" + ] + }, + { + "title": "\u201cFinish each day and be done with it. You have done what you could. Some blunders and absurdities no doubt crept in; forget them as soon as you can. Tomorrow is a new day. You shall begin it serenely and with too high a spirit to be encumbered with your old nonsense.\u201d", + "author": { + "name": "Ralph Waldo Emerson", + "url": "http://quotes.toscrape.com/author/Ralph-Waldo-Emerson" + }, + "tags": [ + "life", + "regrets" + ] + }, + { + "title": "\u201cI have never let my schooling interfere with my education.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "education" + ] + }, + { + "title": "\u201cI have heard there are troubles of more than one kind. Some come from ahead and some come from behind. But I've bought a big bat. I'm all ready you see. Now my troubles are going to have troubles with me!\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "troubles" + ] + }, + { + "title": "\u201cIf I had a flower for every time I thought of you...I could walk through my garden forever.\u201d", + "author": { + "name": "Alfred Tennyson", + "url": "http://quotes.toscrape.com/author/Alfred-Tennyson" + }, + "tags": [ + "friendship", + "love" + ] + }, + { + "title": "\u201cSome people never go crazy. What truly horrible lives they must lead.\u201d", + "author": { + "name": "Charles Bukowski", + "url": "http://quotes.toscrape.com/author/Charles-Bukowski" + }, + "tags": [ + "humor" + ] + }, + { + "title": "\u201cThe trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.\u201d", + "author": { + "name": "Terry Pratchett", + "url": "http://quotes.toscrape.com/author/Terry-Pratchett" + }, + "tags": [ + "humor", + "open-mind", + "thinking" + ] + }, + { + "title": "\u201cThink left and think right and think low and think high. Oh, the thinks you can think up if only you try!\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "humor", + "philosophy" + ] + }, + { + "title": "\u201cWhat really knocks me out is a book that, when you're all done reading it, you wish the author that wrote it was a terrific friend of yours and you could call him up on the phone whenever you felt like it. That doesn't happen much, though.\u201d", + "author": { + "name": "J.D. Salinger", + "url": "http://quotes.toscrape.com/author/J-D-Salinger" + }, + "tags": [ + "authors", + "books", + "literature", + "reading", + "writing" + ] + }, + { + "title": "\u201cThe reason I talk to myself is because I\u2019m the only one whose answers I accept.\u201d", + "author": { + "name": "George Carlin", + "url": "http://quotes.toscrape.com/author/George-Carlin" + }, + "tags": [ + "humor", + "insanity", + "lies", + "lying", + "self-indulgence", + "truth" + ] + }, + { + "title": "\u201cYou may say I'm a dreamer, but I'm not the only one. I hope someday you'll join us. And the world will live as one.\u201d", + "author": { + "name": "John Lennon", + "url": "http://quotes.toscrape.com/author/John-Lennon" + }, + "tags": [ + "beatles", + "connection", + "dreamers", + "dreaming", + "dreams", + "hope", + "inspirational", + "peace" + ] + }, + { + "title": "\u201cI am free of all prejudice. I hate everyone equally. \u201d", + "author": { + "name": "W.C. Fields", + "url": "http://quotes.toscrape.com/author/W-C-Fields" + }, + "tags": [ + "humor", + "sinister" + ] + }, + { + "title": "\u201cThe question isn't who is going to let me; it's who is going to stop me.\u201d", + "author": { + "name": "Ayn Rand", + "url": "http://quotes.toscrape.com/author/Ayn-Rand" + }, + "tags": [] + }, + { + "title": "\u201c\u2032Classic\u2032 - a book which people praise and don't read.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "books", + "classic", + "reading" + ] + }, + { + "title": "\u201cAnyone who has never made a mistake has never tried anything new.\u201d", + "author": { + "name": "Albert Einstein", + "url": "http://quotes.toscrape.com/author/Albert-Einstein" + }, + "tags": [ + "mistakes" + ] + }, + { + "title": "\u201cA lady's imagination is very rapid; it jumps from admiration to love, from love to matrimony in a moment.\u201d", + "author": { + "name": "Jane Austen", + "url": "http://quotes.toscrape.com/author/Jane-Austen" + }, + "tags": [ + "humor", + "love", + "romantic", + "women" + ] + }, + { + "title": "\u201cRemember, if the time should come when you have to make a choice between what is right and what is easy, remember what happened to a boy who was good, and kind, and brave, because he strayed across the path of Lord Voldemort. Remember Cedric Diggory.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "integrity" + ] + }, + { + "title": "\u201cI declare after all there is no enjoyment like reading! How much sooner one tires of any thing than of a book! -- When I have a house of my own, I shall be miserable if I have not an excellent library.\u201d", + "author": { + "name": "Jane Austen", + "url": "http://quotes.toscrape.com/author/Jane-Austen" + }, + "tags": [ + "books", + "library", + "reading" + ] + }, + { + "title": "\u201cThere are few people whom I really love, and still fewer of whom I think well. The more I see of the world, the more am I dissatisfied with it; and every day confirms my belief of the inconsistency of all human characters, and of the little dependence that can be placed on the appearance of merit or sense.\u201d", + "author": { + "name": "Jane Austen", + "url": "http://quotes.toscrape.com/author/Jane-Austen" + }, + "tags": [ + "elizabeth-bennet", + "jane-austen" + ] + }, + { + "title": "\u201cSome day you will be old enough to start reading fairy tales again.\u201d", + "author": { + "name": "C.S. Lewis", + "url": "http://quotes.toscrape.com/author/C-S-Lewis" + }, + "tags": [ + "age", + "fairytales", + "growing-up" + ] + }, + { + "title": "\u201cWe are not necessarily doubting that God will do the best for us; we are wondering how painful the best will turn out to be.\u201d", + "author": { + "name": "C.S. Lewis", + "url": "http://quotes.toscrape.com/author/C-S-Lewis" + }, + "tags": [ + "god" + ] + }, + { + "title": "\u201cThe fear of death follows from the fear of life. A man who lives fully is prepared to die at any time.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "death", + "life" + ] + }, + { + "title": "\u201cA lie can travel half way around the world while the truth is putting on its shoes.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "misattributed-mark-twain", + "truth" + ] + }, + { + "title": "\u201cI believe in Christianity as I believe that the sun has risen: not only because I see it, but because by it I see everything else.\u201d", + "author": { + "name": "C.S. Lewis", + "url": "http://quotes.toscrape.com/author/C-S-Lewis" + }, + "tags": [ + "christianity", + "faith", + "religion", + "sun" + ] + }, + { + "title": "\u201cThe truth.\" Dumbledore sighed. \"It is a beautiful and terrible thing, and should therefore be treated with great caution.\u201d", + "author": { + "name": "J.K. Rowling", + "url": "http://quotes.toscrape.com/author/J-K-Rowling" + }, + "tags": [ + "truth" + ] + }, + { + "title": "\u201cI'm the one that's got to die when it's time for me to die, so let me live my life the way I want to.\u201d", + "author": { + "name": "Jimi Hendrix", + "url": "http://quotes.toscrape.com/author/Jimi-Hendrix" + }, + "tags": [ + "death", + "life" + ] + }, + { + "title": "\u201cTo die will be an awfully big adventure.\u201d", + "author": { + "name": "J.M. Barrie", + "url": "http://quotes.toscrape.com/author/J-M-Barrie" + }, + "tags": [ + "adventure", + "love" + ] + }, + { + "title": "\u201cIt takes courage to grow up and become who you really are.\u201d", + "author": { + "name": "E.E. Cummings", + "url": "http://quotes.toscrape.com/author/E-E-Cummings" + }, + "tags": [ + "courage" + ] + }, + { + "title": "\u201cBut better to get hurt by the truth than comforted with a lie.\u201d", + "author": { + "name": "Khaled Hosseini", + "url": "http://quotes.toscrape.com/author/Khaled-Hosseini" + }, + "tags": [ + "life" + ] + }, + { + "title": "\u201cYou never really understand a person until you consider things from his point of view... Until you climb inside of his skin and walk around in it.\u201d", + "author": { + "name": "Harper Lee", + "url": "http://quotes.toscrape.com/author/Harper-Lee" + }, + "tags": [ + "better-life-empathy" + ] + }, + { + "title": "\u201cYou have to write the book that wants to be written. And if the book will be too difficult for grown-ups, then you write it for children.\u201d", + "author": { + "name": "Madeleine L'Engle", + "url": "http://quotes.toscrape.com/author/Madeleine-LEngle" + }, + "tags": [ + "books", + "children", + "difficult", + "grown-ups", + "write", + "writers", + "writing" + ] + }, + { + "title": "\u201cNever tell the truth to people who are not worthy of it.\u201d", + "author": { + "name": "Mark Twain", + "url": "http://quotes.toscrape.com/author/Mark-Twain" + }, + "tags": [ + "truth" + ] + }, + { + "title": "\u201cA person's a person, no matter how small.\u201d", + "author": { + "name": "Dr. Seuss", + "url": "http://quotes.toscrape.com/author/Dr-Seuss" + }, + "tags": [ + "inspirational" + ] + }, + { + "title": "\u201c... a mind needs books as a sword needs a whetstone, if it is to keep its edge.\u201d", + "author": { + "name": "George R.R. Martin", + "url": "http://quotes.toscrape.com/author/George-R-R-Martin" + }, + "tags": [ + "books", + "mind" + ] + } +] \ No newline at end of file