PROJECT (event_scrapers)
SPIDER (space_cat_brewing)
2026-08-12 01:40:42 [scrapy.utils.log] INFO: Scrapy 2.14.1 started (bot: event_scrapers)
2026-08-12 01:40:42 [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-12 01:40:42 [scrapy.crawler] DEBUG: Using AsyncCrawlerProcess
2026-08-12 01:40:42 [asyncio] DEBUG: Using selector: EpollSelector
2026-08-12 01:40:42 [scrapy.addons] INFO: Enabled addons:
[]
2026-08-12 01:40:42 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.asyncioreactor.AsyncioSelectorReactor
2026-08-12 01:40:42 [scrapy.utils.log] DEBUG: Using asyncio event loop: asyncio.unix_events._UnixSelectorEventLoop
2026-08-12 01:40:42 [scrapy.extensions.telnet] INFO: Telnet Password: b785335b1e953784
2026-08-12 01:40:42 [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-12 01:40:42 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'event_scrapers',
'FEED_EXPORT_ENCODING': 'utf-8',
'FEED_URI_PARAMS': <function _feed_uri_params at 0x72bb355eb4c0>,
'LOG_FILE': '/root/event-list-scraping/logs/event_scrapers/space_cat_brewing/1008a39b95de11f1a79c0050565fa5d9.log',
'NEWSPIDER_MODULE': 'event_scrapers.spiders',
'REQUEST_FINGERPRINTER_CLASS': 'scrapy_zyte_api.ScrapyZyteAPIRequestFingerprinter',
'SPIDER_MODULES': ['event_scrapers.spiders']}
2026-08-12 01:40:42 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-12 01:40:42 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-12 01:40:42 [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-12 01:40:42 [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-12 01:40:42 [scrapy.middleware] INFO: Enabled item pipelines:
['event_scrapers.pipelines.EventScrapersPipeline']
2026-08-12 01:40:42 [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-12 01:40:42 [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-12 01:40:42 [scrapy.core.engine] INFO: Spider opened
2026-08-12 01:40:42 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/core/spidermw.py:490: ScrapyDeprecationWarning: event_scrapers.spiders.space_cat_brewing.ListingSpider 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-12 01:40:42 [space_cat_brewing] INFO: Sending scraped events to prod API
2026-08-12 01:40:42 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2026-08-12 01:40:42 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2026-08-12 01:40:42 [scrapy.core.engine] DEBUG: Crawled (200) <POST https://theweeapps.com/caly-v2/api.php> (referer: https://spacecatbrewing.com/)
2026-08-12 01:40:42 [scrapy.core.engine] DEBUG: Crawled (200) <POST https://theweeapps.com/caly-v2/api.php> (referer: https://spacecatbrewing.com/)
2026-08-12 01:40:42 [scrapy.core.engine] DEBUG: Crawled (200) <POST https://theweeapps.com/caly-v2/api.php> (referer: https://spacecatbrewing.com/)
2026-08-12 01:40:42 [scrapy.core.engine] DEBUG: Crawled (200) <POST https://theweeapps.com/caly-v2/api.php> (referer: https://spacecatbrewing.com/)
2026-08-12 01:40:42 [scrapy.core.engine] DEBUG: Crawled (200) <POST https://theweeapps.com/caly-v2/api.php> (referer: https://spacecatbrewing.com/)
2026-08-12 01:40:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-12 01:40:43 [space_cat_brewing] ERROR: API error 500:
<!doctype html>
<html lang="en">
<head>
<title>Server Error (500)</title>
</head>
<body>
<h1>Server Error (500)</h1><p></p>
</body>
</html>
2026-08-12 01:40:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://theweeapps.com/caly-v2/api.php>
{'event_url': 'https://spacecatbrewing.com/pages/events#46393_2026-08-21',
'platform': 'Space cat brewing',
'platform_hash': '3d17ff8bca343b65bf60e78cffdfb2dc',
'raw_body': '{"event_id": 46393, "event_title": "Stand-Up Comedy Night!", '
'"start_date_time": "2026-08-21 19:00:00", "end_date_time": '
'"2026-08-21 22:00:00", "event_location": "", "event_details": '
'"<p>7 PM</p><p>Next Stop Comedy brings the best comedians, with '
'new lineups every time, straight to your neighborhood for an '
'unforgettable night of laughter! Our shows feature top-tier '
'talent from across the country, delivering high-energy '
'performances in intimate, local venues. Whether you need an '
"exciting date night, you're a die-hard comedy fan, or you're "
'just looking for a fun night out, Next Stop Comedy guarantees '
'big laughs, great vibes, and an experience you won\\u2019t want '
'to miss.</p>", "external_url": '
'"https://www.nextstopcomedy.com/events/spacecat-brewing-company-2026-08-21-7pm?utm_source=venue_website&utm_medium=referral&utm_campaign=venue_promo", '
'"external_url_btn_text": "Tickets", "is_draft_event": "0", '
'"event_color": "#000000", "is_show_time": "1", "event_image": '
'"", "event_image_tmp_name": null, "event_image_s3": '
'"https://careers-app-shopify.s3.ap-south-1.amazonaws.com/prod/2703/46393/v1785529561910/image_large.webp", '
'"store_user_id": 2703, "is_event_registration": "0", '
'"event_register_method": "0", "product_handle": null, '
'"email_btn_text": "Sign up", "product_btn_text": "Buy ticket", '
'"google_calendar_id": null, "is_recurring": 0, '
'"recurrence_type": null, "repeat_interval": null, "repeat_unit": '
'null, "days_of_week": null, "end_recurring_event": null, '
'"tag_id": null, "register_max_count": null, "form_fields": '
'"{\\"name\\":{\\"label\\":\\"Name\\",\\"type\\":\\"text\\",\\"formKey\\":\\"name\\",\\"enabled\\":false,\\"required\\":false},\\"phone\\":{\\"label\\":\\"Phone\\",\\"type\\":\\"tel\\",\\"formKey\\":\\"phone\\",\\"enabled\\":false,\\"required\\":false},\\"guests\\":{\\"label\\":\\"Additional '
'Guests\\",\\"type\\":\\"number\\",\\"formKey\\":\\"additional_guests\\",\\"enabled\\":false,\\"required\\":false},\\"email\\":{\\"label\\":\\"Email\\",\\"type\\":\\"email\\",\\"enabled\\":true,\\"required\\":true}}", '
'"calendar_id": 1, "registrations_start_on": null, '
'"hide_recurring_exdates": null, "is_upcoming": 2, "event_date": '
'"21", "event_month": "August", "event_date_end": "21", '
'"event_month_end": "August", "iana_timezone": '
'"America/New_York"}'}
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-12 01:40:43 [space_cat_brewing] ERROR: API error 500:
<!doctype html>
<html lang="en">
<head>
<title>Server Error (500)</title>
</head>
<body>
<h1>Server Error (500)</h1><p></p>
</body>
</html>
2026-08-12 01:40:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://theweeapps.com/caly-v2/api.php>
{'event_url': 'https://spacecatbrewing.com/pages/events#46393_2026-08-21',
'platform': 'Space cat brewing',
'platform_hash': '3d17ff8bca343b65bf60e78cffdfb2dc',
'raw_body': '{"event_id": 46393, "event_title": "Stand-Up Comedy Night!", '
'"start_date_time": "2026-08-21 19:00:00", "end_date_time": '
'"2026-08-21 22:00:00", "event_location": "", "event_details": '
'"<p>7 PM</p><p>Next Stop Comedy brings the best comedians, with '
'new lineups every time, straight to your neighborhood for an '
'unforgettable night of laughter! Our shows feature top-tier '
'talent from across the country, delivering high-energy '
'performances in intimate, local venues. Whether you need an '
"exciting date night, you're a die-hard comedy fan, or you're "
'just looking for a fun night out, Next Stop Comedy guarantees '
'big laughs, great vibes, and an experience you won\\u2019t want '
'to miss.</p>", "external_url": '
'"https://www.nextstopcomedy.com/events/spacecat-brewing-company-2026-08-21-7pm?utm_source=venue_website&utm_medium=referral&utm_campaign=venue_promo", '
'"external_url_btn_text": "Tickets", "is_draft_event": "0", '
'"event_color": "#000000", "is_show_time": "1", "event_image": '
'"", "event_image_tmp_name": null, "event_image_s3": '
'"https://careers-app-shopify.s3.ap-south-1.amazonaws.com/prod/2703/46393/v1785529561910/image_large.webp", '
'"store_user_id": 2703, "is_event_registration": "0", '
'"event_register_method": "0", "product_handle": null, '
'"email_btn_text": "Sign up", "product_btn_text": "Buy ticket", '
'"google_calendar_id": null, "is_recurring": 0, '
'"recurrence_type": null, "repeat_interval": null, "repeat_unit": '
'null, "days_of_week": null, "end_recurring_event": null, '
'"tag_id": null, "register_max_count": null, "form_fields": '
'"{\\"name\\":{\\"label\\":\\"Name\\",\\"type\\":\\"text\\",\\"formKey\\":\\"name\\",\\"enabled\\":false,\\"required\\":false},\\"phone\\":{\\"label\\":\\"Phone\\",\\"type\\":\\"tel\\",\\"formKey\\":\\"phone\\",\\"enabled\\":false,\\"required\\":false},\\"guests\\":{\\"label\\":\\"Additional '
'Guests\\",\\"type\\":\\"number\\",\\"formKey\\":\\"additional_guests\\",\\"enabled\\":false,\\"required\\":false},\\"email\\":{\\"label\\":\\"Email\\",\\"type\\":\\"email\\",\\"enabled\\":true,\\"required\\":true}}", '
'"calendar_id": 1, "registrations_start_on": null, '
'"hide_recurring_exdates": null, "is_upcoming": 2, "event_date": '
'"21", "event_month": "August", "event_date_end": "21", '
'"event_month_end": "August", "iana_timezone": '
'"America/New_York"}'}
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-12 01:40:43 [space_cat_brewing] ERROR: API error 500:
<!doctype html>
<html lang="en">
<head>
<title>Server Error (500)</title>
</head>
<body>
<h1>Server Error (500)</h1><p></p>
</body>
</html>
2026-08-12 01:40:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://theweeapps.com/caly-v2/api.php>
{'event_url': 'https://spacecatbrewing.com/pages/events#46393_2026-08-21',
'platform': 'Space cat brewing',
'platform_hash': '3d17ff8bca343b65bf60e78cffdfb2dc',
'raw_body': '{"event_id": 46393, "event_title": "Stand-Up Comedy Night!", '
'"start_date_time": "2026-08-21 19:00:00", "end_date_time": '
'"2026-08-21 22:00:00", "event_location": "", "event_details": '
'"<p>7 PM</p><p>Next Stop Comedy brings the best comedians, with '
'new lineups every time, straight to your neighborhood for an '
'unforgettable night of laughter! Our shows feature top-tier '
'talent from across the country, delivering high-energy '
'performances in intimate, local venues. Whether you need an '
"exciting date night, you're a die-hard comedy fan, or you're "
'just looking for a fun night out, Next Stop Comedy guarantees '
'big laughs, great vibes, and an experience you won\\u2019t want '
'to miss.</p>", "external_url": '
'"https://www.nextstopcomedy.com/events/spacecat-brewing-company-2026-08-21-7pm?utm_source=venue_website&utm_medium=referral&utm_campaign=venue_promo", '
'"external_url_btn_text": "Tickets", "is_draft_event": "0", '
'"event_color": "#000000", "is_show_time": "1", "event_image": '
'"", "event_image_tmp_name": null, "event_image_s3": '
'"https://careers-app-shopify.s3.ap-south-1.amazonaws.com/prod/2703/46393/v1785529561910/image_large.webp", '
'"store_user_id": 2703, "is_event_registration": "0", '
'"event_register_method": "0", "product_handle": null, '
'"email_btn_text": "Sign up", "product_btn_text": "Buy ticket", '
'"google_calendar_id": null, "is_recurring": 0, '
'"recurrence_type": null, "repeat_interval": null, "repeat_unit": '
'null, "days_of_week": null, "end_recurring_event": null, '
'"tag_id": null, "register_max_count": null, "form_fields": '
'"{\\"name\\":{\\"label\\":\\"Name\\",\\"type\\":\\"text\\",\\"formKey\\":\\"name\\",\\"enabled\\":false,\\"required\\":false},\\"phone\\":{\\"label\\":\\"Phone\\",\\"type\\":\\"tel\\",\\"formKey\\":\\"phone\\",\\"enabled\\":false,\\"required\\":false},\\"guests\\":{\\"label\\":\\"Additional '
'Guests\\",\\"type\\":\\"number\\",\\"formKey\\":\\"additional_guests\\",\\"enabled\\":false,\\"required\\":false},\\"email\\":{\\"label\\":\\"Email\\",\\"type\\":\\"email\\",\\"enabled\\":true,\\"required\\":true}}", '
'"calendar_id": 1, "registrations_start_on": null, '
'"hide_recurring_exdates": null, "is_upcoming": 2, "event_date": '
'"21", "event_month": "August", "event_date_end": "21", '
'"event_month_end": "August", "iana_timezone": '
'"America/New_York"}'}
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-12 01:40:43 [space_cat_brewing] ERROR: API error 500:
<!doctype html>
<html lang="en">
<head>
<title>Server Error (500)</title>
</head>
<body>
<h1>Server Error (500)</h1><p></p>
</body>
</html>
2026-08-12 01:40:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://theweeapps.com/caly-v2/api.php>
{'event_url': 'https://spacecatbrewing.com/pages/events#46393_2026-08-21',
'platform': 'Space cat brewing',
'platform_hash': '3d17ff8bca343b65bf60e78cffdfb2dc',
'raw_body': '{"event_id": 46393, "event_title": "Stand-Up Comedy Night!", '
'"start_date_time": "2026-08-21 19:00:00", "end_date_time": '
'"2026-08-21 22:00:00", "event_location": "", "event_details": '
'"<p>7 PM</p><p>Next Stop Comedy brings the best comedians, with '
'new lineups every time, straight to your neighborhood for an '
'unforgettable night of laughter! Our shows feature top-tier '
'talent from across the country, delivering high-energy '
'performances in intimate, local venues. Whether you need an '
"exciting date night, you're a die-hard comedy fan, or you're "
'just looking for a fun night out, Next Stop Comedy guarantees '
'big laughs, great vibes, and an experience you won\\u2019t want '
'to miss.</p>", "external_url": '
'"https://www.nextstopcomedy.com/events/spacecat-brewing-company-2026-08-21-7pm?utm_source=venue_website&utm_medium=referral&utm_campaign=venue_promo", '
'"external_url_btn_text": "Tickets", "is_draft_event": "0", '
'"event_color": "#000000", "is_show_time": "1", "event_image": '
'"", "event_image_tmp_name": null, "event_image_s3": '
'"https://careers-app-shopify.s3.ap-south-1.amazonaws.com/prod/2703/46393/v1785529561910/image_large.webp", '
'"store_user_id": 2703, "is_event_registration": "0", '
'"event_register_method": "0", "product_handle": null, '
'"email_btn_text": "Sign up", "product_btn_text": "Buy ticket", '
'"google_calendar_id": null, "is_recurring": 0, '
'"recurrence_type": null, "repeat_interval": null, "repeat_unit": '
'null, "days_of_week": null, "end_recurring_event": null, '
'"tag_id": null, "register_max_count": null, "form_fields": '
'"{\\"name\\":{\\"label\\":\\"Name\\",\\"type\\":\\"text\\",\\"formKey\\":\\"name\\",\\"enabled\\":false,\\"required\\":false},\\"phone\\":{\\"label\\":\\"Phone\\",\\"type\\":\\"tel\\",\\"formKey\\":\\"phone\\",\\"enabled\\":false,\\"required\\":false},\\"guests\\":{\\"label\\":\\"Additional '
'Guests\\",\\"type\\":\\"number\\",\\"formKey\\":\\"additional_guests\\",\\"enabled\\":false,\\"required\\":false},\\"email\\":{\\"label\\":\\"Email\\",\\"type\\":\\"email\\",\\"enabled\\":true,\\"required\\":true}}", '
'"calendar_id": 1, "registrations_start_on": null, '
'"hide_recurring_exdates": null, "is_upcoming": 2, "event_date": '
'"21", "event_month": "August", "event_date_end": "21", '
'"event_month_end": "August", "iana_timezone": '
'"America/New_York"}'}
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-12 01:40:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-12 01:40:43 [space_cat_brewing] ERROR: API error 500:
<!doctype html>
<html lang="en">
<head>
<title>Server Error (500)</title>
</head>
<body>
<h1>Server Error (500)</h1><p></p>
</body>
</html>
2026-08-12 01:40:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://theweeapps.com/caly-v2/api.php>
{'event_url': 'https://spacecatbrewing.com/pages/events#46393_2026-08-21',
'platform': 'Space cat brewing',
'platform_hash': '3d17ff8bca343b65bf60e78cffdfb2dc',
'raw_body': '{"event_id": 46393, "event_title": "Stand-Up Comedy Night!", '
'"start_date_time": "2026-08-21 19:00:00", "end_date_time": '
'"2026-08-21 22:00:00", "event_location": "", "event_details": '
'"<p>7 PM</p><p>Next Stop Comedy brings the best comedians, with '
'new lineups every time, straight to your neighborhood for an '
'unforgettable night of laughter! Our shows feature top-tier '
'talent from across the country, delivering high-energy '
'performances in intimate, local venues. Whether you need an '
"exciting date night, you're a die-hard comedy fan, or you're "
'just looking for a fun night out, Next Stop Comedy guarantees '
'big laughs, great vibes, and an experience you won\\u2019t want '
'to miss.</p>", "external_url": '
'"https://www.nextstopcomedy.com/events/spacecat-brewing-company-2026-08-21-7pm?utm_source=venue_website&utm_medium=referral&utm_campaign=venue_promo", '
'"external_url_btn_text": "Tickets", "is_draft_event": "0", '
'"event_color": "#000000", "is_show_time": "1", "event_image": '
'"", "event_image_tmp_name": null, "event_image_s3": '
'"https://careers-app-shopify.s3.ap-south-1.amazonaws.com/prod/2703/46393/v1785529561910/image_large.webp", '
'"store_user_id": 2703, "is_event_registration": "0", '
'"event_register_method": "0", "product_handle": null, '
'"email_btn_text": "Sign up", "product_btn_text": "Buy ticket", '
'"google_calendar_id": null, "is_recurring": 0, '
'"recurrence_type": null, "repeat_interval": null, "repeat_unit": '
'null, "days_of_week": null, "end_recurring_event": null, '
'"tag_id": null, "register_max_count": null, "form_fields": '
'"{\\"name\\":{\\"label\\":\\"Name\\",\\"type\\":\\"text\\",\\"formKey\\":\\"name\\",\\"enabled\\":false,\\"required\\":false},\\"phone\\":{\\"label\\":\\"Phone\\",\\"type\\":\\"tel\\",\\"formKey\\":\\"phone\\",\\"enabled\\":false,\\"required\\":false},\\"guests\\":{\\"label\\":\\"Additional '
'Guests\\",\\"type\\":\\"number\\",\\"formKey\\":\\"additional_guests\\",\\"enabled\\":false,\\"required\\":false},\\"email\\":{\\"label\\":\\"Email\\",\\"type\\":\\"email\\",\\"enabled\\":true,\\"required\\":true}}", '
'"calendar_id": 1, "registrations_start_on": null, '
'"hide_recurring_exdates": null, "is_upcoming": 2, "event_date": '
'"21", "event_month": "August", "event_date_end": "21", '
'"event_month_end": "August", "iana_timezone": '
'"America/New_York"}'}
2026-08-12 01:40:43 [scrapy.core.engine] INFO: Closing spider (finished)
2026-08-12 01:40:43 [scrapy.extensions.feedexport] INFO: Stored csv feed (5 items) in: output/2026/08/12/space_cat_brewing.csv
2026-08-12 01:40:43 [scrapy.statscollectors] INFO: Dumping Scrapy stats:
{'downloader/request_bytes': 3910,
'downloader/request_count': 5,
'downloader/request_method_count/POST': 5,
'downloader/response_bytes': 9225,
'downloader/response_count': 5,
'downloader/response_status_count/200': 5,
'elapsed_time_seconds': 0.956226,
'feedexport/success_count/FileFeedStorage': 1,
'finish_reason': 'finished',
'finish_time': datetime.datetime(2026, 8, 11, 23, 40, 43, 468092, tzinfo=datetime.timezone.utc),
'httpcompression/response_bytes': 13665,
'httpcompression/response_count': 5,
'item_scraped_count': 5,
'items_per_minute': None,
'log_count/DEBUG': 20,
'log_count/ERROR': 5,
'log_count/INFO': 3,
'memusage/max': 99676160,
'memusage/startup': 99676160,
'response_received_count': 5,
'responses_per_minute': None,
'scheduler/dequeued': 5,
'scheduler/dequeued/memory': 5,
'scheduler/enqueued': 5,
'scheduler/enqueued/memory': 5,
'start_time': datetime.datetime(2026, 8, 11, 23, 40, 42, 511866, tzinfo=datetime.timezone.utc)}
2026-08-12 01:40:43 [scrapy.core.engine] INFO: Spider closed (finished)
PROJECT (event_scrapers)
SPIDER (space_cat_brewing)