Popularity
2.4
Declining
Activity
0.0
Stable
1
8
0

Monthly Downloads: 4
Programming language: Elixir
License: MIT License
Tags: Miscellaneous    

egaugex alternatives and similar packages

Based on the "Miscellaneous" category.
Alternatively, view egaugex alternatives based on common mentions on social networks and blogs.

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

Add another 'Miscellaneous' Package

README

Egaugex

Hex version Hex downloads Build Status Coverage Status

Gets and parses egauge data given the egauge device id.

Installation

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

def deps do
  [{:egaugex, "~> 0.0.5"}]
end

Usage

import Egaugex

# hits `/cgi-bin/egauge-show?S&n=60` by default
egauge_parser("egaugexxxxx")

# with username and password auth
egauge_parser("egaugexxxxx", ["username": "owner", "password": "default"])

# with custom uri
egauge_parser("egauge17983", [{:uri, "/cgi-bin/egauge-show?S&a&t=1462299644"}, {:username, "owner"}, {:password, "default"}])

You can pass the list of arguments as keyword arguments as shown in example above. The other keyword arguments are base_url and realm.