Client Library for retreiving smart meter data from an Eagle Energy Gateway
Project description
Meter Reader
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. image:: https://api.codacy.com/project/badge/Grade/06a4909b69f947c4a70b9938ff0fc942
:alt: Codacy Badge
:target: https://www.codacy.com/app/emansl/meter_reader?utm_source=github.com&utm_medium=referral&utm_content=eman/meter_reader&utm_campaign=badger
Release 1.1.2
Meter Reader is a client library and command line client for retrieving
nearly realtime energy usage data from a smart meter via the Eagle™ Home
Energy Gateway. See
`Rainforest™ Automation <http://www.rainforestautomation.com>`_ for more
about the Eagle™ Home Energy Gateway.
Meter Reader is not affiliated with the Eagle™ Home Energy Gateway or
Rainforest™ Automation.
Installation
-------------------------------------------------------------------------------
.. code-block:: bash
$ pip install meter-reader
Usage
-------------------------------------------------------------------------------
Meter Reader is intended to be used as a library for other applications
but it does contain a command line application called mr.
.. code-block:: bash
$ mr < ip address >
This will run the ``list_devices`` devices command on the gateway and display
a formatted response. Other commands, such as ``get_device_data``, will first
run the ``list_devices`` command to determine the MAC address of the gateway.
Commands can be specified with the `'-c'` option. For example
.. code-block:: bash
$ mr -c get_device_data < ip address >
MessageCluster
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 0
Id 0
Priority None
Text None
ConfirmationRequired N
Confirmed N
Read Y
Queue active
CurrentSummation
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 2014-04-19 16:01:22+00:00
SummationDelivered 12949746
SummationReceived 0
Multiplier 1
Divisor 1000
DigitsRight 3
DigitsLeft 15
SuppressLeadingZero Y
NetworkInfo
...
$ mr -c get_summation_values < ip address >
2014-04-18 16:30:00+00:00, Summation, 0.350
2014-04-18 17:30:00+00:00, Summation, 0.322
2014-04-18 18:30:00+00:00, Summation, 0.193
2014-04-18 19:30:00+00:00, Summation, 0.285
2014-04-18 20:30:00+00:00, Summation, 0.286
2014-04-18 21:30:00+00:00, Summation, 0.351
...
There are two ways to retrieve instantaneous demand:
1. Send the ``get_instantaneous_demand`` command directly to the gateway. This
will return a nearly raw response from the gateway (formatting is applied).
.. code-block:: bash
$ mr -c get_instantaneous_demand < ip address >
InstantaneousDemand
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 2014-04-19 15:35:27+00:00
Demand 297
Multiplier 1
Divisor 1000
DigitsRight 3
DigitsLeft 15
SuppressLeadingZero Y
2. Supply the ``--get-instant-demand`` argument. This will post-process the
response before displaying it.
.. code-block:: bash
$ mr --get-instant-demand < ip address >
2014-04-19 15:58:39+00:00, 0.292kW
Raw and unformatted data returned by the gatway, can be viewed by using the
`'-r'` option.
.. code-block:: bash
$ mr -r -c get_device_data < ip address >
Including Meter Reader in an application
-------------------------------------------------------------------------------
.. code-block:: python
from meter_reader import Gateway
GATEWAY_ADDRESS = '192.168.1.10'
gw = Gateway(GATEWAY_ADDRESS)
response = gw.run_command('get_device_data')
print('Network Info')
print(response['NetworkInfo'])
timestamp, demand = gw.get_instantaneous_demand()
print('Demand {0!s} at {1!s}'.format(demand, timestamp))
License
===============================================================================
Copyright © 2017, Emmanuel Levijarvi
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Notice
===============================================================================
Eagle™ is a trademark of Rainforest™ Automation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. image:: https://api.codacy.com/project/badge/Grade/06a4909b69f947c4a70b9938ff0fc942
:alt: Codacy Badge
:target: https://www.codacy.com/app/emansl/meter_reader?utm_source=github.com&utm_medium=referral&utm_content=eman/meter_reader&utm_campaign=badger
Release 1.1.2
Meter Reader is a client library and command line client for retrieving
nearly realtime energy usage data from a smart meter via the Eagle™ Home
Energy Gateway. See
`Rainforest™ Automation <http://www.rainforestautomation.com>`_ for more
about the Eagle™ Home Energy Gateway.
Meter Reader is not affiliated with the Eagle™ Home Energy Gateway or
Rainforest™ Automation.
Installation
-------------------------------------------------------------------------------
.. code-block:: bash
$ pip install meter-reader
Usage
-------------------------------------------------------------------------------
Meter Reader is intended to be used as a library for other applications
but it does contain a command line application called mr.
.. code-block:: bash
$ mr < ip address >
This will run the ``list_devices`` devices command on the gateway and display
a formatted response. Other commands, such as ``get_device_data``, will first
run the ``list_devices`` command to determine the MAC address of the gateway.
Commands can be specified with the `'-c'` option. For example
.. code-block:: bash
$ mr -c get_device_data < ip address >
MessageCluster
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 0
Id 0
Priority None
Text None
ConfirmationRequired N
Confirmed N
Read Y
Queue active
CurrentSummation
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 2014-04-19 16:01:22+00:00
SummationDelivered 12949746
SummationReceived 0
Multiplier 1
Divisor 1000
DigitsRight 3
DigitsLeft 15
SuppressLeadingZero Y
NetworkInfo
...
$ mr -c get_summation_values < ip address >
2014-04-18 16:30:00+00:00, Summation, 0.350
2014-04-18 17:30:00+00:00, Summation, 0.322
2014-04-18 18:30:00+00:00, Summation, 0.193
2014-04-18 19:30:00+00:00, Summation, 0.285
2014-04-18 20:30:00+00:00, Summation, 0.286
2014-04-18 21:30:00+00:00, Summation, 0.351
...
There are two ways to retrieve instantaneous demand:
1. Send the ``get_instantaneous_demand`` command directly to the gateway. This
will return a nearly raw response from the gateway (formatting is applied).
.. code-block:: bash
$ mr -c get_instantaneous_demand < ip address >
InstantaneousDemand
DeviceMacId xx:xx:xx:xx:xx:xx:xx:xx
MeterMacId xx:xx:xx:xx:xx:xx:xx
TimeStamp 2014-04-19 15:35:27+00:00
Demand 297
Multiplier 1
Divisor 1000
DigitsRight 3
DigitsLeft 15
SuppressLeadingZero Y
2. Supply the ``--get-instant-demand`` argument. This will post-process the
response before displaying it.
.. code-block:: bash
$ mr --get-instant-demand < ip address >
2014-04-19 15:58:39+00:00, 0.292kW
Raw and unformatted data returned by the gatway, can be viewed by using the
`'-r'` option.
.. code-block:: bash
$ mr -r -c get_device_data < ip address >
Including Meter Reader in an application
-------------------------------------------------------------------------------
.. code-block:: python
from meter_reader import Gateway
GATEWAY_ADDRESS = '192.168.1.10'
gw = Gateway(GATEWAY_ADDRESS)
response = gw.run_command('get_device_data')
print('Network Info')
print(response['NetworkInfo'])
timestamp, demand = gw.get_instantaneous_demand()
print('Demand {0!s} at {1!s}'.format(demand, timestamp))
License
===============================================================================
Copyright © 2017, Emmanuel Levijarvi
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Notice
===============================================================================
Eagle™ is a trademark of Rainforest™ Automation
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.
See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for meter_reader-1.1.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 000272ccd7dc8fd58bf2f4573d9771515a244c959582858f466012ab1e6ed10b |
|
MD5 | f2f5b0455f7891ac0d68f8d03d2192f8 |
|
BLAKE2b-256 | 74fad91f129f94d4945a41fa776f2fa3453859bbd3f23ac3ec31f9ecf62f906f |