diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-01-03 10:25:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 10:25:14 +0100 |
| commit | b630c5d7bc0bf5a4281ad402bb32adc7f6ab257f (patch) | |
| tree | 94d59a0810d70d61250e59fbdaac1238c027a34e /searxng_extra | |
| parent | 458b7fb72d9429af346578ba37625f3d45607f03 (diff) | |
| parent | de819bb1f5be4e5f9e26d09ab40585684f284c4a (diff) | |
Merge pull request #666 from return42/mod-doc
[docs] move searxng_extra/ stuff to the developer section.
Diffstat (limited to 'searxng_extra')
| -rwxr-xr-x | searxng_extra/standalone_searx.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/searxng_extra/standalone_searx.py b/searxng_extra/standalone_searx.py index 9ac8c8af2..baf8db0b4 100755 --- a/searxng_extra/standalone_searx.py +++ b/searxng_extra/standalone_searx.py @@ -23,6 +23,14 @@ Example to use this script: $ python3 searxng_extra/standalone_searx.py rain +.. danger:: + + Be warned, using the ``standalone_searx.py`` won't give you privacy! + + On the contrary, this script behaves like a SearXNG server: your IP is + exposed and tracked by all active engines (google, bing, qwant, ... ), with + every query! + Example to run it from python: >>> import importlib @@ -62,6 +70,7 @@ Example to run it from python: }, "suggestions": [...] } + """ # pylint: disable=line-too-long import argparse |