Implement fin-hub T24-T26: ingest, runway, coupling, RaaS packaging
Add CSV importers, runway calculator, budget alerts, cross-hub coupling emitters, finhub CLI, and raas-mvp-packaging docs with full test coverage.
This commit is contained in:
parent
b6993d4a05
commit
1abbbe85e4
27 changed files with 835 additions and 3 deletions
11
src/fin_hub/ingest/__init__.py
Normal file
11
src/fin_hub/ingest/__init__.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""CSV and billing export ingestion for fin-hub."""
|
||||
|
||||
from fin_hub.ingest.anthropic import parse_anthropic_billing_csv
|
||||
from fin_hub.ingest.cloud import parse_cloud_cost_csv
|
||||
from fin_hub.ingest.hosteurope import parse_hosteurope_csv
|
||||
|
||||
__all__ = [
|
||||
"parse_anthropic_billing_csv",
|
||||
"parse_cloud_cost_csv",
|
||||
"parse_hosteurope_csv",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue