feat: 修改report_video.py中的构造函数以使用传入的email和password参数

This commit is contained in:
晓丰 2025-07-03 20:43:48 +08:00
parent 8065378c7e
commit 3ce782220f

View File

@ -93,8 +93,8 @@ class DailymotionClient:
PASSWORD = "ppsIQIYI2018@"
def __init__(self,email, password, headless: bool = None):
self.email = self.EMAIL
self.password = self.PASSWORD
self.email = email
self.password = password
self.headless = headless
self.check_interval = 60 * 60
if self.headless is None: