Source code for pudl

"""The Public Utility Data Liberation (PUDL) Project."""

import importlib.metadata

from . import (
    analysis,
    convert,
    etl,
    extract,
    ferc_to_sqlite,
    glue,
    helpers,
    io_managers,
    logging_helpers,
    metadata,
    output,
    transform,
    validate,
    workspace,
)

logging_helpers.configure_root_logger()

[docs] __author__ = "Catalyst Cooperative"
[docs] __contact__ = "pudl@catalyst.coop"
[docs] __maintainer__ = "Catalyst Cooperative"
[docs] __license__ = "MIT License"
[docs] __maintainer_email__ = "zane.selvans@catalyst.coop"
[docs] __version__ = importlib.metadata.version("catalystcoop.pudl")
[docs] __docformat__ = "restructuredtext en"
[docs] __description__ = "Tools for liberating public US electric utility data."
[docs] __long_description__ = """ This Public Utility Data Liberation (PUDL) project is a collection of tools that allow programmatic access to and manipulation of many public data sets related to electric utilities in the United States. These data sets are often collected by state and federal agencies, but are publicized in ways that are not well standardized, or intended for interoperability. PUDL seeks to allow more transparent and useful access to this important public data, with the goal of enabling climate advocates, academic researchers, and data journalists to better understand the electricity system and its impacts on climate. """
[docs] __projecturl__ = "https://catalyst.coop/pudl/"
[docs] __downloadurl__ = "https://github.com/catalyst-cooperative/pudl/"