I have a function in Python, defined in an API from my broker, "getCalendar" which recieves a list of news announcements and expected impact on market. how can I transform this list which arrives as a JSON object to a pandas dataframe, so I can analyze it?
P.S.: the API is a connection to a server, which is first established and only then can data be streamed from there, so using url address and converting that to pandas dataframe is not possible. Thanks in advance for your help.