https://github.com/ramiawar/consolelogbook
A python-based console application that allows saving entries in a logbook or diary fashion.
https://github.com/ramiawar/consolelogbook
Last synced: 7 months ago
JSON representation
A python-based console application that allows saving entries in a logbook or diary fashion.
- Host: GitHub
- URL: https://github.com/ramiawar/consolelogbook
- Owner: RamiAwar
- License: mit
- Created: 2018-12-23T20:27:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-23T20:58:35.000Z (almost 7 years ago)
- Last Synced: 2025-03-23T18:51:51.598Z (7 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ConsoleLogbook
A python-based platform-independent console application that allows saving entries in locally a logbook or diary fashion.## Functionality
- Adding entries
- Deleting entries
- Viewing entries## Requirements and Dependencies
- Requires Python 3.5+.
- Depends on `peewee`. To install with pip:
```
pip install peewee
```## Running the program
After installing requirements and dependencies, open up terminal/command-prompt and enter:
```
python3 console_logbook.py
```## Description
This program uses Peewee ORM to create and manage a local SQLite database using Python. The program allows logging timestamped entries, viewing them at a later date, and deleting them when needed.
## Acknowledgements
This programs depends on ```appdirs.py``` which was created by ActiveState Software Inc. for locating the most suitable data storage locations across different platforms. Source: https://github.com/ActiveState/appdirs/