https://github.com/PyPSA/PyPSA
Raw File
Tip revision: bb31b44926ed6e6ab0f36ee972d92464228c53bb authored by Fabian Neumann on 20 September 2022, 14:19:31 UTC
add JRC as user
Tip revision: bb31b44
__init__.py
# -*- coding: utf-8 -*-


"""
Python for Power Systems Analysis (PyPSA)

Grid calculation library.
"""

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

__version__ = "0.20.0"

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