This commit is contained in:
g1879 2022-02-12 09:19:01 +08:00
parent 60fb789cd9
commit 7449a2b8a3
3 changed files with 8 additions and 8 deletions

View File

@ -11,15 +11,12 @@
参数:
- url目标 url
- go_anyway若目标 url 与当前 url 一致,是否强制跳转
- show_errmsg是否显示和抛出异常默认不抛出连接错误会返回`None`
- retry重试次数与页面对象的设置一致默认 3 次
- interval重试间隔与页面对象的设置一致默认 2 秒
- **kwargs连接参数s 模式专用,与 requests 的使用方法一致
返回:`bool`类型,表示是否连接成功
!> **注意:** <br> 如目标 url 与当前 url 一致,默认是不会跳转的,要强制跳转须把`go_anyway`参数设置为`True`
返回:`bool`类型表示是否连接成功d 模式下如返回`None`表示不确定
## d 模式
@ -61,14 +58,11 @@ page.get(url, headers=headers, cookies=cookies, proxies=proxies)
- url目标 url
- data提交的数据可以是`dict``str`类型
- go_anyway若目标 url 与当前 url 一致,是否强制跳转
- show_errmsg是否显示和抛出异常默认不抛出连接错误会返回 None
- retry重试次数与页面对象的设置一致默认 3 次
- interval重试间隔与页面对象的设置一致默认 2 秒
- **kwargs连接参数s 模式专用
!> **注意:** <br> 如目标 url 与当前 url 一致,默认是不会跳转的,要强制跳转须把`go_anyway`参数设置为`True`
?> **Tips:** <br>
虽然参数里没有`json`参数,但也和 requests 一样可以对`json`参数传值。

View File

@ -1,3 +1,9 @@
# v2.5.1
- `DriverPage`添加`run_cdp()`方法
- `get()``post()`方法删除`go_anyway`参数
- 连接重试默认不打印提示
# v2.5.0
- 用 DownloadKit 库替代原来的`download()`方法,支持多线程并发

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup(
name="DrissionPage",
version="2.5.0",
version="2.5.1",
author="g1879",
author_email="g1879@qq.com",
description="A module that integrates selenium and requests session, encapsulates common page operations.",