/quafe

Library for accessing the EVE Online API from Elixir

Primary LanguageElixir

Quafe

Quafe is an Elixir library to provide access to the EVE Online XML API. The aim is to have a native-like experience of accessing the API.

I'd like to thank dotdotdotpaul for the edenex library which has given me inspiration for the inner workings of this library.

Usage

iex(1)> Quafe.Server.server_status
%{onlinePlayers: "17358", serverOpen: true}

Installation

Current

Until Quafe gets published in Hex, you can add Quafe to your list of dependencies in mix.exs as so:

def deps do
    [{:quafe, github: "hreeder/quafe"}]
end

Future: Hex

If available in Hex, the package can be installed in your list of dependencies in mix.exs as so:

def deps do
    [{:quafe, "~> 0.0.1"}]
end