blechreiz-website/eventplanner_gcal/management/commands/gcal_sync.py

11 lines
401 B
Python
Raw Normal View History

from django.core.management.base import NoArgsCommand
from eventplanner_gcal.signals import syncGCalEvents
class Command(NoArgsCommand):
help = 'Synchronize Google Calendar with locally stored Events'
def handle_noargs(self, **options):
print ( "Running Sync")
created, deleted = syncGCalEvents()
print ( "Created %d and deleted %d events" % (created,deleted) )