Metadata-Version: 2.1
Name: aus-local-councils
Version: 0.1
Summary: Get list of local councils for Australian states/territories.
Home-page: https://github.com/OpenGovAus/aus-local-councils
Author: king-millez
Author-email: millez.dev@gmail.com
License: UNKNOWN
Description: # aus-local-councils
        
        This Python packagage returns lists of all local councils in Australia, sorted by state/territory.
        
        ## Setup
        
        Install required packages with **pip3**:
        
        `pip3 install -r requirements.txt`
        
        ## Usage
        
        You can get the list of councils for a jurisdiction like this (South Australia is used here for example purposes):
        
        ```python
        import json
        import aus_local_councils.sa
        
        council_list = aus_local_councils.sa.councils
        
        print(json.dumps(council_list, indent=2))
        ```
        
        This would print out a formatted list of all the local councils in South Australia.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
