Fix build: Bundle schwab_scraper source and use local dependencies
All checks were successful
Build and Push Docker Image / build (push) Successful in 34s
All checks were successful
Build and Push Docker Image / build (push) Successful in 34s
This commit is contained in:
37
schwab_scraper/__init__.py
Normal file
37
schwab_scraper/__init__.py
Normal file
@@ -0,0 +1,37 @@
|
||||
"""Public package exports sync wrappers and unified API references."""
|
||||
|
||||
from .api import (
|
||||
get_morningstar_data,
|
||||
get_transaction_history,
|
||||
get_transaction_history_enhanced,
|
||||
list_accounts,
|
||||
get_account_overview,
|
||||
get_positions,
|
||||
get_portfolio_snapshot,
|
||||
refresh_session,
|
||||
check_session_health,
|
||||
get_session_status,
|
||||
get_session_info,
|
||||
ensure_valid_session,
|
||||
export_cookies,
|
||||
set_cookies,
|
||||
list_available_accounts,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"get_morningstar_data",
|
||||
"get_transaction_history",
|
||||
"get_transaction_history_enhanced",
|
||||
"list_accounts",
|
||||
"get_account_overview",
|
||||
"get_positions",
|
||||
"get_portfolio_snapshot",
|
||||
"refresh_session",
|
||||
"check_session_health",
|
||||
"get_session_status",
|
||||
"get_session_info",
|
||||
"ensure_valid_session",
|
||||
"export_cookies",
|
||||
"set_cookies",
|
||||
"list_available_accounts",
|
||||
]
|
||||
Reference in New Issue
Block a user