I'm attempting to retrieve data from ECB using the sdmx library in Python.
The code I currently have successfully fetches the values of the data:
data = sdmx.Request('ECB').data( resource_id='EXR', key='D.E01.EUR.EN00.A' ).data[0]
However, I'm encountering difficulties obtaining information about the specific statistic I'm interested in. Specifically, I need to retrieve the title of the statistic and when it was last updated from the ECB's data service. How can I modify my code to retrieve this additional information?
Thank you.
Update:
smdx.to_pandas(data, attribute = 'dsgo')
This gives me the Title, but I still don't know how to get the LastUpdated variable.