MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / dejsonize

Function dejsonize

lib/core/convert.py:131–139  ·  view source on GitHub ↗

Returns JSON deserialized data >>> dejsonize('{\\n "foo": "bar"\\n}') == {u'foo': u'bar'} True

(data)

Source from the content-addressed store, hash-verified

129 return json.dumps(data, sort_keys=False, indent=4)
130
131def dejsonize(data):
132 """
133 Returns JSON deserialized data
134
135 >>> dejsonize('{\\n "foo": "bar"\\n}') == {u'foo': u'bar'}
136 True
137 """
138
139 return json.loads(data)
140
141def decodeHex(value, binary=True):
142 """

Callers 4

writeMethod · 0.90
task_listFunction · 0.90
scan_dataFunction · 0.90
clientFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…