-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Labels
Description
I recently upgraded to pandasdmx[cache]>=1.10.0 after the recent Eurostat API change.
At the same time, I improved my code to follow the walkthrough document and use structure-specific data.
However, now I run into a NotImplementedError when accessing Eurostat.
The minimal reproducer is:
import pandasdmx
estat = pandasdmx.Request("ESTAT")
resource_id = "demo_gind"
flow_msg = estat.dataflow(resource_id)
dsd = flow_msg.dataflow[resource_id.upper()].structure
data = estat.data(resource_id=resource_id, dsd=dsd)When I remove the dsd argument from the data call, the code runs without issues.