src/p4l/management/commands/get_country_label.py
author cavaliet
Fri, 30 Aug 2013 17:09:14 +0200
changeset 12 57efd01f1715
parent 10 c4e7d66b7dc2
permissions -rw-r--r--
get label factorization

# -*- coding: utf-8 -*-
from django.core.management import BaseCommand
from p4l.models import Country
from p4l.utils import fill_label_for_model


class Command(BaseCommand):

    def handle(self, *args, **options):
        fill_label_for_model(Country, 'country', 'http://skos.um.es/unescothes/CS000/Countries')