An open API service indexing awesome lists of open source software.

https://github.com/jackparsonss/movie-picker

Simple CLI tool to manage the movies you watch, and helps you pick when you just aren't sure
https://github.com/jackparsonss/movie-picker

boltdb cli cobra go golang movie-database movies

Last synced: about 2 months ago
JSON representation

Simple CLI tool to manage the movies you watch, and helps you pick when you just aren't sure

Awesome Lists containing this project

README

        

# movie-picker
## Usage
1. `go install .`
2. `movie `

## Commands
- `movie`: help
- `movie add `: adds a new movie
- `movie add --watched`: adds a movie to the watched list
- `movie watch`: moves movie from movie list to watched list
- `movie list`: lists all movies
- `movie list --watched:` lists all watched movies
- `movie delete `: delete movie based on id
- `movie delete --watched`: delete movie from watched list based on id
- `movie pick`: picks a random movie
- `movie fun`: interactive cli
- `movie web`: web based gui

## Dependencies
- [cobra](https://github.com/spf13/cobra)
- [promptui](https://github.com/manifoldco/promptui)
- [boltdb](https://github.com/boltdb/bolt)
- [color](https://github.com/fatih/color)
- [gin](https://github.com/gin-gonic/gin)