• It's recommended to check out the latest log via: the Stats page >> View log >> Tail

PROJECT (event_scrapers), SPIDER (barrett_bookstore)

2026-08-11 13:00:17 [scrapy.utils.log] INFO: Scrapy 2.14.1 started (bot: event_scrapers)
2026-08-11 13:00:17 [scrapy.utils.log] INFO: Versions:
{'lxml': '6.0.2',
 'libxml2': '2.14.6',
 'cssselect': '1.3.0',
 'parsel': '1.10.0',
 'w3lib': '2.0.0',
 'Twisted': '25.5.0',
 'Python': '3.12.3 (main, Jun 19 2026, 12:46:00) [GCC 13.3.0]',
 'pyOpenSSL': '25.3.0 (OpenSSL 3.5.4 30 Sep 2025)',
 'cryptography': '46.0.3',
 'Platform': 'Linux-6.8.0-90-generic-x86_64-with-glibc2.39'}
2026-08-11 13:00:17 [scrapy.crawler] DEBUG: Using AsyncCrawlerProcess
2026-08-11 13:00:17 [asyncio] DEBUG: Using selector: EpollSelector
2026-08-11 13:00:17 [scrapy.addons] INFO: Enabled addons:
[]
2026-08-11 13:00:17 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.asyncioreactor.AsyncioSelectorReactor
2026-08-11 13:00:17 [scrapy.utils.log] DEBUG: Using asyncio event loop: asyncio.unix_events._UnixSelectorEventLoop
2026-08-11 13:00:17 [scrapy.extensions.telnet] INFO: Telnet Password: 0c7760a91ede1784
2026-08-11 13:00:17 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
 'scrapy.extensions.logcount.LogCount',
 'scrapy.extensions.telnet.TelnetConsole',
 'scrapy.extensions.memusage.MemoryUsage',
 'scrapy.extensions.feedexport.FeedExporter',
 'scrapy.extensions.logstats.LogStats']
2026-08-11 13:00:17 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'event_scrapers',
 'FEED_EXPORT_ENCODING': 'utf-8',
 'FEED_URI_PARAMS': <function _feed_uri_params at 0x73df88c4b4c0>,
 'LOG_FILE': '/root/event-list-scraping/logs/event_scrapers/barrett_bookstore/d2efbbb5957311f189770050565fa5d9.log',
 'NEWSPIDER_MODULE': 'event_scrapers.spiders',
 'REQUEST_FINGERPRINTER_CLASS': 'scrapy_zyte_api.ScrapyZyteAPIRequestFingerprinter',
 'SPIDER_MODULES': ['event_scrapers.spiders']}
2026-08-11 13:00:17 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-11 13:00:17 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-11 13:00:17 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.offsite.OffsiteMiddleware',
 'scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
 'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
 'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
 'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
 'scrapy.downloadermiddlewares.retry.RetryMiddleware',
 'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
 'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
 'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPIDownloaderMiddleware',
 'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
 'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
 'scrapy.downloadermiddlewares.stats.DownloaderStats']
2026-08-11 13:00:17 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.start.StartSpiderMiddleware',
 'scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPISpiderMiddleware',
 'scrapy.spidermiddlewares.referer.RefererMiddleware',
 'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
 'scrapy.spidermiddlewares.depth.DepthMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPIRefererSpiderMiddleware']
2026-08-11 13:00:17 [scrapy.middleware] INFO: Enabled item pipelines:
['event_scrapers.pipelines.EventScrapersPipeline']
2026-08-11 13:00:17 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/pipelines/__init__.py:41: ScrapyDeprecationWarning: EventScrapersPipeline.open_spider() requires a spider argument, this is deprecated and the argument will not be passed in future Scrapy versions. If you need to access the spider instance you can save the crawler instance passed to from_crawler() and use its spider attribute.
  self._check_mw_method_spider_arg(pipe.open_spider)

