Metadata-Version: 2.1
Name: gcal-sync
Version: 0.6.1
Summary: A python library for syncing Google Calendar to local storage for use in Home Assistant
Home-page: https://github.com/allenporter/gcal_sync
Author: Allen Porter
Author-email: allen.porter@gmail.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# gcal-sync

An asyncio python library for Google Calendar. This library provides a simplified Google Calendar API
that is lighter weight and more streamlined compared to using aiogoogle, and increased reliability by
supporting efficient sync and reading from local storage.


## Development Environment

```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip3 install -r requirements.txt

# Run tests
$ py.test

# Run tests with code coverage
$ py.test --cov-report=term-missing --cov=gcal_sync
```


