get()支持ipv6地址;SessionPage设置代理时不再自动删除http://

This commit is contained in:
g1879 2023-06-06 17:36:34 +08:00
parent fb580fda00
commit 8b598bfad4
5 changed files with 2 additions and 27 deletions

View File

@ -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

View File

@ -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

View File

@ -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()

View File

@ -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

View File

@ -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):