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
- Host: GitHub
- URL: https://github.com/lostvikx/calendar-events
- Owner: lostvikx
- License: mit
- Created: 2022-06-28T06:43:45.000Z (almost 4 years ago)
- Default Branch: stable
- Last Pushed: 2022-09-12T13:08:37.000Z (almost 4 years ago)
- Last Synced: 2025-06-11T12:46:21.678Z (about 1 year ago)
- Topics: google-calendar-api
- Language: Python
- Homepage:
- Size: 337 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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

### 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
```