multi-search-engine

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Multi Search Engine v2.0.1

多搜索引擎集成工具 v2.0.1

Integration of 17 search engines for web crawling without API keys.
集成17个搜索引擎,无需API密钥即可进行网页爬取。

Search Engines

搜索引擎

Domestic (8)

国内(8个)

  • Baidu:
    https://www.baidu.com/s?wd={keyword}
  • Bing CN:
    https://cn.bing.com/search?q={keyword}&ensearch=0
  • Bing INT:
    https://cn.bing.com/search?q={keyword}&ensearch=1
  • 360:
    https://www.so.com/s?q={keyword}
  • Sogou:
    https://sogou.com/web?query={keyword}
  • WeChat:
    https://wx.sogou.com/weixin?type=2&query={keyword}
  • Toutiao:
    https://so.toutiao.com/search?keyword={keyword}
  • Jisilu:
    https://www.jisilu.cn/explore/?keyword={keyword}
  • 百度:
    https://www.baidu.com/s?wd={keyword}
  • 必应中国版:
    https://cn.bing.com/search?q={keyword}&ensearch=0
  • 必应国际版:
    https://cn.bing.com/search?q={keyword}&ensearch=1
  • 360搜索:
    https://www.so.com/s?q={keyword}
  • 搜狗搜索:
    https://sogou.com/web?query={keyword}
  • 微信搜索:
    https://wx.sogou.com/weixin?type=2&query={keyword}
  • 头条搜索:
    https://so.toutiao.com/search?keyword={keyword}
  • 集思录搜索:
    https://www.jisilu.cn/explore/?keyword={keyword}

International (9)

国际(9个)

  • Google:
    https://www.google.com/search?q={keyword}
  • Google HK:
    https://www.google.com.hk/search?q={keyword}
  • DuckDuckGo:
    https://duckduckgo.com/html/?q={keyword}
  • Yahoo:
    https://search.yahoo.com/search?p={keyword}
  • Startpage:
    https://www.startpage.com/sp/search?query={keyword}
  • Brave:
    https://search.brave.com/search?q={keyword}
  • Ecosia:
    https://www.ecosia.org/search?q={keyword}
  • Qwant:
    https://www.qwant.com/?q={keyword}
  • WolframAlpha:
    https://www.wolframalpha.com/input?i={keyword}
  • Google:
    https://www.google.com/search?q={keyword}
  • Google香港:
    https://www.google.com.hk/search?q={keyword}
  • DuckDuckGo:
    https://duckduckgo.com/html/?q={keyword}
  • Yahoo搜索:
    https://search.yahoo.com/search?p={keyword}
  • Startpage:
    https://www.startpage.com/sp/search?query={keyword}
  • Brave搜索:
    https://search.brave.com/search?q={keyword}
  • Ecosia:
    https://www.ecosia.org/search?q={keyword}
  • Qwant:
    https://www.qwant.com/?q={keyword}
  • WolframAlpha:
    https://www.wolframalpha.com/input?i={keyword}

Quick Examples

快速示例

javascript
// Basic search
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})

// Site-specific
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})

// File type
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})

// Time filter (past week)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})

// Privacy search
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})

// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})

// Knowledge calculation
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
javascript
// Basic search
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})

// Site-specific
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})

// File type
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})

// Time filter (past week)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})

// Privacy search
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})

// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})

// Knowledge calculation
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})

Advanced Operators

高级搜索运算符

OperatorExampleDescription
site:
site:github.com python
Search within site
filetype:
filetype:pdf report
Specific file type
""
"machine learning"
Exact match
-
python -snake
Exclude term
OR
cat OR dog
Either term
运算符示例说明
site:
site:github.com python
在指定站点内搜索
filetype:
filetype:pdf report
搜索特定文件类型
""
"machine learning"
精确匹配关键词
-
python -snake
排除指定关键词
OR
cat OR dog
匹配任一关键词

Time Filters

时间筛选参数

ParameterDescription
tbs=qdr:h
Past hour
tbs=qdr:d
Past day
tbs=qdr:w
Past week
tbs=qdr:m
Past month
tbs=qdr:y
Past year
参数说明
tbs=qdr:h
过去1小时内的内容
tbs=qdr:d
过去24小时内的内容
tbs=qdr:w
过去一周内的内容
tbs=qdr:m
过去一个月内的内容
tbs=qdr:y
过去一年内的内容

Privacy Engines

隐私搜索引擎

  • DuckDuckGo: No tracking
  • Startpage: Google results + privacy
  • Brave: Independent index
  • Qwant: EU GDPR compliant
  • DuckDuckGo: 无用户追踪
  • Startpage: 整合Google搜索结果并保障隐私
  • Brave: 独立索引的搜索引擎
  • Qwant: 符合欧盟GDPR合规要求

Bangs Shortcuts (DuckDuckGo)

DuckDuckGo快捷指令(Bangs)

BangDestination
!g
Google
!gh
GitHub
!so
Stack Overflow
!w
Wikipedia
!yt
YouTube
快捷指令跳转目标
!g
Google搜索
!gh
GitHub
!so
Stack Overflow
!w
Wikipedia
!yt
YouTube

WolframAlpha Queries

WolframAlpha 知识查询示例

  • Math:
    integrate x^2 dx
  • Conversion:
    100 USD to CNY
  • Stocks:
    AAPL stock
  • Weather:
    weather in Beijing
  • 数学计算:
    integrate x^2 dx
  • 货币转换:
    100 USD to CNY
  • 股票查询:
    AAPL stock
  • 天气查询:
    weather in Beijing

Documentation

文档说明

  • references/advanced-search.md
    - Domestic search guide
  • references/international-search.md
    - International search guide
  • CHANGELOG.md
    - Version history
  • references/advanced-search.md
    - 国内搜索引擎使用指南
  • references/international-search.md
    - 国际搜索引擎使用指南
  • CHANGELOG.md
    - 版本历史记录

License

许可证

MIT
MIT