From 239cf3ce1a5e86ea0cb681f1eb9ff6a00b49a73c Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Thu, 17 Apr 2025 21:20:08 -0700 Subject: handle taiko news data --- rasis.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rasis.py b/rasis.py index 89288df..d28f14c 100644 --- a/rasis.py +++ b/rasis.py @@ -90,6 +90,9 @@ def generate_post_content(post_data: dict) -> str: post_data['headline'] = None game = "O.N.G.E.K.I (JPN)" tags = "#ongeki" + elif "TAIKO" in post_data["identifier"]: + game = "Taiko no Tatsujin" + tags = "#taikonotatsujin" content = f"📰 {game} - {post_data['date']}\n\n" if post_data["type"] is not None: content = content + f"[{post_data['type']}] " -- cgit v1.2.3