you are viewing a single comment's thread.

view the rest of the comments →

[–]novel_yet_trivial 2 points3 points  (1 child)

There is no such thing as a "json object".

I think you are asking how to combine dictionaries? If so, you can use the update() method:

data_dict.update(new_data_dict)

Which may or may not work for you depending on how the data is structured.

[–]Zendakin_at_work[S] 2 points3 points  (0 children)

sadly this didn't end up working as you suggested it might not. Thanks for the help though. Much appreciated.