---------------------------------------------------------------------- This is the API documentation for the gdtest_display_funding library. ---------------------------------------------------------------------- ## Functions Public functions fund(project: str, amount: float) -> dict Record funding for a project. Parameters ---------- project : str The name of the project to fund. amount : float The funding amount in dollars. Returns ------- dict A dictionary with funding details. Examples -------- >>> fund("research", 50000.0) {'project': 'research', 'amount': 50000.0} report(grant_id: str) -> str Generate a funding report for a grant. Parameters ---------- grant_id : str The identifier of the grant. Returns ------- str A formatted funding report. Examples -------- >>> report("NSF-001") 'Grant NSF-001: active'