{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import csv\n", "import re\n", "import requests\n", "from urllib.request import urlopen\n", "from bs4 import BeautifulSoup\n", "import multiprocessing\n", "import time\n", "\n" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def parse_url(url):\n", " print(url)\n", " page = requests.get(url)\n", " html = page.text\n", " soup = BeautifulSoup(html, 'html.parser')\n", " \n", " try:\n", " fm=soup.find_all(\"div\",{\"class\":\"a-section celwidget\"})\n", " #print(fm[0])\n", " except:\n", " fm=[]\n", " \n", " \n", " \n", " for listitem in fm:\n", " d={}\n", " d[\"User Rating\"]=listitem.find(\"a\",{\"class\":\"a-link-normal\"}).text.replace(\" out of 5 stars\",\"\") \n", " d[\"Username\"]=listitem.find(\"span\",{\"class\":\"a-profile-name\"}).text\n", " d[\"User_Account_Link\"]=listitem.find(\"a\",{\"class\":\"a-profile\"})['href']\n", " d[\"Date\"]=listitem.find(\"span\",{\"class\":\"a-size-base a-color-secondary review-date\"}).text.replace(\"on \",\"\")\n", " d[\"Comment_Title\"]=listitem.find(\"a\",{\"data-hook\":\"review-title\"}).text.rstrip()\n", " d[\"Comment\"]=listitem.find(\"span\",{\"class\":\"a-size-base review-text review-text-content\"}).text.rstrip() \n", " final_Reviews_List.append(d)\n", " \n", " #print(final)\n", " return True\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Total Number of reviews : 3176\n" ] } ], "source": [ "\n", "final_Reviews_List=[]\n", "\n", "product_url='https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/dp/0143126563/ref=cm_cr_arp_d_bdcrb_top?ie=UTF8'\n", "page = requests.get(product_url)\n", "html = page.text\n", "soup = BeautifulSoup(html, 'html.parser')\n", "total_revs=soup.find(\"div\",{\"id\":\"cm-cr-dp-review-header\"}).text.split(' ')[-2].replace(',','')\n", "total_revs=int(total_revs)\n", "print('Total Number of reviews : ',total_revs)\n", "\n" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "\n", "base_url='https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews'\n", "url_list = [\"{}&pageNumber={}&sortBy=recent\".format(base_url, str(page)) for page in range(1, (total_revs//10) + 2)]\n", "#print(url_list)\n" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=1&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=1&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=2&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=2&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=3&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=3&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=4&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=4&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=5&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=5&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=6&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=6&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=7&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=7&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=8&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=8&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=9&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=9&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=10&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=10&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=11&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=11&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=12&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=12&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=13&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=13&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=14&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=14&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=15&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=15&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=16&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=16&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=17&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=17&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=18&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=18&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=19&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=19&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=20&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=20&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=21&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=21&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=22&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=22&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=23&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=23&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=24&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=24&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=25&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=25&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=26&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=26&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=27&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=27&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=28&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=28&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=29&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=29&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=30&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=30&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=31&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=31&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=32&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=32&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=33&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=33&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=34&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=34&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=35&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=35&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=36&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=36&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=37&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=37&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=38&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=38&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=39&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=39&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=40&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=40&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=41&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=41&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=42&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=42&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=43&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=43&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=44&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=44&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=45&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=45&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=46&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=46&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=47&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=47&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=48&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=48&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=49&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=49&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=50&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=50&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=51&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=51&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=52&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=52&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=53&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=53&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=54&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=54&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=55&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=55&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=56&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=56&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=57&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=57&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=58&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=58&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=59&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=59&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=60&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=60&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=61&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=61&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=62&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=62&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=63&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=63&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=64&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=64&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=65&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=65&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=66&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=66&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=67&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=67&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=68&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=68&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=69&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=69&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=70&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=70&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=71&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=71&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=72&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=72&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=73&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=73&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=74&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=74&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=75&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=75&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=76&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=76&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=77&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=77&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=78&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=78&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=79&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=79&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=80&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=80&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=81&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=81&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=82&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=82&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=83&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=83&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=84&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=84&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=85&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=85&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=86&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=86&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=87&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=87&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=88&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=88&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=89&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=89&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=90&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=90&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=91&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=91&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=92&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=92&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=93&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=93&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=94&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=94&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=95&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=95&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=96&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=96&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=97&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=97&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=98&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=98&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=99&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=99&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=100&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=100&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=101&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=101&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=102&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=102&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=103&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=103&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=104&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=104&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=105&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=105&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=106&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=106&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=107&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=107&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=108&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=108&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=109&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=109&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=110&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=110&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=111&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=111&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=112&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=112&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=113&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=113&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=114&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=114&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=115&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=115&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=116&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=116&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=117&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=117&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=118&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=118&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=119&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=119&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=120&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=120&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=121&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=121&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=122&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=122&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=123&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=123&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=124&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=124&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=125&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=125&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=126&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=126&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=127&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=127&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=128&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=128&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=129&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=129&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=130&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=130&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=131&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=131&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=132&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=132&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=133&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=133&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=134&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=134&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=135&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=135&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=136&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=136&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=137&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=137&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=138&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=138&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=139&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=139&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=140&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=140&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=141&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=141&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=142&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=142&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=143&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=143&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=144&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=144&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=145&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=145&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=146&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=146&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=147&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=147&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=148&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=148&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=149&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=149&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=150&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=150&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=151&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=151&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=152&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=152&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=153&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=153&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=154&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=154&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=155&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=155&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=156&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=156&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=157&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=157&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=158&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=158&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=159&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=159&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=160&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=160&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=161&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=161&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=162&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=162&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=163&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=163&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=164&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=164&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=165&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=165&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=166&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=166&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=167&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=167&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=168&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=168&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=169&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=169&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=170&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=170&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=171&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=171&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=172&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=172&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=173&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=173&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=174&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=174&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=175&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=175&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=176&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=176&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=177&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=177&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=178&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=178&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=179&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=179&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=180&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=180&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=181&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=181&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=182&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=182&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=183&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=183&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=184&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=184&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=185&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=185&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=186&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=186&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=187&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=187&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=188&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=188&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=189&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=189&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=190&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=190&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=191&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=191&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=192&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=192&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=193&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=193&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=194&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=194&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=195&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=195&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=196&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=196&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=197&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=197&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=198&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=198&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=199&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=199&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=200&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=200&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=201&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=201&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=202&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=202&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=203&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=203&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=204&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=204&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=205&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=205&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=206&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=206&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=207&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=207&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=208&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=208&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=209&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=209&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=210&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=210&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=211&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=211&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=212&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=212&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=213&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=213&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=214&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=214&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=215&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=215&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=216&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=216&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=217&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=217&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=218&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=218&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=219&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=219&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=220&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=220&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=221&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=221&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=222&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=222&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=223&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=223&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=224&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=224&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=225&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=225&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=226&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=226&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=227&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=227&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=228&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=228&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=229&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=229&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=230&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=230&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=231&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=231&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=232&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=232&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=233&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=233&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=234&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=234&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=235&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=235&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=236&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=236&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=237&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=237&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=238&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=238&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=239&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=239&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=240&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=240&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=241&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=241&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=242&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=242&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=243&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=243&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=244&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=244&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=245&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=245&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=246&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=246&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=247&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=247&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=248&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=248&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=249&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=249&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=250&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=250&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=251&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=251&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=252&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=252&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=253&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=253&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=254&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=254&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=255&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=255&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=256&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=256&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=257&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=257&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=258&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=258&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=259&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=259&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=260&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=260&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=261&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=261&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=262&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=262&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=263&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=263&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=264&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=264&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=265&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=265&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=266&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=266&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=267&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=267&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=268&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=268&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=269&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=269&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=270&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=270&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=271&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=271&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=272&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=272&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=273&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=273&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=274&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=274&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=275&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=275&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=276&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=276&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=277&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=277&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=278&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=278&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=279&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=279&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=280&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=280&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=281&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=281&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=282&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=282&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=283&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=283&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=284&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=284&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=285&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=285&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=286&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=286&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=287&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=287&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=288&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=288&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=289&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=289&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=290&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=290&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=291&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=291&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=292&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=292&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=293&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=293&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=294&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=294&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=295&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=295&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=296&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=296&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=297&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=297&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=298&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=298&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=299&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=299&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=300&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=300&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=301&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=301&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=302&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=302&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=303&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=303&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=304&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=304&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=305&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=305&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=306&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=306&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=307&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=307&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=308&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=308&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=309&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=309&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=310&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=310&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=311&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=311&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=312&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=312&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=313&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=313&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=314&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=314&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=315&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=315&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=316&sortBy=recent\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=316&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=317&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=317&sortBy=recent\n", "https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=318&sortBy=recent\n", "Done scraping URL: https://www.amazon.com/Getting-Things-Done-Stress-Free-Productivity/product-reviews/0143126563/ref=cm_cr_arp_d_paging_btm_next_1?ie=UTF8&reviewerType=all_reviews&pageNumber=318&sortBy=recent\n", "\u001b[31m 210.92195104406372 second used \u001b[0m\n" ] } ], "source": [ "t1_start = time.perf_counter()\n", "for url in url_list:\n", " a=parse_url(url)\n", " print('Done scraping URL: ',url)\n", "t1_end = time.perf_counter()\n", "print('\\u001b[31m',t1_end - t1_start, \"second used \\u001b[0m\")\n", "\n", "final_reviews=pd.DataFrame(final_Reviews_List)\n", "final_reviews.to_csv('GTD_Final_Reviews.csv',index=False)\n", "\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.6" } }, "nbformat": 4, "nbformat_minor": 2 }