Multi-instance failover, exponential-backoff retry, SQLite cache, batch mode, domain filter, cross-engine dedup, result sorting, CSV export, structured logging, enhanced Markdown conversion, 155 pytest tests, Gitea Actions CI
12 lines
339 B
Python
12 lines
339 B
Python
"""Package-level constants for searxng-cli scripts.
|
|
|
|
Import in sibling scripts with:
|
|
from _config import VERSION, USER_AGENT
|
|
|
|
Retry settings and shared HTTP utilities now live in ``common.py`` so that
|
|
both ``search.py`` and ``fetch.py`` share one consistent implementation.
|
|
"""
|
|
|
|
VERSION = "1.6.0"
|
|
USER_AGENT = f"searxng-cli/{VERSION}"
|