Skip to content

ghostbitmeta/srpenergy-api-client-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Srp Energy Developer APIs - Python

https://travis-ci.org/lamoreauxlab/srpenergy-api-client-python.svg?branch=master https://coveralls.io/repos/github/lamoreauxlab/srpenergy-api-client-python/badge.svg?branch=master Documentation Status Requirements Status Latest version on PyPi Supported Python versions

The srpenergy module is an unofficial Python module for interacting with Srp Energy data.

Srp provides an hourly energy usage report for their customers. The srpenergy module fetches the data found on the website.

Usage Date Hour kWh Cost
9/19/2018 12:00 AM 1.2 $0.17
9/19/2018 1:00 AM 2.1 $0.30
9/19/2018 2:00 AM 1.5 $0.23
9/19/2018 3:00 AM 1.3 $0.20
9/19/2018 4:00 AM 1.5 $0.23
9/19/2018 5:00 AM 1.5 $0.23

Installing

It is distributed on PyPI and can be installed with pip:

pip install srpenergy

Use

from srpenergy.client import SrpEnergyClient

accountid = 'your account id'
username = 'your username'
password = 'your password'
client = SrpEnergyClient(accountid, username, password)
usage = client.usage(start_date, end_date)
date, hour, isodate, kwh, cost = usage[0]

About

Lamoreaux Lab Srp Energy Developer APIs - Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%