Warning
This script "works" but is not tested or complete! Do not run this script without reading and understanding code!
A simple python script to handle a sqlight database file to store notes and a journal.
The script lets you write to a sqlite database from a cli-"interface" and your favorite editor.
Only tested on linux - and I highly doubt it works anywhere else without modification.
Written in very easy python and should be easely modified by anyone with some basic knowlage of python.
My goal is to make the code reable, well documented and easy to follow - that might not be the case yet.
obsNotes = one big sqlight Notes
I love the idea of "one big file" for notes but needed functionality to quickly add short lines AND longer notes, so i wrote a cli.
SQLite is just simple and effective way to store data that is very easy to export to what ever format I'd (or you'd) like to use next time.
- Easy to use
- Very hackable!
pytzpython-frontmatterpyyaml
Note
This script has a First run function! First run: (edit settings before this!)
- The script will create a folder-structure in the same folder as obsN.py
- The script will create a sqlite file and add a first entry.
- Install dependencies
- Run the script
"iD" INTEGER UNIQUE - PRIMARY KEY("iD" AUTOINCREMENT)
"book" TEXT
"chapter" TEXT
"part" TEXT
"date" TEXT (written with datetime)
"time" TEXT (written with datetime)
"tags" TEXT
"note" TEXTThe logic behind this structure is that Book, Chapter and Part works as folders. First run will create: - Book: notes - Chapter: journal - Part: log AND daily log is for short captures during the day and daily is for a longer daily entry that starts is life as an auto-generated .md file.
Most is self-explanatory. Run the script! (pref. with python in linux)
usage: obsN.py [-h] [-o] [-l] [-m] [-bu]
options:
-h, --help show this help message and exit
-o Open Daily-file
-l Write quick log-line
-m Run the menu
-bu Make backup to single archive in ~/If you modify files in an external editor, pay attention to the front-matter format, the order, number and names of the attributes are needed by the script. Add/change any value (the part at the right of the ":") but do not change the attribute (to the left of ":").
Name of the daily files is of no consequence - its the date following "Created: " in the frontmatter that is checked.
Exports the complete DB to markdown-files struktured in folders /book/chapter/part.
Archives this in a single tar file in user home directory (~).
Removes the created markdown-files.
- Replace pytz
- Add timezone setting
- Better printout function
- Faster/cleaner Menu
- Make the logging logical
- Search function
- Log for
first_run()