Django Library PyGal
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

rebuild_index.py 321B

123456789
  1. from django.core.management.base import BaseCommand
  2. from pygal.search import create_index, rebuild_index
  3. class Command(BaseCommand):
  4. def handle(self, *args, **options):
  5. ix = create_index()
  6. n = rebuild_index(ix)
  7. self.stdout.write(self.style.SUCCESS('Search index for %d items created.') % n)