An Elixir client for Eve Online's Swagger Interface (ESI).
Install from Hex.pm:
def deps do
[{:esi, "~> 0.1"}]
endDocumentation is available at https://hexdocs.pm/esi.
This package uses the ESI Swagger Specification as published by CCP Games---plus some custom rules---to generate an Elixir API that (hopefully) feels more hand-written than code-generated.
You can see what version of the ESI Swagger Specification was used by running:
ESI.API.version()
# => "0.7.2"API functions are available in modules under ESI.API. The module grouping is close to,
but not the same as, the ESI site, staying more in-line
with the URL used for the specific function.
Note: Module organization may change for the v1.0 release.
API functions return an ESI.Request.t which can then be processed by passing to
ESI.request or ESI.request!:
ESI.API.Insurance.prices()
|> ESI.request
# => {:ok, result}ESI.API.Insurance.prices()
|> ESI.request!
# => resultAutomatic pagination is also supported if you use ESI.stream! instead:
ESI.API.Universe.bloodlines()
|> ESI.stream!
|> Enum.take(3)Currently, pass the :token option for those API functions that use
it.
In the future,
ESI.request,ESI.request!, andESI.stream!will support headers passed as arguments and/or loaded from application configuration.
Download ESI's swagger.json to priv/
Then run:
$ rm lib/esi/api.ex lib/esi/api/*.ex
$ mix esi.generate
Then:
- Make sure any new modules/functions look like they're named correctly. If they're
not, see the renaming functions in
ESI.Generator.Function. - Update the
README.mdwith the current ESI Swagger Specification version number in the code example.
Issues and PRs welcome via the project repository at https://github.com/bruce/esi.
See LICENSE.
Please note this package is not supported or endorsed by Eve Online/CCP Games. It's merely a utility created by an enthusiastic fan.