This is a commandline tool for searching and querying the Open Movie DB.
OMDBCTL provides the ability to search for titles, display movie information as well as Rotten Tomatos information.
omdbctl - will return movie results based upon id
omdbctl <title> - will return movie results based upon its title
omdbctl - will return results based upon the search results
go build ./cmd/omdbctl
Provide the OMDB APIKEY by setting the environment variable APIKEY
examples:
export APIKEY=myapikey
go run ./cmd/omdbctl
This project follows the https://github.com/golang-standards/project-layout structure
- Things that interact with the commandline in
/cmd
- Things that are generic to OMDB are in
/pkg/omdb
- Things that are specific to OMDBCTL interfacing with OMDB are in
/internal/pkg/omdbctl