2026-08-11 13:00:17 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/pipelines/__init__.py:47: ScrapyDeprecationWarning: EventScrapersPipeline.process_item() requires a spider argument, this is deprecated and the argument will not be passed in future Scrapy versions. If you need to access the spider instance you can save the crawler instance passed to from_crawler() and use its spider attribute.
  self._check_mw_method_spider_arg(pipe.process_item)

2026-08-11 13:00:17 [scrapy.core.engine] INFO: Spider opened
2026-08-11 13:00:17 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/core/spidermw.py:490: ScrapyDeprecationWarning: event_scrapers.spiders.barrett_bookstore.BarrettBookstoreSpider defines the deprecated start_requests() method. start_requests() has been deprecated in favor of a new method, start(), to support asynchronous code execution. start_requests() will stop being called in a future version of Scrapy. If you use Scrapy 2.13 or higher only, replace start_requests() with start(); note that start() is a coroutine (async def). If you need to maintain compatibility with lower Scrapy versions, when overriding start_requests() in a spider class, override start() as well; you can use super() to reuse the inherited start() implementation without copy-pasting. See the release notes of Scrapy 2.13 for details: https://docs.scrapy.org/en/2.13/news.html
  warn(

2026-08-11 13:00:17 [barrett_bookstore] INFO: Sending scraped events to prod API
2026-08-11 13:00:17 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2026-08-11 13:00:17 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2026-08-11 13:00:17 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:17 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:17 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:17 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:17 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:19 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/events/2026/12> (referer: None) ['zyte-api']
2026-08-11 13:00:20 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/events/2026/08> (referer: None) ['zyte-api']
2026-08-11 13:00:20 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:21 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/events/2026/11> (referer: None) ['zyte-api']
2026-08-11 13:00:21 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/events/2026/10> (referer: None) ['zyte-api']
2026-08-11 13:00:25 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/event/2026-08-11/partner-event-priya-parmar-darien-library> (referer: None) ['zyte-api']
2026-08-11 13:00:25 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-11 13:00:25 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 201 2970
2026-08-11 13:00:25 [scrapy.core.scraper] DEBUG: Scraped from <200 https://barrettbookstore.com/event/2026-08-11/partner-event-priya-parmar-darien-library>
{'event_url': 'https://barrettbookstore.com/event/2026-08-11/partner-event-priya-parmar-darien-library',
 'platform': 'Barrett Bookstore',
 'platform_hash': 'a4649056ba039c67340f82d9943351d0',
 'raw_body': '<article class="eventinstance-full '
             'event-details__single-column">\n'
             '    <div class="event-details__top">\n'
             '\n'
             '    <div class="event-details__info">\n'
             '      <h1 class="event-details__info--title">\n'
             '            Partner Event: Priya Parmar at Darien Library\n'
             '      </h1>\n'
             '\n'
             '      <div class="event-details__location">\n'
             '        <div class="event-details__location--item '
             'event-details__location--date">\n'
             '                        Tue, 8/11/2026\n'
             '                                          <div '
             'class="event-details__location--item">\n'
             '                  -\n'
             '                                      7:00pm\n'
             '                                  </div>\n'
             '                                </div>\n'
             '\n'
             '                        <div class="event-list__details--item '
             'event-details__location--location">\n'
             '                      <span '
             'class="event-list__details--label">Place:  </span>\n'
             '            \n'
             '            <div><p class="address" translate="no"><span '
             'class="address-line1">Darien Library</span><br>\n'
             '<span class="address-line2">1441 Post Road</span><br>\n'
             '<span class="locality">Darien</span>, <span '
             'class="administrative-area">CT</span> <span '
             'class="postal-code">06820</span><br>\n'
             '<span class="country">United States</span></p></div>\n'
             '      \n'
             '                  </div>\n'
             '        \n'
             '                        <div class="event-details__links">\n'
             '          <a class="event-details__links--rsvp" '
             'href="https://www.darienlibrary.org/event/tent-priya-parmar-original-114520" '
             'target="_blank">RSVP\n'
             '              <span class="visually-hidden">to \n'
             '            Partner Event: Priya Parmar at Darien Library\n'
             '      </span>\n'
             '            </a>\n'
             '        </div>\n'
             '                <div class="event-details__info--tags">\n'
             '                <div class="event-tag__term"><a '
             'href="/events/tags/partner-event">Darien Library</a></div>\n'
             '        </div>\n'
             '      </div>\n'
             '      </div>\n'
             '\n'
             '          <div class="event-details__image">\n'
             '        <img alt="The alternative text" title="The title text" '
             'src="/sites/default/files/styles/event_image_large/public/image/2026/07/16/priya.png?itok=YAR9fAvv" '
             'width="480" height="304" loading="lazy">\n'
             '\n'
             '\n'
             '      </div>\n'
             '    \n'
             '    </div>\n'
             '\n'
             '          <div class="event-details__info--body aba-body">\n'
             '            <p>Friend of the store Priya Parmar is heading to '
             'Darien Library! On Tuesday, August 11th, head to the library and '
             "hear about Priya's book The Original, a novel about the "
             'inimitable Katharine Hepburn. <a '
             'href="https://www.darienlibrary.org/event/tent-priya-parmar-original-114520">Click '
             'here to save your seat.</a></p>\n'
             '\n'
             '      </div>\n'
             '  </article>'}
2026-08-11 13:00:50 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/events/2026/09> (referer: None) ['zyte-api']
2026-08-11 13:00:50 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:50 [zyte_api._retry] DEBUG: Starting call to 'zyte_api._async.AsyncZyteAPI.get.<locals>.request', this is the 1st time calling it.
2026-08-11 13:00:52 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/event/2026-09-12/partner-event-pamela-paul-darien-nature-center> (referer: None) ['zyte-api']
2026-08-11 13:00:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-11 13:00:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 201 3108
2026-08-11 13:00:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://barrettbookstore.com/event/2026-09-12/partner-event-pamela-paul-darien-nature-center>
{'event_url': 'https://barrettbookstore.com/event/2026-09-12/partner-event-pamela-paul-darien-nature-center',
 'platform': 'Barrett Bookstore',
 'platform_hash': 'a4649056ba039c67340f82d9943351d0',
 'raw_body': '<article class="eventinstance-full '
             'event-details__single-column">\n'
             '    <div class="event-details__top">\n'
             '\n'
             '    <div class="event-details__info">\n'
             '      <h1 class="event-details__info--title">\n'
             '            Partner Event: Pamela Paul at Darien Nature Center\n'
             '      </h1>\n'
             '\n'
             '      <div class="event-details__location">\n'
             '        <div class="event-details__location--item '
             'event-details__location--date">\n'
             '                        Sat, 9/12/2026\n'
             '                                          <div '
             'class="event-details__location--item">\n'
             '                  -\n'
             '                                      11:00am - 12:00pm\n'
             '                                  </div>\n'
             '                                </div>\n'
             '\n'
             '                        <div class="event-list__details--item '
             'event-details__location--location">\n'
             '                      <span '
             'class="event-list__details--label">Place:  </span>\n'
             '            \n'
             '            <div><p class="address" translate="no"><span '
             'class="address-line1">Darien Nature Center</span><br>\n'
             '<span class="address-line2">120 Brookside Road</span><br>\n'
             '<span class="locality">Darien</span>, <span '
             'class="administrative-area">CT</span> <span '
             'class="postal-code">06820</span><br>\n'
             '<span class="country">United States</span></p></div>\n'
             '      \n'
             '                  </div>\n'
             '        \n'
             '                        <div class="event-details__links">\n'
             '          <a class="event-details__links--rsvp" '
             'href="https://www.darienlibrary.org/event/family-storytime-featuring-author-pamela-paul-path-119437" '
             'target="_blank">Learn More\n'
             '              <span class="visually-hidden">to \n'
             '            Partner Event: Pamela Paul at Darien Nature Center\n'
             '      </span>\n'
             '            </a>\n'
             '        </div>\n'
             '                <div class="event-details__info--tags"></div>\n'
             '      </div>\n'
             '      </div>\n'
             '\n'
             '          <div class="event-details__image">\n'
             '        <img alt="The alternative text" title="The title text" '
             'src="/sites/default/files/styles/event_image_large/public/image/2026/08/10/pamela-paul.png?itok=lRjcBo_2" '
             'width="601" height="400" loading="lazy">\n'
             '\n'
             '\n'
             '      </div>\n'
             '    \n'
             '    </div>\n'
             '\n'
             '          <div class="event-details__info--body aba-body">\n'
             "            <p>Journalist Pamela Paul's new picture book, "
             '<em>The Path</em>, is a playful celebration of community, '
             'nature, and the magic of cooperation. Join us at Darien Nature '
             'Center, in partnership with Darien Library, for a special family '
             'storytime event! Enjoy a read aloud, lively songs with a '
             "children's librarian, a hands-on craft, and a self-guided nature "
             'walk activity. <a '
             'href="https://www.darienlibrary.org/event/family-storytime-featuring-author-pamela-paul-path-119437">Click '
             'here to learn more</a>.</p>\n'
             '\n'
             '      </div>\n'
             '  </article>'}
2026-08-11 13:01:05 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://barrettbookstore.com/event/2026-09-03/partner-event-heather-webb-julie-gerstenblatt-darien-library> (referer: None) ['zyte-api']
2026-08-11 13:01:05 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-11 13:01:06 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 201 3187
2026-08-11 13:01:06 [scrapy.core.scraper] DEBUG: Scraped from <200 https://barrettbookstore.com/event/2026-09-03/partner-event-heather-webb-julie-gerstenblatt-darien-library>
{'event_url': 'https://barrettbookstore.com/event/2026-09-03/partner-event-heather-webb-julie-gerstenblatt-darien-library',
 'platform': 'Barrett Bookstore',
 'platform_hash': 'a4649056ba039c67340f82d9943351d0',
 'raw_body': '<article class="eventinstance-full '
             'event-details__single-column">\n'
             '    <div class="event-details__top">\n'
             '\n'
             '    <div class="event-details__info">\n'
             '      <h1 class="event-details__info--title">\n'
             '            Partner Event: Heather Webb &amp; Julie Gerstenblatt '
             'at Darien Library\n'
             '      </h1>\n'
             '\n'
             '      <div class="event-details__location">\n'
             '        <div class="event-details__location--item '
             'event-details__location--date">\n'
             '                        Thu, 9/3/2026\n'
             '                                          <div '
             'class="event-details__location--item">\n'
             '                  -\n'
             '                                      7:00pm\n'
             '                                  </div>\n'
             '                                </div>\n'
             '\n'
             '                        <div class="event-list__details--item '
             'event-details__location--location">\n'
             '                      <span '
             'class="event-list__details--label">Place:  </span>\n'
             '            \n'
             '            <div><p class="address" translate="no"><span '
             'class="address-line1">Darien Library</span><br>\n'
             '<span class="address-line2">1441 Post Road</span><br>\n'
             '<span class="locality">Darien</span>, <span '
             'class="administrative-area">CT</span> <span '
             'class="postal-code">06820</span><br>\n'
             '<span class="country">United States</span></p></div>\n'
             '      \n'
             '                  </div>\n'
             '        \n'
             '                        <div class="event-details__links">\n'
             '          <a class="event-details__links--rsvp" '
             'href="https://www.darienlibrary.org/event/heather-webb-julie-gerstenblatt-116829" '
             'target="_blank">RSVP\n'
             '              <span class="visually-hidden">to \n'
             '            Partner Event: Heather Webb &amp; Julie Gerstenblatt '
             'at Darien Library\n'
             '      </span>\n'
             '            </a>\n'
             '        </div>\n'
             '                <div class="event-details__info--tags">\n'
             '                <div class="event-tag__term"><a '
             'href="/events/tags/partner-event">Darien Library</a></div>\n'
             '        </div>\n'
             '      </div>\n'
             '      </div>\n'
             '\n'
             '          <div class="event-details__image">\n'
             '        <img alt="The alternative text" title="The title text" '
             'src="/sites/default/files/styles/event_image_large/public/image/2026/08/10/webb-gerstenblatt.png?itok=bRMo5Nbe" '
             'width="601" height="400" loading="lazy">\n'
             '\n'
             '\n'
             '      </div>\n'
             '    \n'
             '    </div>\n'
             '\n'
             '          <div class="event-details__info--body aba-body">\n'
             '            <p>Darien Library welcomes authors Julie '
             'Gerstenblatt and Heather Webb, who will discuss their books, The '
             'Stargazer of Nantucket and The Hope Keeper. Come join the fun as '
             'these authors talk about their inspirations and just how they '
             "brought these imagined worlds to life. Whether you're a longtime "
             'fan of historical fiction or simply love hearing how a great '
             'story comes together, come be part of the conversation! Click '
             'the link above to register.</p>\n'
             '\n'
             '      </div>\n'
             '  </article>'}
2026-08-11 13:01:06 [scrapy.core.engine] INFO: Closing spider (finished)
2026-08-11 13:01:06 [scrapy.extensions.feedexport] INFO: Stored csv feed (3 items) in: output/2026/08/11/barrett_bookstore.csv
2026-08-11 13:01:06 [scrapy.statscollectors] INFO: Dumping Scrapy stats:
{'downloader/request_bytes': 5964,
 'downloader/request_count': 8,
 'downloader/request_method_count/GET': 8,
 'downloader/response_bytes': 372298,
 'downloader/response_count': 8,
 'downloader/response_status_count/200': 8,
 'elapsed_time_seconds': 48.170565,
 'feedexport/success_count/FileFeedStorage': 1,
 'finish_reason': 'finished',
 'finish_time': datetime.datetime(2026, 8, 11, 11, 1, 6, 85682, tzinfo=datetime.timezone.utc),
 'item_scraped_count': 3,
 'items_per_minute': 3.75,
 'log_count/DEBUG': 25,
 'log_count/INFO': 3,
 'memusage/max': 99897344,
 'memusage/startup': 99897344,
 'request_depth_max': 1,
 'response_received_count': 8,
 'responses_per_minute': 10.0,
 'scheduler/dequeued': 8,
 'scheduler/dequeued/memory': 8,
 'scheduler/enqueued': 8,
 'scheduler/enqueued/memory': 8,
 'scrapy-zyte-api/429': 0,
 'scrapy-zyte-api/attempts': 8,
 'scrapy-zyte-api/error_ratio': 0.0,
 'scrapy-zyte-api/errors': 0,
 'scrapy-zyte-api/fatal_errors': 0,
 'scrapy-zyte-api/mean_connection_seconds': 8.190784224309027,
 'scrapy-zyte-api/mean_response_seconds': 8.238510799128562,
 'scrapy-zyte-api/processed': 8,
 'scrapy-zyte-api/request_args/customHttpRequestHeaders': 8,
 'scrapy-zyte-api/request_args/httpResponseBody': 8,
 'scrapy-zyte-api/request_args/httpResponseHeaders': 8,
 'scrapy-zyte-api/request_args/url': 8,
 'scrapy-zyte-api/status_codes/200': 8,
 'scrapy-zyte-api/success': 8,
 'scrapy-zyte-api/success_ratio': 1.0,
 'scrapy-zyte-api/throttle_ratio': 0.0,
 'start_time': datetime.datetime(2026, 8, 11, 11, 0, 17, 915117, tzinfo=datetime.timezone.utc)}
2026-08-11 13:01:06 [scrapy.core.engine] INFO: Spider closed (finished)

PROJECT (event_scrapers), SPIDER (barrett_bookstore)