From 1ff632e147cf48a94b481820ed0a58a5314d3ae7 Mon Sep 17 00:00:00 2001 From: g1879 Date: Mon, 30 Aug 2021 13:46:42 +0800 Subject: [PATCH 1/2] 1.11.0 --- DrissionPage/configs.ini | 16 ++++++++-------- setup.py | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/DrissionPage/configs.ini b/DrissionPage/configs.ini index 21eee64..1185031 100644 --- a/DrissionPage/configs.ini +++ b/DrissionPage/configs.ini @@ -1,19 +1,19 @@ [paths] -chromedriver_path = -tmp_path = +chromedriver_path = D:\python\projects\DrissionPage\DrissionPage\chromedriver.exe +tmp_path = D:\python\projects\DrissionPage\DrissionPage\tmp [chrome_options] debugger_address = -binary_location = +binary_location = d:\python\google chrome\chrome\chrome.exe arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars'] extensions = [] experimental_options = {'prefs': {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}, 'plugins.plugins_list': [{'enabled': False, 'name': 'Chrome PDF Viewer'}]}, 'useAutomationExtension': False, 'excludeSwitches': ['enable-automation']} [session_options] headers = { - "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8", - "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", - "Connection": "keep-alive", - "Accept-Charset": "GB2312,utf-8;q=0.7,*;q=0.7" - } + "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8", + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", + "Connection": "keep-alive", + "Accept-Charset": "GB2312,utf-8;q=0.7,*;q=0.7" + } diff --git a/setup.py b/setup.py index a2e44c3..c64fa4d 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="1.11.0 beta", + version="1.11.0", author="g1879", author_email="g1879@qq.com", description="A module that integrates selenium and requests session, encapsulates common page operations.", From 38b7a505adda9237e7dde36952b0ee6ae7b059e1 Mon Sep 17 00:00:00 2001 From: g1879 Date: Tue, 14 Sep 2021 14:26:58 +0800 Subject: [PATCH 2/2] =?UTF-8?q?SessionOptions=E5=A2=9E=E5=8A=A0set=5Fheade?= =?UTF-8?q?rs()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/config.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/DrissionPage/config.py b/DrissionPage/config.py index 06c1f6a..971984b 100644 --- a/DrissionPage/config.py +++ b/DrissionPage/config.py @@ -8,10 +8,11 @@ from configparser import RawConfigParser, NoSectionError, NoOptionError from http.cookiejar import Cookie from pathlib import Path +from typing import Any, Union + from requests.cookies import RequestsCookieJar from selenium import webdriver from selenium.webdriver.chrome.options import Options -from typing import Any, Union class OptionsManager(object): @@ -357,6 +358,14 @@ class SessionOptions(object): """ self._max_redirects = max_redirects + def set_headers(self, headers: dict): + """设置headers参数 \n + :param headers: 参数值 + :return: 返回当前对象 + """ + self._headers = {key.lower(): headers[key] for key in headers} + return self + def set_a_header(self, attr: str, value: str): """设置headers中一个项 \n :param attr: 设置名称