Skip to content

Files

Latest commit

 

History

History
31 lines (19 loc) · 772 Bytes

quickstart.rst

File metadata and controls

31 lines (19 loc) · 772 Bytes

Quickstart Guide

This quickstart guide will help you get started with the EnergyDataModel library, covering the basic installation process and a simple usage example.

Installation

EnergyDataModel can be easily installed using pip:

pip install energydatamodel

Ensure you have Python 3.6 or later installed on your system.

Basic Usage

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.