Files
schwab-mcp-custom/schwab_scraper/__main__.py
b3nw 650ea2d087
All checks were successful
Build and Push Docker Image / build (push) Successful in 34s
Fix build: Bundle schwab_scraper source and use local dependencies
2026-04-24 01:50:20 +00:00

7 lines
176 B
Python

#!/usr/bin/env python3
"""Main entry point for the schwab-morningstar-scraper package when run with python3 -m."""
from .cli import main
if __name__ == "__main__":
main()