38171fa
1
2
3
4
5
6
7
8
9
10
11
12
13
import os import json from django.conf import settings def get_mflist_data(): with open( os.path.join(settings.BASE_DIR, "tests/data/morningstar_mf_list.json") ) as f: data = json.load(f) return data