From e13cbe6a4fd1ebe3f2c3bfc86c54e8dd17c59624 Mon Sep 17 00:00:00 2001 From: dev Date: Thu, 25 Jun 2026 21:14:39 +0200 Subject: feat: fetch missing wiki data from custom server and populate imdb table - Add wiki_server and wiki_username config fields - Query custom server for each wiki_article entry - Extract description, synopsis (Plot), year, poster_url, license, license_url, num_accolades from structured JSON response - Serial processing with 1 req/s rate limit - Update only entries missing at least one target column --- src/main.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main.go') diff --git a/src/main.go b/src/main.go index 272e4b6..9fd53db 100644 --- a/src/main.go +++ b/src/main.go @@ -198,4 +198,8 @@ func main() { if err = app.fetchWikiArticles(); err != nil { log.Fatalf("fetchWikiArticles: %v", err) } + + if err = app.fetchWikiArticlesData(); err != nil { + log.Fatalf("fetchWikiArticlesData: %v", err) + } } -- cgit v1.2.3