mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
get()支持ipv6地址;SessionPage设置代理时不再自动删除http://
This commit is contained in:
parent
fb580fda00
commit
8b598bfad4
@ -387,7 +387,7 @@ class BasePage(BaseParser):
|
||||
:param interval: 重试间隔
|
||||
:return: 重试次数和间隔组成的tuple
|
||||
"""
|
||||
self._url = quote(url, safe='/:&?=%;#@+!')
|
||||
self._url = quote(url, safe='/:&?=%;#@+![]')
|
||||
retry = retry if retry is not None else self.retry_times
|
||||
interval = interval if interval is not None else self.retry_interval
|
||||
return retry, interval
|
||||
|
@ -116,16 +116,6 @@ class SessionOptions(object):
|
||||
:param https: https代理地址
|
||||
:return: 返回当前对象
|
||||
"""
|
||||
if isinstance(http, str):
|
||||
if http.startswith('http://'):
|
||||
http = http[7:]
|
||||
elif http.startswith('https://'):
|
||||
http = http[8:]
|
||||
if isinstance(https, str):
|
||||
if https.startswith('http://'):
|
||||
https = https[7:]
|
||||
elif http.startswith('https://'):
|
||||
https = https[8:]
|
||||
self._sets('proxies', {'http': http, 'https': https})
|
||||
return self
|
||||
|
||||
|
@ -87,10 +87,7 @@ class NetworkListener(object):
|
||||
|
||||
self._set_callback_func()
|
||||
|
||||
if asyn:
|
||||
self._total_count = count
|
||||
else:
|
||||
self._total_count = len(self._targets) if not count else count
|
||||
self._total_count = len(self._targets) if not count else count
|
||||
|
||||
Thread(target=self._wait_to_stop).start()
|
||||
|
||||
|
@ -26,8 +26,6 @@ class NetworkListener(object):
|
||||
def set_targets(self, targets: Union[str, list, tuple, set, None] = None, is_regex: bool = False,
|
||||
count: int = None, method: Union[str, list, tuple, set] = None) -> None: ...
|
||||
|
||||
def start(self) -> None: ...
|
||||
|
||||
def stop(self) -> None: ...
|
||||
|
||||
@property
|
||||
|
@ -372,16 +372,6 @@ class SessionPageSetter(object):
|
||||
:param https: https代理地址
|
||||
:return: None
|
||||
"""
|
||||
if isinstance(http, str):
|
||||
if http.startswith('http://'):
|
||||
http = http[7:]
|
||||
elif http.startswith('https://'):
|
||||
http = http[8:]
|
||||
if isinstance(https, str):
|
||||
if https.startswith('http://'):
|
||||
https = https[7:]
|
||||
elif https.startswith('https://'):
|
||||
https = https[8:]
|
||||
self._page.session.proxies = {'http': http, 'https': https}
|
||||
|
||||
def auth(self, auth):
|
||||
|
Loading…
x
Reference in New Issue
Block a user