From 248a25eaee6799bc6f9e158ea065100acadb87bf Mon Sep 17 00:00:00 2001 From: PKC278 <52959804+PKC278@users.noreply.github.com> Date: Sat, 10 Jan 2026 01:39:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(rousi):=20=E7=A7=BB=E9=99=A4=E5=8D=95?= =?UTF-8?q?=E4=BE=8B=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/modules/indexer/spider/rousi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/modules/indexer/spider/rousi.py b/app/modules/indexer/spider/rousi.py index aacbee83..e6dec24b 100644 --- a/app/modules/indexer/spider/rousi.py +++ b/app/modules/indexer/spider/rousi.py @@ -7,11 +7,10 @@ from app.db.systemconfig_oper import SystemConfigOper from app.log import logger from app.schemas import MediaType from app.utils.http import RequestUtils, AsyncRequestUtils -from app.utils.singleton import SingletonClass from app.utils.string import StringUtils -class RousiSpider(metaclass=SingletonClass): +class RousiSpider: """ Rousi.pro API v1 Spider @@ -36,6 +35,7 @@ class RousiSpider(metaclass=SingletonClass): _movie_category = ['movie', 'documentary', 'animation'] _tv_category = ['tv', 'documentary', 'animation', 'variety'] + # API KEY _apikey = None def __init__(self, indexer: dict):