Popularity
1.2
Growing
Activity
0.0
Stable
3
3
0

Monthly Downloads: 8
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

vultr alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view vultr alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of vultr or a related project?

Add another 'Third Party APIs' Package

README

Build Status Hex.pm Hex Docs

Vultr

Simple wrapper for the Vultr API.
Documentation hosted on hexdocs.

Installation

Add vultr to your list of dependencies in mix.exs:

  def deps do
    [{:vultr, "~> 0.3.0"}]
  end

Examples

Retrieving app list

  Vultr.app_list()

  # Example response
  {:ok, %{ "1" => %{"APPID" => "1", "deploy_name" => "LEMP on CentOS 6 x64", ... }, ... }}

Using authenticated methods

  client = Vultr.client("<APIKEY>")
  Vultr.server_list(client, [])