1 2 3 4 5 6 7
from . import get_resource import json def run(): j = json.loads(get_resource("stuff.json")) print(repr(j)) print(j["foo"])