18 lines
447 B
Python
18 lines
447 B
Python
# utils/stocks/valuations/__init__.py
|
|
"""
|
|
Valuations package for stock analysis and data collection.
|
|
This package provides tools for collecting and storing stock valuations
|
|
and company ratings from financial data providers.
|
|
"""
|
|
|
|
__version__ = '1.0.0'
|
|
|
|
from .collector import ValuationCollector
|
|
from .utils import save_dcf_valuation, save_company_rating
|
|
|
|
__all__ = [
|
|
'ValuationCollector',
|
|
'save_dcf_valuation',
|
|
'save_company_rating',
|
|
]
|