bar.py 137 B

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