MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / loads

Method loads

test/dialect/postgresql/test_dialect.py:1571–1574  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

1569 import json
1570
1571 def loads(value):
1572 value = json.loads(value)
1573 value["x"] = value["x"] + "_loads"
1574 return value
1575
1576 def dumps(value):
1577 value = dict(value)

Calls

no outgoing calls

Tested by

no test coverage detected