categories#
- Series.categories#
Get the categories associated with this series.
- Returns:
A list of Category objects associated with this series.
- Return type:
List[Category]
- Raises:
RuntimeError – If the client is not set for this Series.
Example
>>> seriess = fred_client.get_series("EXJPUS") >>> for series in seriess: >>> for category in series.categories: >>> print(category.id) '95' '275'
Note: This property is meant for simple relational requests, for more complex queries use the client methods directly.