mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
微调
This commit is contained in:
parent
b0c52d6273
commit
0b90f9e436
@ -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方式
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user