Metadata-Version: 2.1
Name: stock_data_loader
Version: 0.1.0
Summary: A library for loading stock data from Seeking Alpha API
Home-page: https://github.com/yourusername/stock_data_loader
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: requests

# Stock Data Loader

A Python library for loading stock data from the Seeking Alpha API.

## Installation

```
pip install stock_data_loader
```

## Usage

```python
from stock_data_loader import StockDataLoader

loader = StockDataLoader()
symbols = ['TSLA', 'AAPL', 'GOOGL']
result_df = loader.load_symbol_data(symbols)
print(result_df)
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
