This quickstart guide will help you get started with the EnergyDataModel library, covering the basic installation process and a simple usage example.
EnergyDataModel can be easily installed using pip:
pip install energydatamodel
Ensure you have Python 3.6 or later installed on your system.
After installing the library, you can start using it to model and analyze energy data:
from energydatamodel import Location, Meter
# Example usage
my_location = Location(latitude=50.0, longitude=-0.1257)
print(my_location)
Further steps and more complex examples can be found in the 'Examples' section.