An open API service indexing awesome lists of open source software.

https://github.com/lostvikx/calendar-events

Set calendar events for better customer experience using the Google Calendar API
https://github.com/lostvikx/calendar-events

google-calendar-api

Last synced: 11 months ago
JSON representation

Set calendar events for better customer experience using the Google Calendar API

Awesome Lists containing this project

README

          

# Calendar Events for Customer Experience

Set calendar events for better customer experience using the Google Calendar. Details are not to be disclosed.

### Example Event
![Example Image](calendar-events-example.jpg)

### Identified Vendors
* [Karza Tech](https://www.karza.in/)
* [EY](https://www.ey.com/en_in/banking-capital-markets/list-screening) (Customer Screening)

### Local Setup

```bash
pip install -r requirements.txt
```

### Google Calendar API Docs Links
* [Quickstart](https://developers.google.com/calendar/api/quickstart/python)
* [Create Events](https://developers.google.com/calendar/api/guides/create-events)
* [Insert Method](https://developers.google.com/calendar/api/v3/reference/events/insert)
* [Event Resource](https://developers.google.com/calendar/api/v3/reference/events#resource)
* [Service Account](https://developers.google.com/identity/protocols/oauth2/service-account)
* [Error Handling](https://developers.google.com/calendar/api/guides/errors) (Important)
* [Sharing & Attendees](https://developers.google.com/calendar/api/concepts/sharing)
* [POC Document](https://docs.google.com/document/d/1w7g-m2A0DLtYsDwtqZbAdMQ48m0-4WdVWnAD99pJ878/edit?usp=sharing)

### App Directory Structure
```bash
.
├── creds
│ ├── credentials.json
│ └── token.json
├── event.py
├── main.py
├── test
│ ├── res_event_details.json
│ └── test_event.json
└── utils.py
```