README.md
# IssApi
 [](https://coveralls.io/github/MikkelvtK/iss_api?branch=main) 
<br>
IssApi is a wrapper written in Elixir for [Open Notify](http://open-notify.org).
Library documentation can be found on [Hex Docs](https://hexdocs.pm/iss_api)
## Installation
To use the library add the `IssApi` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:iss_api, "~> 0.1.2"}
]
end
```
## Usage
To invoke the library function you can use this code snippet:
```elixir
iex> IssApi.location()
{:ok, %IssApi.Location{timestamp: 1699027915, position: {35.9648, -143.0953}}}
```