# Google Calendar Integration

#### **Module Location:** `groclake.toollake.calendar.googlecalendar`

### **Overview**

The Google Calendar module enables users to automate **event management, availability checking, and scheduling** within Google Calendar. This is useful for **meeting scheduling, automated reminders, and availability tracking.**

### **Setup Requirements**

✅ **Google Service Account Credentials JSON file**\
✅ Install required packages:

```sh
pip install google-auth google-auth-oauthlib google-api-python-client
```

#### **Class: GoogleCalendar**

The `GoogleCalendar` class provides functions to interact with Google Calendar.

**Initialization**

```python
calendar = GoogleCalendar(credentials_path="path/to/service-account-credentials.json")
```
