Metadata-Version: 2.1
Name: geo-ng
Version: 0.1.3
Summary: 
Author: ize-302
Author-email: adavizeozorku@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: importlib-resources (>=6.1.1,<7.0.0)
Requires-Dist: setuptools (>=69.0.3,<70.0.0)
Description-Content-Type: text/markdown

# geo-ng

An installable python package that provides geographical information about States, Local Govenment Areas and towns in Nigeria


### Installation
`pip install geo-ng`


### Usage
```py
# Get all existing states
from geo_ng import get_states
get_states()


# Get states by region
from geo_ng import get_states_by_region
get_states_by_region(region_code)


# Get all existing local govenment areas
from geo_ng import get_lgas
get_lgas()


# Get local govenment by state
from geo_ng import get_lgas_by_state
get_lgas_by_state(state_code)

# Get towns by local govenment area
from geo_ng import get_towns_by_lga
get_towns_by_lga(lga_code)
```
