web-multi-search

Review·Scanned 2/18/2026

This skill searches the web across multiple engines using web_multi_search.py and the async-search-scraper library. It instructs running shell commands like python3 web_multi_search.py and installing code from https://github.com/soxoj/async-search-scraper.git, enabling outbound network activity.

from clawhub.ai·v469928a·12.4 KB·0 installs
Scanned from 0.1.0 at 469928a · Transparency log ↗
$ vett add clawhub.ai/orosha-ai/web-multi-searchReview findings below

web-multi-search

Search niche search engines — without limits

An OpenClaw skill that searches the web across multiple search engines simultaneously using async-search-scraper.

Supported engines

EngineStatus
BingWorking
YahooWorking
StartpageWorking
AolWorking
AskWorking
TorchRequires TOR proxy

Install

python3 -m pip install -r requirements.txt
python3 -m pip install git+https://github.com/soxoj/async-search-scraper.git --no-deps

The library must be installed from the GitHub URL (not PyPI). Use --no-deps because the library pins bs4 which is the wrong package name on PyPI; the actual dependencies (beautifulsoup4, aiohttp, etc.) are already in requirements.txt.

Linux (apt) fallback

If pip isn't available, install the system packages:

sudo apt-get update
sudo apt-get install -y python3-requests python3-aiohttp python3-aiohttp-socks python3-bs4

Usage

# Search all working engines, 3 pages each, JSON output
python3 web_multi_search.py "your query"

# Specific engines, more pages
python3 web_multi_search.py "query" --engines bing,yahoo --pages 5

# CSV output, deduplicate by URL
python3 web_multi_search.py "query" --unique-urls --output csv

# Human-readable text output
python3 web_multi_search.py "query" --output text

# With proxy
python3 web_multi_search.py "query" --proxy socks5://127.0.0.1:9050

Output

JSON (default) writes to stdout, progress/warnings go to stderr:

[
  {
    "engine": "Bing",
    "host": "example.com",
    "link": "https://example.com/page",
    "title": "Page Title",
    "text": "Snippet text..."
  }
]

License

MIT