Series#

class fedfred.objects.Series(id, title, observation_start, observation_end, frequency, frequency_short, units, units_short, seasonal_adjustment, seasonal_adjustment_short, last_updated, popularity, realtime_start=None, realtime_end=None, group_popularity=None, notes=None)[source]#

Bases: object

A class used to represent a Series.

Parameters:
  • id (str)

  • title (str)

  • observation_start (str)

  • observation_end (str)

  • frequency (str)

  • frequency_short (str)

  • units (str)

  • units_short (str)

  • seasonal_adjustment (str)

  • seasonal_adjustment_short (str)

  • last_updated (str)

  • popularity (int)

  • realtime_start (str | None)

  • realtime_end (str | None)

  • group_popularity (int | None)

  • notes (str | None)

Methods#

Series.__init__

Series.to_object

Parses the FRED API response and returns a list of Series objects.

Series.to_object_async

Asynchronously parses the FRED API response and returns a list of Series objects.

Attributes#