Source code for pudl
"""The Public Utility Data Liberation (PUDL) Project."""
import warnings
from dagster import PreviewWarning
from pudl.logging_helpers import configure_root_logger
warnings.filterwarnings(
action="once",
message=r"Specifying a partitions_def on an AssetCheckSpec is currently in preview.*",
category=PreviewWarning,
)
configure_root_logger()
[docs]
__author__ = "Catalyst Cooperative"
[docs]
__maintainer__ = "Catalyst Cooperative"
[docs]
__license__ = "MIT License"
[docs]
__maintainer_email__ = "[email protected]"
try:
from pudl._version import __version__
except ImportError:
[docs]
__version__ = "0.0.0.dev0"
[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/"