/yt_potion

Lightweight YouTube V3 Data API wrapper

Primary LanguageElixirMIT LicenseMIT

YtPotion

YouTube v3 Data API Wrapper

Installation

If available in Hex, the package can be installed as:

  1. Add yt_potion to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:yt_potion, "~> 0.1.3"}]
end
```
  1. Ensure yt_potion is started before your application:
```elixir
def application do
  [applications: [:yt_potion]]
end
```
  1. In your config.exs file in your Phoenix app:
config :yt_potion, YtPotion,
  yt_api_key: System.get_env("YT_API_KEY")