Usage InstructionsΒΆ

The HPXML input translation is accessed through the Home Energy Score API. The HPXML translator is made available through the API method submit_hpxml_inputs, which accepts an HPXML file as a Base64 encoded payload, so you will need to convert it. An example of how to do this in Python is:

import base64

with open('path/to/hpxmlfile.xml','r') as f:
    hpxml_as_base64 = base64.standard_b64encode(f.read())

Similar libraries and functionality exist in many languages.