Documentation
README
国内搜索引擎助手
在无法访问 Google 的环境下,通过 curl 调用百度、搜狗、Bing 中国等国内搜索引擎获取信息。
功能概述
- 百度搜索: 中文信息最全的搜索引擎
- 搜狗搜索: 微信公众号文章搜索利器
- Bing 中国: 国际信息 + 国内可访问
- 搜索优化: 帮你构造更精准的搜索关键词
- 结果整理: 将搜索结果整理为结构化信息
搜索命令
百度搜索
curl -s -L "https://www.baidu.com/s?wd=关键词" \
-H "User-Agent: Mozilla/5.0" | head -200
搜狗搜索(含微信文章)
# 网页搜索
curl -s -L "https://www.sogou.com/web?query=关键词" \
-H "User-Agent: Mozilla/5.0"
# 微信文章搜索
curl -s -L "https://weixin.sogou.com/weixin?query=关键词" \
-H "User-Agent: Mozilla/5.0"
Bing 中国搜索
curl -s -L "https://cn.bing.com/search?q=关键词" \
-H "User-Agent: Mozilla/5.0"
使用示例
搜索信息
帮我搜索"DeepSeek V3 发布时间和新特性"
搜微信文章
帮我在搜狗搜索最近关于"AI Agent"的微信公众号文章
对比搜索
分别用百度和Bing搜索"2024年中国GDP",对比结果
This is the opening of the README. Read the full README on GitHub.