1
1
mirror of https://github.com/mcuadros/ascode synced 2024-11-23 01:11:59 +01:00
ascode/_documentation/runtime/json.md

688 B

title
encoding/json

json provides functions for working with json data

Index

Functions

def json.dumps

json.dumps(obj) string

serialize obj to a JSON string

Arguments
name type description
obj object input object

def json.loads

json.loads(source) object

read a source JSON string to a starlark object

Arguments
name type description
source string input string of json data