python project structure - where do you store the data files (eg json data files)
Hi, I am building a simple class that parses dictionary data where the data themselves are stored on a dictionary.json file.
with open ('dictionary.json' , 'r') as file:
self.game_lexicon = json.load(file)
Under which folder would you save this file on your python project?
Would you create a data folder ?