From f97a7c80dee11e8e30525ef025b44e1961b3fc95 Mon Sep 17 00:00:00 2001 From: g1879 Date: Fri, 11 Aug 2023 14:19:01 +0800 Subject: [PATCH] =?UTF-8?q?BasePage=E8=A1=A5=E4=B8=8Auser=5Fagent=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/base.py | 4 ++++ DrissionPage/base.pyi | 3 +++ 2 files changed, 7 insertions(+) diff --git a/DrissionPage/base.py b/DrissionPage/base.py index 54b9a7c..7923bb2 100644 --- a/DrissionPage/base.py +++ b/DrissionPage/base.py @@ -428,6 +428,10 @@ class BasePage(BaseParser): def json(self): return + @property + def user_agent(self): + pass + @abstractmethod def get_cookies(self, as_dict=False, all_info=False): return {} diff --git a/DrissionPage/base.pyi b/DrissionPage/base.pyi index eda767f..d24d305 100644 --- a/DrissionPage/base.pyi +++ b/DrissionPage/base.pyi @@ -195,6 +195,9 @@ class BasePage(BaseParser): @property def json(self) -> dict: ... + @property + def user_agent(self) -> str: ... + @abstractmethod def get_cookies(self, as_dict: bool = False, all_info: bool = False) -> Union[list, dict]: ...