kavanland
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

index_url.py
text/x-python

Download raw (256 bytes)

from django.core.management.base import BaseCommand
from aacore import app


class Command(BaseCommand):
    args = '<url>'
    help = 'Indexes the specified url'

    def handle(self, *args, **options):
        for arg in args:
            app.index(arg)