Started with google calendar coupling

This commit is contained in:
Martin Bauer
2014-03-08 22:36:25 +01:00
parent 5a3d739a9b
commit ee37a5ddcb
8 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,10 @@
from django.core.management.base import BaseCommand
from eventplanner_gcal.models import syncGCalEvents
class Command(BaseCommand):
help = 'Synchronize Google Calendar with locally stored Events'
def handle(self, **options):
print ( "Running Sync")
syncGCalEvents()