Metadata-Version: 2.1
Name: nepali-municipality
Version: 0.0.8
Summary: Nepali  municipalities is a python package to get data about Nepali municipalities based on districts 
Home-page: https://github.com/nawarazpokhrel/Nepali-Municipalites
Author: Navaraj Pokharel
Author-email: navarajpokharel@outlook.com
License: UNKNOWN
Keywords: Nepali,nepali districts,nepali municipalities,navaraj pokharel,nepali states
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Nepali Municipalities

This is a simple and small python package contributed by me to get all list of municipalities of Nepal based on given districts of Nepal.
# Contents
Installation
Use the package manager pip to install nepal-municipalities.

To get list of all districts of Nepal

```python
from src.nepali_municipalities import NepalMunicipality

print(NepalMunicipality().all_districts())
# ['Bhojpur', 'Dhankuta', 'Ilam', 'Jhapa', ......]

```

To get list of all municipalities of Nepal

```python
from src.nepali_municipalities import NepalMunicipality

print(NepalMunicipality('Kathmandu').all_municipalities())
# ['Kathmandu', 'Kageshwori Manohara', 'Kirtipur', 'Gokarneshwor', 'Chandragiri', 'Tokha', 'Tarkeshwor', 'Dakchinkali', 'Nagarjun', 'Budhanilkantha', 'Shankharapur']

print(NepalMunicipality('Kaski').all_municipalities())
```


# Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


## License
[MIT](https://choosealicense.com/licenses/mit/)

