Metadata-Version: 2.1
Name: oryks-google-calendar
Version: 0.3.0
Summary: A python library that wraps around the Google calendar API. You can use it to schedule events using google calendar.
Home-page: https://youtube-wrapper.readthedocs.io/en/latest/index.html
Author: Lyle Okoth
Author-email: lyceokoth@gmail.com
License: MIT
Keywords: calendar,google-calendar,schedule events
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# google-calendar
## Overview
A python library for working with the google calendar. Allows the developer to programatically perform the following tasks:

- Schedule an event
- Find all scheduled events
- Search for specific scheduled events
- Delete or update scheduled events
- Create calendars

## Getting started
Tou use this library, you will need a Google (GMail) Account and Google Credentials. Follow the instructions in this short [article](https://medium.com/@lyle-okoth/how-to-get-a-google-api-key-d3c38649eaae) to get an API key.

#### Installing the library
```sh
pip install oryks-google-calendar
```
#### Schedulin an event
```python
from google_calendar import GoogleCalendar

client_secret: str = 'client_secret.json'
google_calendar: GoogleCalendar = GoogleCalendar(secret_file=client_secret)
google_calendar.authenticate()

print(google_calendar.quick_add('Meeting with emmanuel at 10.00 am tommorrow.'))
```


