A Django app to get information about Adminstrative bodies of Nepal.
Project description
================ Django Nepal
Djangonepal is a Django app that provides information about the administrative bodies of Nepal. Currently it has the names of seven provinces of Nepal, name of the districts inside each of the provinces and name of all the municipalities ( including Metropolitan, Sub-Metropolitan and rural Municipalities aka Gaun Palika) inside each districts. Hope this saves your time while working on your web project based project for Nepal.
Quick start
-
Add "djangonepal" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ...
'djangonepal', ...
]
-
Run
python manage.py makemigrations djangonepal
-
Run
python manage.py migrate
to create the models. -
Add
djangonepal.context_processors.data
to your 'context_processors' (optional)'context_processors': [ ...
'djangonepal.context_processors.data' ... ]
-
Run
python manage.py runscript load_data
wait till the import finishes. This import will let you use the data the way you want. -
If you followed step 4 you should be able to render it in your template using
{% for i in province %} <p> {{i.name}} </p> {% endfor %}
For district
{{i.district}}
For VDC/Municipality/Metropolitan/Sub-Metropolitan{{i.municipality}}
-
You could also register the model on your admin.py file with
from djangonepal.models import * admin.site.register(Province) admin.site.register(District) admin.site.register(Municipality)
==================== Want to Contribute?
I am open to any feedback/pull requests, feel free to Contact Me <https://www.atitbimali.com.np/>
_,
Even if you are not a developer. Any valid resource or data in any format is appreciated. Everyone
will be credited for their respective contributions.
================ Future Releases
-
More information about each administrative divisions to be added.
-
Resource Map, Census data to be added.
-
Rest API to be created and made public.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for djangonepal-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 102558070a31f749281f315fbee8d482f59c89692d542cc943e1f4479aeaeced |
|
MD5 | 8dd50f28b4fabe1bbee31f62de177c08 |
|
BLAKE2b-256 | fcd6e95eda87e801f6f4c74f7ce0e0391ab5a4ab8a920e7937d3f79a42e508b1 |