Django Library PyGal
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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)