基础篇
框架
解决方案
基础知识
中间件
工作
爬虫
MySQL
Redis
Docker
Kafka
Kubernetes
微服务
分布式
Appearance
使用verify=False关闭证书验证
verify=False
import requests # 发送请求 response = requests.get('https://www.baidu.com', verify = False) response.encoding = 'utf-8' print(response.status_code) # 获取响应内容 content = response.text print(content)