File size: 423 Bytes
f35bff2 8024c76 f35bff2 8024c76 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
FRED Economic Data Analysis Package
A comprehensive tool for collecting, analyzing, and visualizing
Federal Reserve Economic Data (FRED) using the FRED API.
Author: Economic Data Team
Version: 1.0.0
"""
__version__ = "1.0.0"
__author__ = "Economic Data Team"
__email__ = "data-team@company.com"
# Don't import anything here to avoid circular imports
# Modules should be imported directly when needed
__all__ = []
|