From dd3f431d2f20409ccb490241e70687a5f5c7c79c Mon Sep 17 00:00:00 2001 From: jwansek Date: Sun, 27 Apr 2025 21:18:34 +0100 Subject: Added caching docker info with cron --- cache.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cache.py (limited to 'cache.py') diff --git a/cache.py b/cache.py new file mode 100644 index 0000000..5b66e43 --- /dev/null +++ b/cache.py @@ -0,0 +1,18 @@ +import database +import services + +def update_cache(): + print("Updating cache...") + with database.Database() as db: + 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("Finished parsing Q&As...") + + print("Started getting docker information with SSH...") + print(services.cache_all_docker_containers(services.CONFIG.get("ssh", "docker_key_path"))) + print("Finished caching.") + + +if __name__ == "__main__": + update_cache() \ No newline at end of file -- cgit v1.2.3