13 lines
413 B
Python
13 lines
413 B
Python
from django.core.management.base import BaseCommand
|
|
from django.contrib.sitemaps import ping_google
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = "Ping Google with an updated sitemap, pass optional url of sitemap"
|
|
|
|
def add_arguments(self, parser):
|
|
parser.add_argument('sitemap_url', nargs='?', default=None)
|
|
|
|
def execute(self, *args, **options):
|
|
ping_google(sitemap_url=options['sitemap_url'])
|