I have two JSON objects. One is python array which is converted using json,dumps() and other contains records from database and is serialized using json serializer. I want t
You can't do it once they're in JSON format - JSON is just text. You need to combine them in Python first:
data = { 'obj1' : obj1, 'obj2' : obj2 } json.dumps(data)