diff --git a/DrissionPage/__init__.py b/DrissionPage/__init__.py index 3a5cb9f..859c24c 100644 --- a/DrissionPage/__init__.py +++ b/DrissionPage/__init__.py @@ -13,4 +13,4 @@ from ._configs.chromium_options import ChromiumOptions from ._configs.session_options import SessionOptions __all__ = ['ChromiumPage', 'ChromiumOptions', 'SessionOptions', 'SessionPage', 'WebPage', '__version__'] -__version__ = '4.0.0b32' +__version__ = '4.0.0b33' diff --git a/DrissionPage/_base/browser.py b/DrissionPage/_base/browser.py index 2d12911..ab17493 100644 --- a/DrissionPage/_base/browser.py +++ b/DrissionPage/_base/browser.py @@ -3,6 +3,8 @@ @Author : g1879 @Contact : g1879@qq.com """ +from pathlib import Path +from shutil import rmtree from time import sleep, perf_counter from .driver import BrowserDriver, Driver @@ -196,3 +198,14 @@ class Browser(object): def _on_quit(self): Browser.BROWSERS.pop(self.id, None) + if self.page._chromium_options.is_auto_port and self.page._chromium_options.user_data_path: + path = Path(self.page._chromium_options.user_data_path) + end_time = perf_counter() + 7 + while perf_counter() < end_time: + if not path.exists(): + break + try: + rmtree(path) + break + except (PermissionError, FileNotFoundError): + pass diff --git a/DrissionPage/_base/driver.py b/DrissionPage/_base/driver.py index 3a86da4..809c747 100644 --- a/DrissionPage/_base/driver.py +++ b/DrissionPage/_base/driver.py @@ -59,15 +59,15 @@ class Driver(object): message['id'] = ws_id message_json = dumps(message) - if self._debug: - if self._debug is True or (isinstance(self._debug, str) and - message.get('method', '').startswith(self._debug)): - print(f'发> {message_json}') - elif isinstance(self._debug, (list, tuple, set)): - for m in self._debug: - if message.get('method', '').startswith(m): - print(f'发> {message_json}') - break + # if self._debug: + # if self._debug is True or (isinstance(self._debug, str) and + # message.get('method', '').startswith(self._debug)): + # print(f'发> {message_json}') + # elif isinstance(self._debug, (list, tuple, set)): + # for m in self._debug: + # if message.get('method', '').startswith(m): + # print(f'发> {message_json}') + # break end_time = perf_counter() + timeout if timeout is not None else None self.method_results[ws_id] = Queue() @@ -113,15 +113,15 @@ class Driver(object): self._stop() return - if self._debug: - if self._debug is True or 'id' in msg or (isinstance(self._debug, str) - and msg.get('method', '').startswith(self._debug)): - print(f'<收 {msg_json}') - elif isinstance(self._debug, (list, tuple, set)): - for m in self._debug: - if msg.get('method', '').startswith(m): - print(f'<收 {msg_json}') - break + # if self._debug: + # if self._debug is True or 'id' in msg or (isinstance(self._debug, str) + # and msg.get('method', '').startswith(self._debug)): + # print(f'<收 {msg_json}') + # elif isinstance(self._debug, (list, tuple, set)): + # for m in self._debug: + # if msg.get('method', '').startswith(m): + # print(f'<收 {msg_json}') + # break if 'method' in msg: if msg['method'].startswith('Page.javascriptDialog'): @@ -135,8 +135,8 @@ class Driver(object): elif msg.get('id') in self.method_results: self.method_results[msg['id']].put(msg) - elif self._debug: - print(f'未知信息:{msg}') + # elif self._debug: + # print(f'未知信息:{msg}') def _handle_event_loop(self): """当接收到浏览器信息,执行已绑定的方法""" @@ -266,6 +266,6 @@ class BrowserDriver(Driver): r.close() return r - def stop(self): - super().stop() + def _stop(self): + super()._stop() self.browser._on_quit() diff --git a/DrissionPage/_configs/chromium_options.py b/DrissionPage/_configs/chromium_options.py index d05d09c..342008e 100644 --- a/DrissionPage/_configs/chromium_options.py +++ b/DrissionPage/_configs/chromium_options.py @@ -106,6 +106,11 @@ class ChromiumOptions(object): """返回用户数据文件夹路径""" return self._user_data_path + @property + def tmp_path(self): + """返回临时文件夹路径""" + return self._tmp_path + @property def user(self): """返回用户配置文件夹名称""" @@ -161,6 +166,11 @@ class ChromiumOptions(object): """返回是否只接管现有浏览器方式""" return self._existing_only + @property + def is_auto_port(self): + """返回是否使用自动端口和用户文件""" + return self._auto_port + @property def retry_times(self): """返回连接失败时的重试次数""" @@ -485,14 +495,13 @@ class ChromiumOptions(object): def auto_port(self, on_off=True, tmp_path=None): """自动获取可用端口 :param on_off: 是否开启自动获取端口号 - :param tmp_path: 临时文件保存路径,为None时保存到系统临时文件夹 + :param tmp_path: 临时文件保存路径,为None时保存到系统临时文件夹,on_off为False时此参数无效 :return: 当前对象 """ if on_off: - tmp_path = tmp_path or self._tmp_path - port, path = PortFinder(tmp_path).get_port() - self.set_paths(local_port=port, user_data_path=path) self._auto_port = True + if tmp_path: + self._tmp_path = str(tmp_path) else: self._auto_port = False return self @@ -618,7 +627,8 @@ class PortFinder(object): """ :param path: 临时文件保存路径,为None时使用系统临时文件夹 """ - self.tmp_dir = Path(path) if path else Path(gettempdir()) / 'DrissionPage' / 'UserTempFolder' + tmp = Path(path) if path else Path(gettempdir()) / 'DrissionPage' + self.tmp_dir = tmp / 'UserTempFolder' self.tmp_dir.mkdir(parents=True, exist_ok=True) if not PortFinder.used_port: clean_folder(self.tmp_dir) diff --git a/DrissionPage/_configs/chromium_options.pyi b/DrissionPage/_configs/chromium_options.pyi index 201a107..8fd4ab9 100644 --- a/DrissionPage/_configs/chromium_options.pyi +++ b/DrissionPage/_configs/chromium_options.pyi @@ -5,7 +5,7 @@ """ from pathlib import Path from threading import Lock -from typing import Union, Tuple, Any, Literal +from typing import Union, Tuple, Any, Literal, Optional class ChromiumOptions(object): @@ -43,6 +43,9 @@ class ChromiumOptions(object): @property def user_data_path(self) -> str: ... + @property + def tmp_path(self) -> Optional[str]: ... + @property def user(self) -> str: ... @@ -76,6 +79,9 @@ class ChromiumOptions(object): @property def is_existing_only(self) -> bool: ... + @property + def is_auto_port(self) -> bool: ... + @property def retry_times(self) -> int: ... diff --git a/DrissionPage/_pages/chromium_frame.py b/DrissionPage/_pages/chromium_frame.py index 838096f..290b9a5 100644 --- a/DrissionPage/_pages/chromium_frame.py +++ b/DrissionPage/_pages/chromium_frame.py @@ -105,7 +105,7 @@ class ChromiumFrame(ChromiumBase): def _reload(self): """重新获取document""" self._is_loading = True - d_debug = self.driver._debug + # d_debug = self.driver._debug self._reloading = True self._doc_got = False @@ -131,7 +131,7 @@ class ChromiumFrame(ChromiumBase): if self._listener: self._listener._to_target(self._target_page.tab_id, self.address, self) super().__init__(self.address, self._target_page.tab_id, self._target_page.timeout) - self.driver._debug = d_debug + # self.driver._debug = d_debug else: self._is_diff_domain = True @@ -154,7 +154,8 @@ class ChromiumFrame(ChromiumBase): # print(f'获取doc失败,重试 {e}') # else: # raise GetDocumentError - self.driver._debug = d_debug + + # self.driver._debug = d_debug self._is_loading = False self._reloading = False diff --git a/DrissionPage/_pages/chromium_page.py b/DrissionPage/_pages/chromium_page.py index 6a3de65..ff33dfd 100644 --- a/DrissionPage/_pages/chromium_page.py +++ b/DrissionPage/_pages/chromium_page.py @@ -10,7 +10,7 @@ from requests import get from .._base.browser import Browser from .._functions.browser import connect_browser -from .._configs.chromium_options import ChromiumOptions +from .._configs.chromium_options import ChromiumOptions, PortFinder from .._pages.chromium_base import ChromiumBase, get_mhtml, Timeout from .._pages.chromium_tab import ChromiumTab from .._units.setter import ChromiumPageSetter @@ -44,6 +44,11 @@ class ChromiumPage(ChromiumBase): self._chromium_options = ChromiumOptions(addr_or_opts) elif isinstance(addr_or_opts, ChromiumOptions): + if addr_or_opts.is_auto_port: + port, path = PortFinder(addr_or_opts.tmp_path).get_port() + addr_or_opts.set_address(f'127.0.0.1:{port}') + addr_or_opts.set_user_data_path(path) + addr_or_opts.auto_port() self._chromium_options = addr_or_opts elif isinstance(addr_or_opts, str): diff --git a/DrissionPage/_units/actions.py b/DrissionPage/_units/actions.py index 11c9ef7..7f47b11 100644 --- a/DrissionPage/_units/actions.py +++ b/DrissionPage/_units/actions.py @@ -283,7 +283,6 @@ class Actions: if character in ('\ue009', '\ue008', '\ue00a', '\ue03d'): modifiers.append(character) else: - sleep(.01) self.key_up(character) for m in modifiers: self.key_up(m) diff --git a/setup.py b/setup.py index 102fcd8..424413e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh: setup( name="DrissionPage", - version="4.0.0b32", + version="4.0.0b33", author="g1879", author_email="g1879@qq.com", description="Python based web automation tool. It can control the browser and send and receive data packets.",