This commit is contained in:
g1879 2022-01-04 17:16:47 +08:00
parent b0c52d6273
commit 0b90f9e436
2 changed files with 4 additions and 4 deletions

View File

@ -341,7 +341,7 @@ class MixPage(SessionPage, DriverPage, BasePage):
# ----------------重写SessionPage的函数-----------------------
def post(self,
url: str,
data: dict = None,
data: Union[dict, str] = None,
go_anyway: bool = False,
show_errmsg: bool = False,
retry: int = None,
@ -362,7 +362,7 @@ class MixPage(SessionPage, DriverPage, BasePage):
def download(self,
file_url: str,
goal_path: str = None,
goal_path: str,
rename: str = None,
file_exists: str = 'rename',
post_data: Union[str, dict] = None,
@ -374,7 +374,7 @@ class MixPage(SessionPage, DriverPage, BasePage):
"""下载一个文件 \n
d模式下下载前先同步cookies \n
:param file_url: 文件url
:param goal_path: 存放路径默认为ini文件中指定的临时文件夹
:param goal_path: 存放路径
:param rename: 重命名文件可不写扩展名
:param file_exists: 若存在同名文件可选择 'rename', 'overwrite', 'skip' 方式处理
:param post_data: post方式的数据这个参数不为None时自动转成post方式

View File

@ -369,7 +369,7 @@ class SessionPage(BasePage):
if show_msg and file_size:
downloaded_size += 1024
rate = downloaded_size / file_size if downloaded_size < file_size else 1
print('\r {:.0%} '.format(rate), end="")
print('\r{:.0%} '.format(rate), end="")
except Exception as e:
if show_errmsg: