A semantic search engine for source code https://bitshift.benkurtovic.com/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

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