From 4314d46fd9d14076c98c12d43f16861adda9bc2d Mon Sep 17 00:00:00 2001 From: jwansek Date: Sat, 21 Feb 2026 17:10:52 +0000 Subject: Added cow --- edaweb/cache.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'edaweb/cache.py') diff --git a/edaweb/cache.py b/edaweb/cache.py index 5b66e43..8694666 100644 --- a/edaweb/cache.py +++ b/edaweb/cache.py @@ -1,5 +1,6 @@ import database import services +import json def update_cache(): print("Updating cache...") @@ -7,6 +8,7 @@ def update_cache(): db.update_commit_cache(services.request_recent_commits(since = db.get_last_commit_time())) print("Finished adding github commits...") db.append_qnas(services.scrape_whispa(db.config.get("qnas", "url"), since = db.get_oldest_qna())) + # print(json.dumps(services.scrape_whispa(db.config.get("qnas", "url"), since = db.get_oldest_qna()), indent = 4)) print("Finished parsing Q&As...") print("Started getting docker information with SSH...") -- cgit v1.2.3