tsk-todo 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/PKG-INFO +26 -21
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/README.md +25 -20
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/pyproject.toml +1 -1
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/__init__.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/cli.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/dates.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/model.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/parse.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/py.typed +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/query.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/render.py +0 -0
- {tsk_todo-0.1.1 → tsk_todo-0.1.2}/src/tsk/store.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tsk-todo
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Minimal todo CLI for the terminal. Pure Python, zero dependencies.
|
|
5
5
|
Keywords: cli,todo,task,task-manager,productivity,terminal,gtd
|
|
6
6
|
Author: michaelrbarley
|
|
@@ -30,40 +30,45 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
[](https://pypi.org/project/tsk-todo/)
|
|
31
31
|
[](https://pypi.org/project/tsk-todo/)
|
|
32
32
|
|
|
33
|
-
A small task manager for the terminal.
|
|
33
|
+
A small task manager for the terminal. One line to add a task, one file to keep them in, and
|
|
34
|
+
nothing to configure.
|
|
34
35
|
|
|
36
|
+

|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
uv tool install tsk-todo
|
|
35
40
|
```
|
|
36
|
-
$ tsk add water the plants @home +garden due:tomorrow every:weekly
|
|
37
|
-
added 1: water the plants
|
|
38
41
|
|
|
39
|
-
|
|
40
|
-
added 2: fix the login bug
|
|
42
|
+
Or try it without installing anything: `uvx --from tsk-todo tsk`
|
|
41
43
|
|
|
42
|
-
|
|
43
|
-
2 H yesterday fix the login bug @work +urgent
|
|
44
|
-
1 tomorrow water the plants @home +garden every:weekly
|
|
45
|
-
```
|
|
44
|
+
## Why you might like it
|
|
46
45
|
|
|
47
|
-
|
|
46
|
+
**There is nothing to set up.** No config file, no theme to pick, no coefficients to tune. It works
|
|
47
|
+
the way it works, and the first thing you do with it is add a task.
|
|
48
48
|
|
|
49
|
-
|
|
49
|
+
**You can predict the order.** Due date, then priority, then id. That is the entire rule. Nothing
|
|
50
|
+
computes a score behind your back, so a task never jumps the queue for a reason you cannot see.
|
|
50
51
|
|
|
51
|
-
|
|
52
|
+
**It repeats properly.** Finish a daily task a week late and the next one is due tomorrow, not eight
|
|
53
|
+
overdue copies waiting to be dismissed one at a time.
|
|
52
54
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
```
|
|
55
|
+
**It stays out of the way.** `tsk add email bob@example.com about the invoice` does exactly what you
|
|
56
|
+
meant. So does `tsk add fix the -v flag`. Nothing gets swallowed as metadata.
|
|
56
57
|
|
|
57
|
-
|
|
58
|
-
`tsk`
|
|
58
|
+
**You can leave whenever.** Your tasks are one JSON file you can read, diff and commit. Stop using
|
|
59
|
+
`tsk` tomorrow and they are still sitting there in a format anything can open.
|
|
60
|
+
|
|
61
|
+
## Install
|
|
59
62
|
|
|
60
|
-
|
|
63
|
+
Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
|
|
61
64
|
|
|
62
65
|
```
|
|
63
|
-
|
|
66
|
+
uv tool install tsk-todo
|
|
64
67
|
```
|
|
65
68
|
|
|
66
|
-
|
|
69
|
+
The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
|
|
70
|
+
`tsk` on PyPI belongs to something else. `pip install tsk-todo` works too, and from a clone it is
|
|
71
|
+
`uv tool install .`
|
|
67
72
|
|
|
68
73
|
## The idea
|
|
69
74
|
|
|
@@ -4,40 +4,45 @@
|
|
|
4
4
|
[](https://pypi.org/project/tsk-todo/)
|
|
5
5
|
[](https://pypi.org/project/tsk-todo/)
|
|
6
6
|
|
|
7
|
-
A small task manager for the terminal.
|
|
7
|
+
A small task manager for the terminal. One line to add a task, one file to keep them in, and
|
|
8
|
+
nothing to configure.
|
|
8
9
|
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
uv tool install tsk-todo
|
|
9
14
|
```
|
|
10
|
-
$ tsk add water the plants @home +garden due:tomorrow every:weekly
|
|
11
|
-
added 1: water the plants
|
|
12
15
|
|
|
13
|
-
|
|
14
|
-
added 2: fix the login bug
|
|
16
|
+
Or try it without installing anything: `uvx --from tsk-todo tsk`
|
|
15
17
|
|
|
16
|
-
|
|
17
|
-
2 H yesterday fix the login bug @work +urgent
|
|
18
|
-
1 tomorrow water the plants @home +garden every:weekly
|
|
19
|
-
```
|
|
18
|
+
## Why you might like it
|
|
20
19
|
|
|
21
|
-
|
|
20
|
+
**There is nothing to set up.** No config file, no theme to pick, no coefficients to tune. It works
|
|
21
|
+
the way it works, and the first thing you do with it is add a task.
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
**You can predict the order.** Due date, then priority, then id. That is the entire rule. Nothing
|
|
24
|
+
computes a score behind your back, so a task never jumps the queue for a reason you cannot see.
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
**It repeats properly.** Finish a daily task a week late and the next one is due tomorrow, not eight
|
|
27
|
+
overdue copies waiting to be dismissed one at a time.
|
|
26
28
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
```
|
|
29
|
+
**It stays out of the way.** `tsk add email bob@example.com about the invoice` does exactly what you
|
|
30
|
+
meant. So does `tsk add fix the -v flag`. Nothing gets swallowed as metadata.
|
|
30
31
|
|
|
31
|
-
|
|
32
|
-
`tsk`
|
|
32
|
+
**You can leave whenever.** Your tasks are one JSON file you can read, diff and commit. Stop using
|
|
33
|
+
`tsk` tomorrow and they are still sitting there in a format anything can open.
|
|
34
|
+
|
|
35
|
+
## Install
|
|
33
36
|
|
|
34
|
-
|
|
37
|
+
Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
|
|
35
38
|
|
|
36
39
|
```
|
|
37
|
-
|
|
40
|
+
uv tool install tsk-todo
|
|
38
41
|
```
|
|
39
42
|
|
|
40
|
-
|
|
43
|
+
The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
|
|
44
|
+
`tsk` on PyPI belongs to something else. `pip install tsk-todo` works too, and from a clone it is
|
|
45
|
+
`uv tool install .`
|
|
41
46
|
|
|
42
47
|
## The idea
|
|
43
48
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|