Django application providing database of European NUTS and LAU
pip install django-nuts
Add 'django_nuts'
to settings.INSTALLED_APPS
.
python manage.py migrate
You may load the data manually from the shell (python manage.py shell
)
from django_nuts.loaders import load_nuts, load_lau, load_other_nuts
# load all NUTS and LAU (note that NUTS must be loaded before LAU)
load_nuts(), load_ohter_nuts(), load_lau()
# load NUTS and LAU for some particular countries
load_nuts('CZ', 'SK'), load_other_nuts('IS'), load_lau('CZ', 'SK')
# load NUTS4 for CZ or SK
from django_nuts.loaders.cz_nuts import load_cz_nuts
from django_nuts.loaders.sk_nuts import load_sk_nuts
load_cz_nuts(), load_sk_nuts()
# load CZ NUTS4 + LAU
from django_nuts.loaders.cz_nuts4_lau import load_cz_nuts4_lau
load_cz_nuts4_lau()
your_app/models.py
:
from django.db import models
from django_nuts.models import NUTS
class Place(models.Model):
name = models.CharField(max_length=255)
nuts = models.ForeignKey(NUTS)
your_app/admin.py
:
from django.contrib import admin
from django_nuts.admin import NUTSRelatedOnlyFieldListFilter
class PlaceAdmin(admin.ModelAdmin):
list_display = ('name',)
list_filter = (('nuts', NUTSRelatedOnlyFieldListFilter),)
raw_id_fields = ('nuts',)