mainegeo
mainegeo
mainegeo is Python library for parsing and normalizing Maine place name data, including complex multi-part reporting units from election results.
Table of Contents
License and Usage
Usage of this library is governed by an MIT license.
Documentation
Review the documentation.
Installation
Install from Github
You can install the most recent release by running: pip install git+https://github.com/lkesich/maine-geography.git.
See individual module documentation for detailed information.
1""" 2.. include:: ../../README.md 3 4See individual module documentation for detailed information. 5""" 6from . import elections 7from . import townships 8from . import matching 9from . import patterns 10from . import entities 11 12__all__ = [ 13 'elections', 14 'townships', 15 'matching', 16 'patterns', 17 'entities', 18 'lookups' 19]