Metadata-Version: 2.4
Name: spendwise-analytics
Version: 0.1.0
Summary: Reusable budgeting projections and checks for Spendwise
Author: Manojkumar
License: MIT
Project-URL: Homepage, https://example.com/spendwise-analytics
Project-URL: Changelog, https://example.com/spendwise-analytics/changelog
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# spendwise-analytics

Reusable finance analytics for Spendwise (projection & budget status).

```python
from spendwise_analytics import BudgetInsights
bi = BudgetInsights(window=4, warn_threshold=0.1)
proj = bi.projected_monthly_spend(month_to_date=220.0, days_elapsed=7, days_in_month=30)
print(bi.budget_status(budget=800.0, projected=proj))
