voidcli 0.1.0__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.
- void/__init__.py +1 -0
- void/controllers/__init__.py +1 -0
- void/controllers/activity.py +44 -0
- void/controllers/category.py +30 -0
- void/controllers/note.py +47 -0
- void/database/__init__.py +16 -0
- void/database/connection.py +59 -0
- void/database/init_tables.sql +47 -0
- void/main.py +153 -0
- void/models/__init__.py +1 -0
- void/models/activity.py +68 -0
- void/models/category.py +40 -0
- void/models/note.py +64 -0
- void/views/__init__.py +1 -0
- void/views/activity.py +247 -0
- void/views/collection.py +52 -0
- void/views/day_note.py +101 -0
- void/views/note.py +47 -0
- void/views/note_form.py +144 -0
- void/views/welcome.py +72 -0
- voidcli-0.1.0.dist-info/METADATA +77 -0
- voidcli-0.1.0.dist-info/RECORD +25 -0
- voidcli-0.1.0.dist-info/WHEEL +4 -0
- voidcli-0.1.0.dist-info/entry_points.txt +2 -0
- voidcli-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: voidcli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Project-URL: Repository, https://github.com/NelsonUrrutia/void
|
|
5
|
+
Author-email: Nelson Urrutia <nelurrutia15@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) Nelson Urrutia
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
License-File: LICENSE
|
|
28
|
+
Requires-Python: >=3.10
|
|
29
|
+
Requires-Dist: textual
|
|
30
|
+
Requires-Dist: textual-dev
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
█████ █████ ███████ █████ ██████████
|
|
35
|
+
░░███ ░░███ ███░░░░░███ ░░███ ░░███░░░░███
|
|
36
|
+
░███ ░███ ███ ░░███ ░███ ░███ ░░███
|
|
37
|
+
░███ ░███ ░███ ░███ ░███ ░███ ░███
|
|
38
|
+
░░███ ███ ░███ ░███ ░███ ░███ ░███
|
|
39
|
+
░░░█████░ ░░███ ███ ░███ ░███ ███
|
|
40
|
+
░░███ ░░░███████░ █████ ██████████
|
|
41
|
+
░░░ ░░░░░░░ ░░░░░ ░░░░░░░░░░
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
# **V**ital **O**ffline **I**nformation **D**iary
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
> **VOID** is an offline diary to be used in the terminal.
|
|
49
|
+
|
|
50
|
+
I made VOID with these goals in mind:
|
|
51
|
+
|
|
52
|
+
1. Make something useful for me, and feel accomplished delivering a usable piece of
|
|
53
|
+
software - at least for myself.
|
|
54
|
+
2. Learn Python and SQLite. I wanted to do something different from my regular job and
|
|
55
|
+
grow my skills - starting with tooling, and now this more UI-heavy piece backed by
|
|
56
|
+
a database.
|
|
57
|
+
3. Practice and get involved in the full life cycle of a project: identify a need or
|
|
58
|
+
something to improve, then design and develop a solution.
|
|
59
|
+
|
|
60
|
+
It took me a year to complete this project - this is the third and final repo - I pitched the idea on August 10th, 2025.
|
|
61
|
+
Life, doubts, and failures get in the way of personal projects. However, looking back
|
|
62
|
+
at my notes, I learned a lot, and a lot of myself changed along the way.
|
|
63
|
+
|
|
64
|
+
The project is in its final form, and I can proudly say it's finished.
|
|
65
|
+
I'll keep improving it, but the core things I wanted to do are delivered.
|
|
66
|
+
|
|
67
|
+
I made it public so there's proof on the Internet of my work.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### The pitch
|
|
72
|
+
|
|
73
|
+
> Track your life, thoughts, and growth without distractions. VOID is a focused personal logging tool built for the terminal. No cloud sync, no notifications, no feature bloat. Just you, your thoughts, and a clean interface to document what truly matters in your life.
|
|
74
|
+
|
|
75
|
+
### How to install
|
|
76
|
+
|
|
77
|
+
The project is available on PyPI, so you can install it with `pipx install voidcli`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
void/__init__.py,sha256=0UTfnDq8WFzUEYeta3I-g-A-GTQWkZgpxZqsUJizsh4,26
|
|
2
|
+
void/main.py,sha256=wfkoyjE5sAthCt95QlxD0sXtczdnfKs91oJY_dcR5b4,3744
|
|
3
|
+
void/controllers/__init__.py,sha256=CZITMDF4f0TWYYsqgnK8ulLcLKI-qVYyRnm7AdGN70o,25
|
|
4
|
+
void/controllers/activity.py,sha256=VyuGIa7sX3WOowie-9e-AusSwZ97HH7Tn0RlikAhSmg,1540
|
|
5
|
+
void/controllers/category.py,sha256=nm4sJ71T3QNkO5vbqD4B2GSdgRt0He5yUcBA_PXo_M0,1007
|
|
6
|
+
void/controllers/note.py,sha256=Defhc2kHiFlh-xCxMTIMj9FYQptNuKKiJlyllT7pS_o,1652
|
|
7
|
+
void/database/__init__.py,sha256=nk6C7EMQ5sAkI4Zr1XVfXO6ZM98Ke4uVcvIigeDa1Wk,371
|
|
8
|
+
void/database/connection.py,sha256=LOjAkUkyZ1KFyglova4A6VOM3vHf07kI1UTCwM1IF54,2094
|
|
9
|
+
void/database/init_tables.sql,sha256=uyZbyvMQpqlD23JXy1fhJ7-AV5QUhT71BdQ-iYJEV6s,1381
|
|
10
|
+
void/models/__init__.py,sha256=MqJn-HVxkMYZwbOFtme4YCPD2C9b2pPxP2v7X_VnUuQ,20
|
|
11
|
+
void/models/activity.py,sha256=g64UVSealLn4lImqP5nJ5C9nqWZBvgym3bthiI3EqB4,2269
|
|
12
|
+
void/models/category.py,sha256=IKQEEGbrykXxk7-yBorCYo0e156eqxIdoxR3yu78m4U,1227
|
|
13
|
+
void/models/note.py,sha256=qSTebdQDXIUyFuTOVrT1ADa5GyXgFKvbRWJa5pQT-s0,2208
|
|
14
|
+
void/views/__init__.py,sha256=ebDTpGzWTKQVRQLA78MWnoGopByUBQkdOuRFVZuiwHo,17
|
|
15
|
+
void/views/activity.py,sha256=nakHQjAEt14iIYO9yIOA8CK8ody2gUkCBTJpQ_zj9Cc,9132
|
|
16
|
+
void/views/collection.py,sha256=aKwBw-ZSHwQaQg0OP6fztS0i_ZAgsNbUGe47SExb64g,1847
|
|
17
|
+
void/views/day_note.py,sha256=VfFQV3kQN8dv3sRosuZDWOW1c8SNnCSd90Z7i8CwqXk,3865
|
|
18
|
+
void/views/note.py,sha256=BLxZoJ5Vh3WTGWuH1_KfSbUiuRX2xvsfVjFD-QzKgkY,1653
|
|
19
|
+
void/views/note_form.py,sha256=NTZQs747l-u3GYUZTvW7GICmnH3rKrwNkjXDF6SJw6I,4939
|
|
20
|
+
void/views/welcome.py,sha256=1tHk1Np6aZoammP7K9Ithslvl7UFaEQLkh93Mja7x-s,2402
|
|
21
|
+
voidcli-0.1.0.dist-info/METADATA,sha256=5HLArlDt64FyX5JqtsliipAOHAAgrk4QYlW7sRFM44I,3897
|
|
22
|
+
voidcli-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
23
|
+
voidcli-0.1.0.dist-info/entry_points.txt,sha256=0ph3SSwbFwPh91Zwo1dSJC6s0jYMdke9nBih3L5jyXg,39
|
|
24
|
+
voidcli-0.1.0.dist-info/licenses/LICENSE,sha256=KIQfnEHsM7ZFQa8-0oqCSdIcXfMo1d20jIw3DYICYN0,1067
|
|
25
|
+
voidcli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Nelson Urrutia
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|