series#

Category.series#

Get the series in this category.

Returns:

A list of Series objects in this category.

Return type:

List[Series]

Raises:

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

Example

>>> categories = fred_client.get_category(125)
>>> for category in categories:
>>>     for series in category.series:
>>>         print(series.frequency)
'Quarterly'
'Annual'
'Quarterly'...

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