标签:window nbsp app mic color image http windows col
import requests def xiaodai(): url = ‘http://erge1998.cn/‘ proxies = { ‘http‘: ‘http://149.28.38.64:1081‘, ‘https‘: ‘https://149.28.38.64:1081‘ } headers = { ‘User-agent‘: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36‘ } try: response = requests.get (url, headers=headers, proxies=proxies) print(response.text) except Exception as e: print(e) if __name__ == ‘__main__‘: xiaodai()
打印结果
Python3 requests模块实现模仿浏览器+代理访问
标签:window nbsp app mic color image http windows col
原文地址:https://www.cnblogs.com/laod/p/13098730.html