aboutsummaryrefslogtreecommitdiff
path: root/demo1/bar.py
blob: 3a0992e50aa6084aa72a52945f1e1246b72d2cc0 (plain) (blame)
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"])