https://github.com/deedy5/ddgs
https://blog.csdn.net/a131529/article/details/145667129
1. 安装
# python > 3.7
pip install -U ddgs
2. 使用
# 创建实例
from ddgs import DDGS
# 1. 裸装上阵:零配置也能跑
ddg = DDGS()
# 2. 想穿“马甲”?一行搞定代理 + 伪装
ddg = DDGS(
proxy="socks5://127.0.0.1:1080", # 翻墙 or 内网转发
)