This is a very simple terminal notes app that i built using Python. It help you create, store, search, edit, delete, and export notes. Notes are all saved locally in a JSON file.
- Help create notes with title, content, and optional tags
- Help to see a list of all notes
- Help to read any note by ID
- Help to search notes by keywords(like title,content,tags)
- Help to edit existing notes
- Can delete existing notes by ID
- Help to export notes to a CSV file
- Open a terminal inside the project folder.
- Run: python main.py
main.py— main programnotes.json— to store the notes that are createdREADME.md— instructions
- Start program
- Choose any one option from the menu (1.Create 2.View list 3.Read 4.Search 5.Edit 6.Delete 7.Export 8.Exit.)
- Notes is updated automatically