https://github.com/treble37/yt_potion
Lightweight YouTube V3 Data API wrapper
https://github.com/treble37/yt_potion
elixir wrapper youtube-api
Last synced: 10 months ago
JSON representation
Lightweight YouTube V3 Data API wrapper
- Host: GitHub
- URL: https://github.com/treble37/yt_potion
- Owner: treble37
- License: mit
- Created: 2016-12-12T05:50:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T05:52:31.000Z (over 9 years ago)
- Last Synced: 2025-07-26T09:34:40.383Z (11 months ago)
- Topics: elixir, wrapper, youtube-api
- Language: Elixir
- Homepage: https://hex.pm/packages/yt_potion
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# YtPotion
YouTube v3 Data API Wrapper
## Installation
If [available in Hex](https://hex.pm/docs/publish), 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
```
2. Ensure `yt_potion` is started before your application:
```elixir
def application do
[applications: [:yt_potion]]
end
```
3. In your config.exs file in your Phoenix app:
```elixir
config :yt_potion, YtPotion,
yt_api_key: System.get_env("YT_API_KEY")
```