https://github.com/PyPSA/PyPSA
Raw File
Tip revision: a90a4d61ff2d309d66475528db3d4d10ae43f98c authored by pre-commit-ci[bot] on 12 November 2023, 19:20:20 UTC
[pre-commit.ci] auto fixes from pre-commit.com hooks
Tip revision: a90a4d6
__init__.py
# -*- coding: utf-8 -*-
"""
Python for Power Systems Analysis (PyPSA)

Energy system modelling library.
"""

from pypsa import (
    clustering,
    components,
    contingency,
    descriptors,
    examples,
    geo,
    io,
    linopf,
    linopt,
    opf,
    opt,
    optimization,
    pf,
    plot,
    statistics,
)
from pypsa.components import Network, SubNetwork

__version__ = "0.25.2"

__author__ = (
    "PyPSA Developers, see https://pypsa.readthedocs.io/en/latest/developers.html"
)
__copyright__ = (
    "Copyright 2015-2023 PyPSA Developers, see https://pypsa.readthedocs.io/en/latest/developers.html, "
    "MIT License"
)
back to top