From 021a75396e6b5c0af535086d19fb204826dff343 Mon Sep 17 00:00:00 2001 From: Tour Date: Thu, 4 Dec 2025 15:26:33 +0100 Subject: [PATCH] a --- .gitignore | 2 +- docker-compose.yml | 4 ++-- src/main.py | 4 ++-- src/scraper.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index fdb5356..f445390 100644 --- a/.gitignore +++ b/.gitignore @@ -162,7 +162,7 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. .idea/ -# Project specific - Troostwijk Scraper +# Project specific - Scaev output/ *.db *.csv diff --git a/docker-compose.yml b/docker-compose.yml index 8836551..e557d28 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,11 @@ version: '3.8' services: - scaev-scraper: + scaev: build: context: . dockerfile: Dockerfile - container_name: scaev-scraper + container_name: scaev volumes: # Mount to match config.py paths (/mnt/okcomputer/output) # This maps host ./output directory to container /mnt/okcomputer/output diff --git a/src/main.py b/src/main.py index 1eb53ac..f1dda4a 100644 --- a/src/main.py +++ b/src/main.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Troostwijk Auctions Scraper - Main Entry Point +Scaev Auctions Scraper - Main Entry Point Focuses on extracting auction lots with caching and rate limiting """ @@ -29,7 +29,7 @@ def main(): test_extraction() return - print("Troostwijk Auctions Scraper") + print("Scaev Auctions Scraper") print("=" * 60) print(f"Rate limit: {config.RATE_LIMIT_SECONDS} seconds BETWEEN EVERY REQUEST") print(f"Cache database: {config.CACHE_DB}") diff --git a/src/scraper.py b/src/scraper.py index af39ba2..2431319 100644 --- a/src/scraper.py +++ b/src/scraper.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Core scraper module for Scaev Auctions +Core scaev module for Scaev Auctions """ import sqlite3 import asyncio