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- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request