A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6 lines
175 B

  1. import json
  2. from os import path
  3. with open(path.join(path.dirname(__file__), "languages.json")) as lang_json:
  4. LANGS = [lang for lang in json.load(lang_json)["languages"]]