diff options
| author | Alexandre Flament <alex@al-f.net> | 2020-12-03 10:31:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-03 10:31:44 +0100 |
| commit | 89fbb85d454959be725cd4ca19c36c31d05d3289 (patch) | |
| tree | 7ef098d4630c5416aad58f0d3ce5abb27390423f /docs/dev/engine_overview.rst | |
| parent | 6b5a57882242f24f867b6aa14b79b514720c6d83 (diff) | |
| parent | 64cccae99e625f3ebd879f94797decd0d824608d (diff) | |
Merge pull request #2332 from dalf/metrology-errors
[enh] record exception details per engine
Diffstat (limited to 'docs/dev/engine_overview.rst')
| -rw-r--r-- | docs/dev/engine_overview.rst | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/docs/dev/engine_overview.rst b/docs/dev/engine_overview.rst index 5e3483fd7..0f58af765 100644 --- a/docs/dev/engine_overview.rst +++ b/docs/dev/engine_overview.rst @@ -134,16 +134,18 @@ The function ``def request(query, params):`` always returns the ``params`` variable. Inside searx, the following paramters can be used to specify a search request: -============ =========== ========================================================= -argument type information -============ =========== ========================================================= -url string requested url -method string HTTP request method -headers set HTTP header information -data set HTTP data information (parsed if ``method != 'GET'``) -cookies set HTTP cookies -verify boolean Performing SSL-Validity check -============ =========== ========================================================= +================== =========== ======================================================================== +argument type information +================== =========== ======================================================================== +url string requested url +method string HTTP request method +headers set HTTP header information +data set HTTP data information (parsed if ``method != 'GET'``) +cookies set HTTP cookies +verify boolean Performing SSL-Validity check +max_redirects int maximum redirects, hard limit +soft_max_redirects int maximum redirects, soft limit. Record an error but don't stop the engine +================== =========== ======================================================================== example code |