zymon
zymon
`import pandasdmx as sdmx` `client=sdmx.Request('ESTAT')` `flow=client.dataflow('GOV_10Q_GGNFA', params={'detail': 'referencepartial'})` `print(f'codelist: {flow.codelist}')` **Output:** codelist: {'GEO': , 'S_ADJ': , 'UNIT': , 'SECTOR': , 'FREQ': , 'OBS_FLAG': , 'NA_ITEM': } GEO: has no items,...
`import pandasdmx as sdmx` `client = sdmx.Request('ECB')` `client.contentconstraint('BSI_CONSTRAINTS')` **Output:** DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): sdw-wsrest.ecb.europa.eu:443 DEBUG:urllib3.connectionpool:https://sdw-wsrest.ecb.europa.eu:443 "GET /service/contentconstraint/ECB/BSI_CONSTRAINTS/latest HTTP/1.1" 200 None --- SS without DSD --- {1: False} --- ---...
`import pandasdmx as sdmx` `imf = sdmx.Request("IMF")` `df=imf.dataflow("1PI")` **Output:** DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): sdmxcentral.imf.org:443 DEBUG:urllib3.connectionpool:https://sdmxcentral.imf.org:443 "GET /ws/public/sdmxapi/rest/dataflow/IMF/1PI/latest?references=all HTTP/1.1" 200 None --- SS without DSD --- {1: False} --- ---...
Hello, Here's simple code snippet to reproduce the problem: `import sdmx` `import logging` `logging.basicConfig()` `logging.root.setLevel(logging.NOTSET)` `client = sdmx.Client('ECB')` `c=client.contentconstraint('BSI_CONSTRAINTS')` Result: ``` > Traceback (most recent call last): File "r:\SharedLocal\ECFIN-DEV\fastop\python\.venv\Lib\site-packages\sdmx\reader\xml.py", line...
Here's short example: ```py import sdmx imf = sdmx.Client("IMF") imf.dataflow("1PI") ``` Fails with error: ``` --- SS without DSD --- {1: False} --- --- {2: id: 'IREF437615' prepared: '2022-10-07T11:56:09+00:00' receiver:...
If the DEBUG env variable contains multiple items separated with spaces, then only the first one is used. For example: export DEBUG="APP_X APP_Y APP_Z" Then, only the APP_X is enabled...