1
0
mirror of https://github.com/searx/searx synced 2024-11-23 10:20:18 +01:00
searx/utils
Markus Heiser 40843fe95a searx/data/engines_languages.json: sort json file (no content change)
To get meaningfull diffs, the json file has to be sorted.  Before applying any
further content patch, the json file needs a inital sort (without changing any
content).

Sorted by::

  import sys, json

  with open('engines_languages.json') as f:
      j = json.load(f)

  with open('engines_languages.json', 'w') as f:
      json.dump(j, f, indent=2, sort_keys=True)

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2020-03-01 07:56:46 +01:00
..
fabfile.py
fetch_currencies.py
fetch_firefox_version.py
fetch_languages.py searx/data/engines_languages.json: sort json file (no content change) 2020-03-01 07:56:46 +01:00
google_search.py
makefile.include boilerplate: add inital Makefile with run & install targets 2019-11-28 19:54:57 +01:00
makefile.python Makefile: add documentation build targets docs & docs-live 2019-12-12 12:10:32 +01:00
makefile.sphinx makefile.sphinx: fix gh-pages / pull before add commits 2019-12-22 23:28:07 +01:00
standalone_searx.py
update-translations.sh