note-taker
A simple note taker program written in python
This allows you to snip your todo's, notes, and your tasks easily without extra charges
Requirements
Only requirement is python3
and an unix operating system and windows supports python (windows may have limited support)
Create first note
You can create a first note by create
argument. example session:
~ $ ./note-taker.py create
Enter your Note title: Take out the trash
Write your note:
I will not forget to take out the trash tomorrow in the morning as it's getting full, fuller, and fullest
~ $
You can take third argument as a note title.
~ $ ./note-taker.py create 'Take out the trash'
Write your note:
I will not forget to take out the trash tomorrow in the morning as it's getting full, fuller, and fullest
~ $
Viewing your note
With view
argument
~ $ ./note-taker.py view 'Take out the trash'
Note Title: Take out the trash
Note Description:
I will not forget to take out the trash tomorrow in the morning as it's getting full, fuller, and fullest
Date Created: Tue Oct 26 04:50:58 PM +08 2021
~ $
You can choose your favorite viewing style such as less
or bat
. change this behaviour by doing env PAGER=less ./note-taker.py view 'Take out the trash'
Deleting your note
Use the delete
argument to delete the note
~ $ ./note-taker.py delete 'Take out the trash'