Metadata-Version: 2.1
Name: get-pop
Version: 1.94
Summary: A python command line utility that generates CSVs of county-level population data for specified US states.
Home-page: UNKNOWN
Author: DSR
License: MIT
Description: # get-pop
        
        A command line utility that generates CSVs of county-level population data for specified US states.
        
        ## Install
        
        ```pip install get-pop```
        
        ## Basic usage - command line
        
        Type 'getpop' followed by the two letter postal code for one or more states. CSVs will be output
         in a new directory called 'data' in the current working directory.
         
        Example #1: 
        ```
        getpop ny
        
        >> Initializing getpop
        >> Selected states: ['ny']
        >> Processing: New York
        >> getpop complete
        ```
         
        Example #2: 
          
        ```
        getpop ny nj tx
        
        >> Initializing getpop
        >> Selected states: ['ny', 'nj', 'tx']
        >> Processing: New Jersey
        >> Processing: New York
        >> Processing: Texas
        >> getpop complete
        ```
          
        ## Basic usage - python
          
        If you prefer, you can also import and call get-pop from within python:
          
        ```
        from get_pop.get_pop import get_pop
        
        states = ["ny","nj","tx","pa"]
        get_pop(states)
        ```
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Keywords: population csv geography usa counties
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
