Coverage for censusdis/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v6.5.0, created at 2025-04-03 05:39 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2025-04-03 05:39 +0000
1# Copyright (c) 2022-2023 Darren Erik Vengroff
2"""
3Tools for downloading and analyzing U.S. Census data.
5Includes plotting maps and computing diversity and integration metrics.
7Both Python and CLI interfaces are available.
8"""
9from .impl.exceptions import CensusApiException
10from usingversion import getattr_with_version
12__all__ = ("CensusApiException",)
14# Generate a version number.
15__getattr__ = getattr_with_version("censusdis", __file__, __name__)