Python3 本地请求https
Python3+PyCharm 本地请求https需要注意全局代理设置import requestsfrom urllib.request import ProxyHandler, build_openerproxies = {“http”: “http://127.0.0.1:1080”,“https”: “https://127.0.0.1:1080”, }proxy_handler = ProxyHandler(proxies)opener = build_opener(proxy_h