series#

Tag.series#

Get the series associated with this tag.

Returns:

A list of Series objects associated with this tag.

Return type:

List[Series]

Raises:

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

Example

>>> tags = fred_client.get_tags()
>>> for tag in tags:
>>>     for series in tag.series:
>>>         print(series.id)
'CPGDFD02SIA657N'
'CPGDFD02SIA659N'
'CPGDFD02SIM657N'...

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