A semantic search engine for source code https://bitshift.benkurtovic.com/
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

6 行
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"]]