Using python I want to collect a list of all possible dataflows from Eurostat. I have the following code;
from pandasdmx import Request as rq
estat=rq('ESTAT')
cat_rsp=estat.get(resource_type='dataflow')
cat_msg=cat_rsp.msg
print [i.encode('utf-8') for i in cat_msg.dataflows]
this gives me a list of all possible resource_id's but I want also the descriptors. Is this possible?
Thanks