edfenergy api
1.0.0
Screen Scraper API for EDF Energy online account.
I want to submit meter readings programatically and I'm tired of waiting for an official API.
Currently all it does is authenticate and return the meter reading. Submitting the reading is next on my list.
Add this line to your application's Gemfile:
gem 'edfenergy-api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install edfenergy-api
require 'edfenergy/api'
api = Edfenergy::Api.new
api.login('EMAIL ADDRESS', 'PASSWORD') # => true
api.meter_reading # => 12345
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)