Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01C7rEog2rS7uKNMb1CvpVjr
28 lines
876 B
Markdown
28 lines
876 B
Markdown
# web.py smoke test (webtools box)
|
|
|
|
Manual checks against SearXNG (:8080) and Firecrawl (:3002) on
|
|
`10.10.20.37`. Not run in CI — exercises live services.
|
|
|
|
## Search
|
|
```
|
|
./.venv/bin/python web.py search "angelic hierarchy pseudo-dionysius" --max 3 --json
|
|
```
|
|
Expect a JSON array of hits with non-empty `url`s.
|
|
|
|
**SearXNG JSON note:** if you get an empty list or a `format` error, JSON
|
|
output is disabled. Enable in the box's `searxng/settings.yml`
|
|
(`search: formats: [html, json]`) and restart.
|
|
|
|
## Scrape
|
|
```
|
|
./.venv/bin/python web.py scrape https://en.wikipedia.org/wiki/Christian_angelic_hierarchy --out /tmp/smoke.md
|
|
```
|
|
Expect `wrote /tmp/smoke.md` and real markdown in the file.
|
|
|
|
## Env overrides
|
|
Point at a different box without code changes:
|
|
```
|
|
WEBTOOLS_HOST=192.168.1.50 SEARXNG_PORT=8080 FIRECRAWL_PORT=3002 \
|
|
./.venv/bin/python web.py search "test" --json
|
|
```
|