tags#

Series.tags#

Get the tags associated with this series.

Returns:

A list of Tag objects associated with this series.

Return type:

List[Tag]

Raises:

RuntimeError – If the client is not set for this Series.

Example

>>> seriess = fred_client.get_series("GNPCA")
>>> for series in seriess:
>>>     for tag in series.tags:
>>>         print(tag.name)
'nation'
'nsa'
'usa'...

Note: This property is meant for simple relational requests, for more complex queries use the client methods directly.