searxng_extra/update/
¶
Scripts to update static data in git://searx/data/
update_ahmia_blacklist.py
¶
This script saves Ahmia’s blacklist for onion sites.
Output file: git://searx/data/ahmia_blacklist.txt (CI Update data …).
update_currencies.py
¶
Fetch currencies from git://searx/engines/wikidata.py engine.
Output file: git://searx/data/currencies.json (CI Update data …).
update_engine_descriptions.py
¶
Fetch website description from websites and from git://searx/engines/wikidata.py engine.
Output file: git://searx/data/engine_descriptions.json.
- searxng_extra.update.update_engine_descriptions.get_output()[source]¶
From descriptions[engine][language] = [description, source] To
output[language][engine] = description_and_source
- description_and_source can be:
[description, source]
description (if source = “wikipedia”)
[f”engine:lang”, “ref”] (reference to another existing description)
update_external_bangs.py
¶
Update git://searx/data/external_bangs.json using the duckduckgo bangs (CI Update data …).
https://duckduckgo.com/newbang loads:
a javascript which provides the bang version ( https://duckduckgo.com/bv1.js )
a JSON file which contains the bangs ( https://duckduckgo.com/bang.v260.js for example )
This script loads the javascript, then the bangs.
The javascript URL may change in the future ( for example https://duckduckgo.com/bv2.js ), but most probably it will requires to update RE_BANG_VERSION
- searxng_extra.update.update_external_bangs.merge_when_no_leaf(node)[source]¶
Minimize the number of nodes
A -> B -> C
B
is child ofA
C
is child ofB
If there are no
C
equals to<LEAF_KEY>
, then eachC
are merged intoA
. For example (5 nodes):d -> d -> g -> <LEAF_KEY> (ddg) -> i -> g -> <LEAF_KEY> (dig)
becomes (3 noodes):
d -> dg -> <LEAF_KEY> -> ig -> <LEAF_KEY>
update_firefox_version.py
¶
Fetch firefox useragent signatures
Output file: git://searx/data/useragents.json (CI Update data …).
update_languages.py
¶
This script generates languages.py from intersecting each engine’s supported languages.
Output files: git://searx/data/engines_languages.json and git://searx/languages.py (CI Update data …).
- class searxng_extra.update.update_languages.UnicodeEscape[source]¶
Escape unicode string in
pprint.pformat
update_pygments.py
¶
Update pygments style
Call this script after each upgrade of pygments
update_wikidata_units.py
¶
Fetch units from git://searx/engines/wikidata.py engine.
Output file: git://searx/data/wikidata_units.json (CI Update data …).