diff --git a/octopus-tariffs/octopus-tariffs.py b/octopus-tariffs/octopus-tariffs.py
--- a/octopus-tariffs/octopus-tariffs.py
+++ b/octopus-tariffs/octopus-tariffs.py
#
@@ -126,6 +126,7 @@ def main(api_key, octo_account):
#
account = result.json()
#
# Iterate through addresses
#
for prop in account['properties']:
#
@@ -154,11 +155,15 @@ def main(api_key, octo_account):
#
meter_info = getPricing(meter_info, session)
#
+ # Create some LP for the meter itself
#
+ lp = f'octopus_meter,mpan={meter_info["mpan"]},property={prop_info["id"]},account={prop_info["account_number"]} start_date="{prop_info["start_date"]}"'
#
prop_info['meters'].append(meter_info)
#
addresses.append(prop_info)
#
- lp_buffer = generateLP(addresses)
#
+ lp_buffer = lp_buffer + generateLP(addresses)
#
[print(x) for x in lp_buffer]