moneyflow 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moneyflow/__init__.py +28 -0
- moneyflow/__main__.py +6 -0
- moneyflow/app.py +1792 -0
- moneyflow/backends/__init__.py +101 -0
- moneyflow/backends/base.py +156 -0
- moneyflow/backends/demo.py +165 -0
- moneyflow/backends/monarch.py +155 -0
- moneyflow/cache_manager.py +218 -0
- moneyflow/commit_orchestrator.py +245 -0
- moneyflow/credentials.py +283 -0
- moneyflow/data_manager.py +614 -0
- moneyflow/demo_data_generator.py +701 -0
- moneyflow/duplicate_detector.py +219 -0
- moneyflow/keybindings.py +108 -0
- moneyflow/monarchmoney.py +2935 -0
- moneyflow/screens/__init__.py +1 -0
- moneyflow/screens/credential_screens.py +667 -0
- moneyflow/screens/duplicates_screen.py +305 -0
- moneyflow/screens/edit_screens.py +456 -0
- moneyflow/screens/review_screen.py +140 -0
- moneyflow/screens/search_screen.py +83 -0
- moneyflow/screens/transaction_detail_screen.py +137 -0
- moneyflow/state.py +482 -0
- moneyflow/styles/moneyflow.tcss +104 -0
- moneyflow/time_navigator.py +303 -0
- moneyflow/view_presenter.py +429 -0
- moneyflow/views/__init__.py +1 -0
- moneyflow/widgets/__init__.py +5 -0
- moneyflow/widgets/help_screen.py +71 -0
- moneyflow-0.1.2.dist-info/METADATA +475 -0
- moneyflow-0.1.2.dist-info/RECORD +34 -0
- moneyflow-0.1.2.dist-info/WHEEL +4 -0
- moneyflow-0.1.2.dist-info/entry_points.txt +3 -0
- moneyflow-0.1.2.dist-info/licenses/LICENSE +21 -0
moneyflow/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Monarch Money Power User TUI
|
|
3
|
+
|
|
4
|
+
A terminal-based interface for fast transaction management.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.1.0"
|
|
8
|
+
|
|
9
|
+
from .monarchmoney import MonarchMoney
|
|
10
|
+
from .backends import FinanceBackend, MonarchBackend, DemoBackend, get_backend
|
|
11
|
+
from .data_manager import DataManager
|
|
12
|
+
from .state import AppState, ViewMode, SortMode, TimeFrame, TransactionEdit
|
|
13
|
+
from .duplicate_detector import DuplicateDetector
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"MonarchMoney",
|
|
17
|
+
"FinanceBackend",
|
|
18
|
+
"MonarchBackend",
|
|
19
|
+
"DemoBackend",
|
|
20
|
+
"get_backend",
|
|
21
|
+
"DataManager",
|
|
22
|
+
"AppState",
|
|
23
|
+
"ViewMode",
|
|
24
|
+
"SortMode",
|
|
25
|
+
"TimeFrame",
|
|
26
|
+
"TransactionEdit",
|
|
27
|
+
"DuplicateDetector",
|
|
28
|
+
]
|