FLEXvalue is a Python library for calculating avoided costs, commonly used in energy efficiency and demand-side management. Version 2.0.8 is the latest, with maintenance-oriented updates. Release cadence is irregular, driven by method updates.
pip install flexvalueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: import Flexvalue, create an instance with default parameters, and call calculate() with required inputs.
Change import to 'from flexvalue import Flexvalue' and replace all 'FlexValue' references with 'Flexvalue'.
Always call calculate() with explicit keyword arguments, e.g., calculate(fuel_price=..., discount_rate=..., ...).
Replace 'from flexvalue import avoided_cost' with 'from flexvalue import Flexvalue' and use the object-oriented approach.
No dependency data recorded yet.