Starlark code:
as_json = json.encode('{"key1": 1, "key2": 2}')
print(as_json)
When you run this with starlark_go it works as expected. It prints:
However, if you do the same with python-starlark-go, then you get
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
starlark_go.errors.ResolveError: <expr>:1:11: undefined: json
Minimal reproducer in Python:
from starlark_go import Starlark
s = Starlark()
s.exec('''as_json = json.encode('{"key1": 1, "key2": 2}')''')
s.eval("as_json")
Starlark code:
When you run this with starlark_go it works as expected. It prints:
{"key1": 1, "key2": 2}However, if you do the same with python-starlark-go, then you get
Minimal reproducer in Python: