Google Calendar api with django application
    I have used google calendar api with django application.   I have create some appointments on google calendar using django.   There are  following steps to integrate with django application.    1. Firstly goes to this link google developer console       and then create a project and then create application   2.  save the client secret key and client id.   3.  Then go to your django application where you used calendar api   4. now install the library using command  <pip install google-api-python-client>then go to next step   5. I have used in my views.py   example:-             from googleapiclient import discovery  from oauth2client import tools  from oauth2client.client import OAuth2WebServerFlow  from oauth2client.file import Storage  import httplib       #---------------------------------------------------------------------------     # google_calendar_connection     #----------------------------...