手机python神器qpython ,运行requests访问https网站时会报错!!!

 使用qpython时,若是运行requests访问https网址就会报错!!

复制下面代码,在qpython上运行即可解决!

# -*- coding: utf-8 -*-

import os
import re
import sys


site_path = [i for i in sys.path if "site-packages" in i]
ssl_path = 'are you ok'
for i in site_path:
    if os.path.exists(i+'/urllib3'):
        ssl_path = i+'/urllib3/util/ssl_.py'

if sys.version[0] == "2":
    print("it's run in python3")
    exit()
if not os.path.exists(ssl_path):
    print("please pip install urllib3 and run again")
    exit()

with open(ssl_path, "r") as f:
    text = f.read()

ciphers = re.findall('DEFAULT_CIPHERS.*?\].*?\)', text, re.S)

if ciphers:
    new_text = text.replace(ciphers[0], 'DEFAULT_CIPHERS = "TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-256-GCM-SHA384:ECDHE:!COMPLEMENTOFDEFAULT"')
    with open(ssl_path, "w") as f:
        f.write(new_text)
    print('Repair success')
else:
    print("Repair failed")

 

你可能感兴趣的:(手机python)