We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f2e52f commit 3f35484Copy full SHA for 3f35484
1 file changed
README.md
@@ -0,0 +1,29 @@
1
+# TaskSpark 🐍
2
+
3
+A hybrid CLI + GUI task manager in Python.
4
5
+## CLI Usage
6
7
+```bash
8
+python taskspark/cli.py add "Buy groceries" --priority 2 --due 2026-02-10
9
+python taskspark/cli.py list
10
+python taskspark/cli.py complete 1
11
+python taskspark/cli.py remove 1
12
+```
13
14
+# GUI Usage
15
16
17
+python taskspark/gui.py
18
19
+Features
20
21
+* JSON-based storage
22
23
+* CLI commands for power users
24
25
+* Tkinter GUI for visual management
26
27
+* Priorities & due dates
28
29
+* GitHub Actions for automated testing
0 commit comments