Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nunogois/snob
🥃 Snob is a simple CLI that fetches movies and TV shows info, written in Go.
https://github.com/nunogois/snob
cli colors go golang hacktoberfest movies omdb-api tv-shows viper
Last synced: about 2 months ago
JSON representation
🥃 Snob is a simple CLI that fetches movies and TV shows info, written in Go.
- Host: GitHub
- URL: https://github.com/nunogois/snob
- Owner: nunogois
- Created: 2022-07-27T16:08:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-12T09:14:00.000Z (over 2 years ago)
- Last Synced: 2024-10-20T23:33:06.234Z (3 months ago)
- Topics: cli, colors, go, golang, hacktoberfest, movies, omdb-api, tv-shows, viper
- Language: Go
- Homepage:
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🥃 Snob
Snob is a simple CLI that fetches movies and TV shows info, written in Go.
## Install
Homebrew:
```bash
brew install nunogois/brews/snob
```Or you can download the [latest release](https://github.com/nunogois/snob/releases/latest) instead.
Alternatively, you can clone this repository and then:
```bash
go install
```## Setup
Before using `snob`, you should get an OMDb API key by following [these steps](https://www.omdbapi.com/apikey.aspx).
After that, you can set your key like this:
```bash
snob -k
```Once you have set your key, you can make a simple search:
```bash
snob lost ark
```Use `snob -h` to see all the available commands.
## Using
- [OMDb API](http://www.omdbapi.com/)
- [urfave/cli](https://github.com/urfave/cli)
- [fatih/color](https://github.com/fatih/color)
- [Viper](https://github.com/spf13/viper)