morama is a simple command-line interface (CLI) application for recording and managing personal reviews and ratings for movies and dramas. Built in Go, it helps you keep track of what you’ve watched — and how you felt about it — all from your terminal.
- Add reviews and star ratings for movies and dramas
- Browse and search your viewing history
- Filter by title, genre, or rating
- Edit or delete existing entries
- View yearly breakdowns and rating statistics
# 1. Add the tap
brew tap kiku99/morama https://github.com/kiku99/morama
# 2. Install morama
brew install moramamorama
├── add [title] # Add a new entry
│ ├── --movie # Add as a movie
│ └── --drama # Add as a drama
│
├── list # View all records (grouped by year)
│
├── show [title] # Show details of a specific entry
│ ├── --movie # Specify movie
│ └── --drama # Specify drama
│
├── edit [title] # Edit an existing entry
│ ├── --id=<ID> # Target entry ID (required)
│ ├── --movie # Edit as a movie
│ └── --drama # Edit as a drama
│
├── delete # Delete entries
│ ├── --id=<ID> # Delete by ID
│ └── --all # Delete all records
│
├── stats # Show statistics
│
└── version # Show current version
Add a movie
morama add "Inception" --movieAdd a drama
morama add "Hospital Playlist" --dramaView all records
morama listShow details of a movie
morama show "Inception" --movieEdit a record by ID
morama edit "Inception" --id=3 --movieDelete a record by ID
morama delete --id=3Delete all records
morama delete --allShow statistics
morama statsShow version
morama versionThis project is licensed under the MIT License.
See the LICENSE file for full details.
Contributions are welcome!
Feel free to open issues or submit pull requests to help improve morama.

