I am writing a django server api,where I have two request to fetch data from two other apis.
list1 = requests.get(f"www.test.com/list/")
list2 = requests.get(f"www.test.com/list2/")
this two lists have json as response.I want to merge this two and put it in a json object like below
{"list1":list1,"list2":list2}
and return the result