API reference#
Some parts of the API are described on separate pages:
sdmx.source
on the page Data sources.
See also the Implementation notes.
Top-level methods and classes#
|
Client for a SDMX REST web service. |
|
Enumeration of SDMX-REST API resources. |
|
Add a new data source. |
Return a sorted list of valid source IDs. |
|
Top-level logger. |
|
|
Load a SDMX-ML or SDMX-JSON message from a file or file-like object. |
|
Request a URL directly. |
|
Convert an SDMX obj to SDMX-CSV. |
|
Convert an SDMX obj to |
|
Convert an SDMX obj to SDMX-ML. |
- class sdmx.Client(source=None, log_level=None, **session_opts)[source]#
Client for a SDMX REST web service.
- Parameters:
source (str or source.Source) – Identifier of a data source. If a string, must be one of the known sources in
list_sources()
.log_level (int) –
Override the package-wide logger with one of the standard logging levels.
Deprecated since version 2.0: Will be removed in
sdmx
version 3.0.**session_opts – Additional keyword arguments are passed to
Session
.
- get(resource_type=None, resource_id=None, tofile=None, use_cache=False, dry_run=False, **kwargs)[source]#
Retrieve SDMX data or metadata.
(Meta)data is retrieved from the
source
of the current Client. The item(s) to retrieve can be specified in one of two ways:resource_type, resource_id: These give the type (see
Resource
) and, optionally, ID of the item(s). If the resource_id is not given, all items of the given type are retrieved.a resource object, i.e. a
MaintainableArtefact
: resource_type and resource_id are determined by the object’s class andid
attribute, respectively.
Data is retrieved with resource_type=’data’. In this case, the optional keyword argument key can be used to constrain the data that is retrieved. Examples of the formats for key:
{'GEO': ['EL', 'ES', 'IE']}
:dict
with dimension name(s) mapped to an iterable of allowable values.{'GEO': 'EL+ES+IE'}
:dict
with dimension name(s) mapped to strings joining allowable values with ‘+’, the logical ‘or’ operator for SDMX web services.'....EL+ES+IE'
:str
in which ordered dimension values (some empty,''
) are joined with'.'
. Using this form requires knowledge of the dimension order in the target data resource_id; in the example, dimension ‘GEO’ is the fifth of five dimensions:'.'.join(['', '', '', '', 'EL+ES+IE'])
.CubeRegion.to_query_string()
can also be used to create properly formatted strings.
For formats 1 and 2, but not 3, the key argument is validated against the relevant
DSD
, either given with the dsd keyword argument, or retrieved from the web service before the main query.For the optional param keyword argument, some useful parameters are:
‘startperiod’, ‘endperiod’: restrict the time range of data to retrieve.
‘references’: control which item(s) related to a metadata resource are retrieved, e.g. references=’parentsandsiblings’.
- Parameters:
resource_type (str or
Resource
, optional) – Type of resource to retrieve.resource_id (str, optional) – ID of the resource to retrieve.
tofile (str or
PathLike
or file-like object, optional) – File path or file-like to write SDMX data as it is received.use_cache (bool, optional) – If
True
, return a previously retrievedMessage
fromcache
, or update the cache with a newly-retrieved Message.dry_run (bool, optional) – If
True
, prepare and return arequests.Request
object, but do not execute the query. The prepared URL and headers can be examined by inspecting the returned object.**kwargs – Other, optional parameters (below).
dsd (
DataStructureDefinition
) – Existing object used to validate the key argument. If not provided, an additional query executed to retrieve a DSD in order to validate the key.force (bool) – If
True
, execute the query even if thesource
does not support queries for the given resource_type. Default:False
.headers (dict) – HTTP headers. Given headers will overwrite instance-wide headers passed to the constructor. Default:
None
to use the default headers of thesource
.key (str or dict) – For queries with resource_type=’data’.
str
values are not validated;dict
values are validated usingmake_constraint()
.params (dict) – Query parameters. The SDMX REST web service guidelines describe parameters and allowable values for different queries. params is not validated before the query is executed.
provider (str) –
ID of the agency providing the data or metadata. Default: ID of the
source
agency.An SDMX web service is a ‘data source’ operated by a specific, ‘source’ agency. A web service may host data or metadata originally published by one or more ‘provider’ agencies. Many sources are also providers. Other agencies—e.g. the SDMX Global Registry—simply aggregate (meta)data from other providers, but do not provide any (meta)data themselves.
resource (
MaintainableArtefact
subclass) – Object to retrieve. If given, resource_type and resource_id are ignored.version (str) –
version>
of a resource to retrieve. Default: the keyword ‘latest’.
- Returns:
The requested SDMX message or, if dry_run is
True
, the prepared request object.- Return type:
- Raises:
NotImplementedError – If the
source
does not support the given resource_type and force is notTrue
.
- preview_data(flow_id, key={})[source]#
Return a preview of data.
For the Dataflow flow_id, return all series keys matching key. Uses a feature supported by some data providers that returns
SeriesKeys
without the correspondingObservations
.To count the number of series:
keys = sdmx.Client('PROVIDER').preview_data('flow') len(keys)
To get a
pandas
object containing the key values:keys_df = sdmx.to_pandas(keys)
- Parameters:
- Return type:
list of
SeriesKey
- source = None[source]#
source.Source
for requests sent from the instance.
- sdmx.Request(*args, **kwargs)[source]#
Compatibility function for
Client
.New in version 2.0.
Deprecated since version 2.0: Will be removed in
sdmx
version 3.0.
- class sdmx.Resource(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#
Enumeration of SDMX-REST API resources.
Enum
membersdmx.model
classactualconstraint
agencyscheme
allowedconstraint
attachementconstraint
AttachmentConstraint
categorisation
categoryscheme
codelist
conceptscheme
contentconstraint
data
DataSet
dataflow
dataconsumerscheme
dataproviderscheme
datastructure
metadataflow
metadatastructure
organisationscheme
provisionagreement
structure
Mixed.
customtypescheme
Not implemented.
hierarchicalcodelist
Not implemented.
metadata
Not implemented.
namepersonalisationscheme
Not implemented.
organisationunitscheme
Not implemented.
process
Not implemented.
reportingtaxonomy
Not implemented.
rulesetscheme
Not implemented.
schema
Not implemented.
structureset
Not implemented.
transformationscheme
Not implemented.
userdefinedoperatorscheme
Not implemented.
vtlmappingscheme
Not implemented.
- classmethod class_name(value: Resource, default=None) str [source]#
Return the name of a
sdmx.model
class from an enum value.Values are returned in lower case.
- sdmx.add_source(info: Dict | str, id: str | None = None, override: bool = False, **kwargs) None [source]#
Add a new data source.
The info expected is in JSON format:
{ "id": "ESTAT", "documentation": "http://data.un.org/Host.aspx?Content=API", "url": "http://ec.europa.eu/eurostat/SDMX/diss-web/rest", "name": "Eurostat", "supports": {"codelist": false, "preview": true} }
…with unspecified values using the defaults; see
Source
.- Parameters:
info (dict-like) – String containing JSON information about a data source.
id (str) – Identifier for the new datasource. If
None
(default), then info[‘id’] is used.override (bool) – If
True
, replace any existing data source with id. Otherwise, raiseValueError
.**kwargs – Optional callbacks for handle_response and finish_message hooks.
- sdmx.list_sources()[source]#
Return a sorted list of valid source IDs.
These can be used to create
Client
instances.
- sdmx.read_sdmx(filename_or_obj, format=None, **kwargs)[source]#
Load a SDMX-ML or SDMX-JSON message from a file or file-like object.
- Parameters:
filename_or_obj (str or
PathLike
or file) –format ('XML' or 'JSON', optional) –
dsd (
DataStructureDefinition
) – For “structure-specific” format`=``XML` messages only.
- sdmx.to_csv(obj, *args, path: ~os.PathLike | None = None, rtype: ~typing.Type[str | ~pandas.core.frame.DataFrame] = <class 'str'>, **kwargs) None | str | DataFrame [source]#
Convert an SDMX obj to SDMX-CSV.
With rtype =
DataFrame
, the returned object is not necessarily in SDMX-CSV format. In particular, writing this to file usingpandas.DataFrame.to_csv()
will yield invalid SDMX-CSV, because pandas includes a CSV column corresponding to the index of the data frame. You must pass index=False to disable this behaviour. With rtype =str
or when giving path, this is done automatically.- Parameters:
path (os.PathLike, optional) – Path to write an SDMX-CSV file. If given, nothing is returned.
rtype – Return type; see below. Pass literally
str
orpd.DataFrame
; not an instance of either class.kwargs – Keyword arugments passed to
dataset()
.
- Returns:
- Raises:
NotImplementedError – If obj is any class except
DataSet
; this is the only class for which the SDMX-CSV standard describes a format.
See also
- sdmx.to_pandas(obj, *args, **kwargs)[source]#
Convert an SDMX obj to
pandas
object(s).See sdmx.writer.pandas.
- sdmx.to_xml(obj, **kwargs)[source]#
Convert an SDMX obj to SDMX-ML.
- Parameters:
kwargs – Passed to
lxml.etree.to_string()
, e.g. pretty_print =True
.- Raises:
NotImplementedError – If writing specific objects to SDMX-ML has not been implemented in
sdmx
.
format
: SDMX file formats#
This information is used across other modules including sdmx.reader
,
sdmx.client
, and sdmx.writer
.
- class sdmx.format.Flag(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)[source]#
Bases:
IntFlag
Flag values for information about
MediaType
:data
:True
if this format contains (meta)data.False
if it contains (meta)data structures.meta
:True
if this format contains metadata (or metadata structures).False
otherwise.ss
:True
if this format contains data that is structure-specific. This distinction is only relevant before SDMX 3.0.ts
:True
if this format contains time-series data. This distinction is only relevant before SDMX 3.0.
- sdmx.format.MEDIA_TYPES = [application/vnd.sdmx.generic+xml; version=2.1, application/vnd.sdmx.genericdata+xml; version=2.1, application/vnd.sdmx.genericmetadata+xml; version=2.1, application/vnd.sdmx.generictimeseriesdata+xml; version=2.1, application/vnd.sdmx.schema+xml; version=2.1, application/vnd.sdmx.structure+xml; version=2.1, application/vnd.sdmx.structurespecificdata+xml; version=2.1, application/vnd.sdmx.structurespecificmetadata+xml; version=2.1, application/vnd.sdmx.structurespecifictimeseriesdata+xml; version=2.1, application/xml; version=2.1, text/xml; version=2.1, application/vnd.sdmx.data+xml; version=3.0.0, application/vnd.sdmx.structure+xml; version=3.0.0, application/vnd.sdmx.metadata+xml; version=2.0.0, application/vnd.sdmx.data+json; version=1.0.0, application/vnd.sdmx.data+json; version=2.0.0, application/vnd.sdmx.structure+json; version=1.0.0, application/vnd.sdmx.structure+json; version=2.0.0, application/vnd.sdmx.metadata+json; version=2.0.0, application/vnd.sdmx.draft-sdmx-json+json; version=1.0.0, draft-sdmx-json; version=1.0.0, text/json; version=1.0.0, application/vnd.sdmx.data+csv; version=1.0.0, application/vnd.sdmx.metadata+csv; version=2.0.0][source]#
SDMX formats. Each record is an instance of
Format
.
- class sdmx.format.MediaType(label: str, base: ~typing.Literal['csv', 'json', 'xml'], _version: dataclasses.InitVar[typing.Union[str, sdmx.format.Version]], flags: ~sdmx.format.Flag = Flag.None, full: str | None = None)[source]#
Bases:
object
Structure of elements in
MEDIA_TYPES
.The
str()
of a MediaType is generally of the form:application/vnd.sdmx.{label}+{base};version={version}
…unless
full
is provided, in which case label and base are ignored.
- sdmx.format.list_media_types(**filters) List[MediaType] [source]#
Return the string for each item in
MEDIA_TYPES
matching filters.
SDMX-JSON#
Information about the SDMX-JSON file format.
SDMX-ML#
message
: SDMX messages#
Classes for SDMX messages.
Message
and related classes are not defined in the SDMX
information model, but in the SDMX-ML standard.
sdmx
also uses DataMessage
to encapsulate SDMX-JSON data returned by
data sources.
- class sdmx.message.DataMessage(version: ~sdmx.format.Version = Version.2.1, header: ~sdmx.message.Header = <factory>, footer: ~sdmx.message.Footer | None = None, response: ~typing.Any | None = None, data: ~typing.List[~sdmx.model.common.BaseDataSet] = <factory>, dataflow: ~sdmx.model.common.BaseDataflow | None = None, observation_dimension: ~sdmx.model.common._AllDimensions | ~sdmx.model.common.DimensionComponent | ~typing.List[~sdmx.model.common.DimensionComponent] | None = None)[source]#
Bases:
Message
Data Message.
Note
A DataMessage may contain zero or more
DataSet
, sodata
is a list. To retrieve the first (and possibly only) data set in the message, access the first element of the list:msg.data[0]
.- compare(other, strict=True)[source]#
Return
True
if self is the same as other.Two DataMessages are the same if:
their
dataflow
andobservation_dimension
compare equal.they have the same number of
DataSets
, andcorresponding DataSets compare equal (see
DataSet.compare()
).
- data: List[BaseDataSet][source]#
list
ofDataSet
.
- dataflow: BaseDataflow | None = None[source]#
DataflowDefinition
that contains the data.
- observation_dimension: _AllDimensions | DimensionComponent | List[DimensionComponent] | None = None[source]#
The “dimension at observation level”.
- class sdmx.message.ErrorMessage(version: ~sdmx.format.Version = Version.2.1, header: ~sdmx.message.Header = <factory>, footer: ~sdmx.message.Footer | None = None, response: ~typing.Any | None = None)[source]#
Bases:
Message
Bases:
object
Footer of an SDMX-ML message.
SDMX-JSON messages do not have footers.
Return
True
if self is the same as other.Two Footers are the same if their
code
,severity
, andtext
are equal.
The body text of the Footer contains zero or more blocks of text.
- class sdmx.message.Header(error: str | None = None, extracted: datetime | None = None, id: str | None = None, prepared: datetime | None = None, reporting_begin: datetime | None = None, reporting_end: datetime | None = None, receiver: Agency | None = None, sender: Agency | None = None, source: InternationalStringDescriptor = None, test: bool = False)[source]#
Bases:
object
Header of an SDMX-ML message.
SDMX-JSON messages do not have headers.
- compare(other, strict=True)[source]#
Return
True
if self is the same as other.Two Headers are the same if their corresponding attributes are equal.
- receiver: Agency | None = None[source]#
Intended recipient of the message, e.g. the user’s name for an authenticated service.
- reporting_begin: datetime | None = None[source]#
Start of the time period covered by a
DataMessage
.
- reporting_end: datetime | None = None[source]#
End of the time period covered by a
DataMessage
.
- source: InternationalStringDescriptor = None[source]#
- class sdmx.message.Message(version: sdmx.format.Version = <Version.2.1: 3>, header: sdmx.message.Header = <factory>, footer: Optional[sdmx.message.Footer] = None, response: Optional[Any] = None)[source]#
Bases:
object
- compare(other, strict=True)[source]#
Return
True
if self is the same as other.Two Messages are the same if their
header
andfooter
compare equal.
(optional)
Footer
instance.
- response: Any | None = None[source]#
requests.Response
instance for the response to the HTTP request that returned the Message. This is not part of the SDMX standard.
- class sdmx.message.StructureMessage(version: sdmx.format.Version = <Version.2.1: 3>, header: sdmx.message.Header = <factory>, footer: Optional[sdmx.message.Footer] = None, response: Optional[Any] = None, categorisation: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.Categorisation] = None, category_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.CategoryScheme] = None, codelist: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.Codelist] = None, concept_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.ConceptScheme] = None, constraint: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.BaseConstraint] = None, dataflow: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.BaseDataflow] = None, metadataflow: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.BaseMetadataflow] = None, structure: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.BaseDataStructureDefinition] = None, organisation_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.OrganisationScheme] = None, provisionagreement: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.ProvisionAgreement] = None, custom_type_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.CustomTypeScheme] = None, name_personalisation_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.NamePersonalisationScheme] = None, ruleset_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.RulesetScheme] = None, vtl_mapping_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.VTLMappingScheme] = None, transformation_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.TransformationScheme] = None, user_defined_operator_scheme: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.common.UserDefinedOperatorScheme] = None, valuelist: sdmx.dictlike.DictLikeDescriptor[str, sdmx.model.v30.ValueList] = None)[source]#
Bases:
Message
- add(obj: IdentifiableArtefact)[source]#
Add obj to the StructureMessage.
- categorisation: DictLikeDescriptor[str, Categorisation] = None[source]#
Collection of
Categorisation
.
- category_scheme: DictLikeDescriptor[str, CategoryScheme] = None[source]#
Collection of
CategoryScheme
.
- compare(other, strict=True)[source]#
Return
True
if self is the same as other.Two StructureMessages compare equal if
DictLike.compare()
isTrue
for each of the object collection attributes.- Parameters:
strict (bool, optional) – Passed to
DictLike.compare()
.
- concept_scheme: DictLikeDescriptor[str, ConceptScheme] = None[source]#
Collection of
ConceptScheme
.
- constraint: DictLikeDescriptor[str, BaseConstraint] = None[source]#
Collection of
ContentConstraint
.
- custom_type_scheme: DictLikeDescriptor[str, CustomTypeScheme] = None[source]#
Collection of
CustomTypeScheme
.
- dataflow: DictLikeDescriptor[str, BaseDataflow] = None[source]#
Collection of
Dataflow(Definition)
.
- get(obj_or_id: str | IdentifiableArtefact) IdentifiableArtefact | None [source]#
Retrieve obj_or_id from the StructureMessage.
- Parameters:
obj_or_id (str or .IdentifiableArtefact) – If an IdentifiableArtefact, return an object of the same class and
id
; ifstr
, an object with this ID.- Returns:
.IdentifiableArtefact – with the given ID and possibly class.
None – if there is no match.
- Raises:
ValueError – if obj_or_id is a string and there are ≥2 objects (of different classes) with the same ID.
- metadataflow: DictLikeDescriptor[str, BaseMetadataflow] = None[source]#
Collection of
MetaDataflow(Definition)
.
- name_personalisation_scheme: DictLikeDescriptor[str, NamePersonalisationScheme] = None[source]#
Collection of
NamePersonalisationScheme
.
- objects(cls)[source]#
Get a reference to the attribute for objects of type cls.
For example, if cls is the class
DataStructureDefinition
(not an instance), return a reference tostructure
.
- organisation_scheme: DictLikeDescriptor[str, OrganisationScheme] = None[source]#
Collection of
OrganisationScheme
.
- provisionagreement: DictLikeDescriptor[str, ProvisionAgreement] = None[source]#
Collection of
ProvisionAgreement
.
- ruleset_scheme: DictLikeDescriptor[str, RulesetScheme] = None[source]#
Collection of
RulesetScheme
.
- structure: DictLikeDescriptor[str, BaseDataStructureDefinition] = None[source]#
Collection of
DataStructureDefinition
.
- transformation_scheme: DictLikeDescriptor[str, TransformationScheme] = None[source]#
Collection of
TransformationScheme
.
- user_defined_operator_scheme: DictLikeDescriptor[str, UserDefinedOperatorScheme] = None[source]#
Collection of
UserDefinedOperatorScheme
.
- valuelist: DictLikeDescriptor[str, ValueList] = None[source]#
Collection of
ValueList
(SDMX 3.0 only).
- vtl_mapping_scheme: DictLikeDescriptor[str, VTLMappingScheme] = None[source]#
Collection of
VTLMappingScheme
.
rest
: SDMX-REST standard#
Information related to the SDMX-REST web service standard.
- sdmx.rest.RESPONSE_CODE = {200: 'OK', 304: 'No changes', 400: 'Bad syntax', 401: 'Unauthorized', 403: 'Semantic error', 404: 'Not found', 406: 'Not acceptable', 413: 'Request entity too large', 414: 'URI too long', 500: 'Internal server error', 501: 'Not implemented', 503: 'Unavailable'}[source]#
Response codes defined by the SDMX-REST standard.
- class sdmx.rest.URL(source: sdmx.source.Source, resource_type: Resource, resource_id: str, provider: str | None = None, agencyID: str | None = None, version: str | None = None, key: str | None = None)[source]#
Bases:
object
Utility class to build SDMX REST URLs.
See also
https
//github.com/sdmx-twg/sdmx-rest/blob/v1.5.0/v2_1/ws/rest/src/sdmx-rest.yaml
session
: Access SDMX REST web services#
- class sdmx.session.Session(timeout=30.1, **kwargs)[source]#
requests.Session
subclass with optional caching.If
requests_cache
is installed, this class inherits fromCachedSession
and caches responses.
- class sdmx.session.ResponseIO(response, tee=None)[source]#
Buffered wrapper for
requests.Response
with optional file output.ResponseIO
wraps arequests.Response
object’s ‘content’ attribute, providing a file-like object from which bytes can beread()
incrementally.- Parameters:
response (
requests.Response
) – HTTP response to wrap.tee (binary, writable
io.BufferedIOBase
, defaults to io.BytesIO()) – tee is exposed as self.tee and not closed explicitly.
urn
: Uniform Resource Names (URNs) for SDMX objects#
- sdmx.urn.URN = re.compile('urn:sdmx:org\\.sdmx\\.infomodel\\.(?P<package>[^\\.]*)\\.(?P<class>[^=]*)=((?P<agency>[^:]*):)?(?P<id>[^\\(]*)(\\((?P<version>[\\d\\.]*)\\))?(\\.(?P<item_id>.*))?')[source]#
Regular expression for URNs.
- sdmx.urn.make(obj, maintainable_parent=None, strict=False)[source]#
Create an SDMX URN for obj.
If obj is not
MaintainableArtefact
, then maintainable_parent must be supplied in order to construct the URN.
Utilities and internals#
- class sdmx.util.MaybeCachedSession(name, bases, dct)[source]#
Bases:
type
Metaclass to inherit from
requests_cache.CachedSession
, if available.If
requests_cache
is not installed, returnsrequests.Session
as a base class.
- sdmx.util.compare(attr, a, b, strict: bool) bool [source]#
Return
True
ifa.attr
==b.attr
.If strict is
False
,None
is permissible as a or b; otherwise,
- sdmx.util.direct_fields(cls) Iterable[Field] [source]#
Return the data class fields defined on cls or its class.
This is like the
__fields__
attribute, but excludes the fields defined on any parent class(es).
- sdmx.util.parse_content_type(value: str) Tuple[str, Dict[str, Any]] [source]#
Return content type and parameters from value.
Modified from
requests.util
.
DictLike
collections#
- class sdmx.dictlike.DictLike(*args, **kwargs)[source]#
Bases:
dict
,MutableMapping
[KT
,VT
]Container with features of
dict
, attribute access, and validation.
Structure expressions in Item
descriptions#
Parse structure information from item description.
|
Parse the |
|
Parse a structure expression for the item in itemscheme with the given id. |
|
Parse structure expressions for every item in itemscheme. |
Note
The code in this module does not perform calculations or operations on data using the parsed structure expressions. User code should use the returned information to determine which operations should be performed.
- sdmx.util.item_structure.OPS = {'+': <built-in function add>, '-': <built-in function sub>, '=': <built-in function eq>}[source]#
Operators understood by
parse_item_description()
- sdmx.util.item_structure.parse_all(itemscheme: ItemScheme, **kwargs) Dict[str, List[Tuple[Callable, Item | str]]] [source]#
Parse structure expressions for every item in itemscheme.
- Parameters:
kwargs – Passed to
parse_item_description()
viaparse_item()
.- Returns:
Keys are references to the items of itemscheme. Values are the results of
parse_item()
, i.e. possibly empty.- Return type:
dict of (Item → list)
- sdmx.util.item_structure.parse_item(itemscheme: ~sdmx.model.common.ItemScheme, id=<class 'str'>, **kwargs) List[Tuple[Callable, Item | str]] [source]#
Parse a structure expression for the item in itemscheme with the given id.
In addition to the behaviour of
parse_item_description()
,parse_item()
replaces—where possible—the operandstr
IDs with references to specific otherItems
in the itemscheme.Where not possible, the operand is returned as-is. For example, in an expression like:
A = B + C - D (until 2022) - E
…
B
,C
, andE
may resolve to references to particular other items, while the string “D (until 2022)” will be returned as-is, and not further parsed as a reference to an item with IDD
. (This functionality may be added in a future version ofsdmx
.)- Parameters:
kwargs – Passed to
parse_item_description()
.- Returns:
Where possible, operand is a reference to an existing item in itemscheme; otherwise the same
str
as returned byparse_item_description()
.- Return type:
- sdmx.util.item_structure.parse_item_description(item: Item, locale: str | None = None) List[Tuple[Callable, str]] [source]#
Parse the
description
of item for a structure expression.A common—but non-standard—SDMX usage is that
Items
inItemSchemes
contain structure expressions in theirdescription
. These may resemble:A = B + C - D
…indicating that data for
A
can be computed by adding data forB
andC
and subtracting data forD
. In this usage,A
matches theIdentifiableArtefact.id
of the item, andB
,C
, andD
are usually the IDs of other Items in the same ItemScheme.Another form is:
B + C - D
In this case, the left-hand side and “=” are omitted.
parse_item_description()
parses these expressions, returning a list of tuples. In each tuple, the first element gives the operation to be applied (in the above, examples, implicitlyadd()
for “B”), and the second element is the ID of the operand.Other descriptions are not (yet) supported, including:
Multi-line descriptions, in which the structure expression occurs on one line.
Structure expressions that appear on lines with other text, for example:
Some text; A = B + C - D
- Parameters:
locale (str) – Use this
localization
of item’s description, instead of the default (DEFAULT_LOCALE
or the sole localization).- Returns:
The list is empty if:
item has no
description
.The description does not contain a structure expression.
An expression like “A = B + …” exists, but
A
does not match the ID of item.
- Return type:
Example
>>> from sdmx.model.common import Code >>> from sdmx.util.item_structure import parse_item_description >>> c = Code(id="A", description="A = B + C - D") >>> parse_item_description(c) [(<function _operator.add(a, b, /)>, 'B'), (<function _operator.add(a, b, /)>, 'C'), (<function _operator.sub(a, b, /)>, 'D')]