Initial commit: Discord stock bot with hourly PYPL updates

Functional Discord bot with automated hourly stock price updates during NYSE trading hours. Supports manual queries for any ticker via prefix commands.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Michael Simard
2025-12-02 22:25:37 -06:00
commit 3b6f0cbe4a
15 changed files with 1321 additions and 0 deletions

5
stock_api/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .base import StockAPIBase
from .yahoo import YahooFinanceAPI
from .finnhub_api import FinnhubAPI
__all__ = ['StockAPIBase', 'YahooFinanceAPI', 'FinnhubAPI']