https://github.com/brobot-br/ex-datacube
Elixir wrapper for DataCube api
https://github.com/brobot-br/ex-datacube
elixir
Last synced: 4 days ago
JSON representation
Elixir wrapper for DataCube api
- Host: GitHub
- URL: https://github.com/brobot-br/ex-datacube
- Owner: brobot-br
- License: mit
- Created: 2022-05-17T14:36:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T21:24:32.000Z (over 3 years ago)
- Last Synced: 2025-10-21T14:46:55.467Z (9 months ago)
- Topics: elixir
- Language: Elixir
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ExDatacube
**Elixir wrapper for DataCube api**
## Installation
Full documentation can be found at .
The package can be installed by adding `ex_datacube` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_datacube, "~> 0.3.2"}
]
end
```
and your `auth_token` can be provided by adding this to your `config.exs`:
```elixir
config :ex_datacube, auth_token: "token"
```
For other ways to configure the library, please check the [docs](https://hexdocs.pm/ex_datacube).