Metadata-Version: 2.1
Name: gcsa
Version: 0.1.2
Summary: Simple API for Google Calendar management
Home-page: https://github.com/kuzmoyev/Google-Calendar-Simple-API
Author: Yevhen Kuzmovych
Author-email: kuzmpvich.goog@gmail.com
License: MIT
Keywords: google calendar simple api
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: beautiful-date (==1.0.1)
Requires-Dist: cachetools (==3.0.0)
Requires-Dist: certifi (==2018.11.29)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: google-api-python-client (==1.7.7)
Requires-Dist: google-auth (==1.6.2)
Requires-Dist: google-auth-httplib2 (==0.0.3)
Requires-Dist: google-auth-oauthlib (==0.2.0)
Requires-Dist: httplib2 (==0.12.0)
Requires-Dist: idna (==2.8)
Requires-Dist: oauthlib (==3.0.1)
Requires-Dist: pyasn1 (==0.4.5)
Requires-Dist: pyasn1-modules (==0.2.4)
Requires-Dist: python-dateutil (==2.7.2)
Requires-Dist: pytz (==2018.9)
Requires-Dist: requests (==2.21.0)
Requires-Dist: requests-oauthlib (==1.2.0)
Requires-Dist: rsa (==4.0)
Requires-Dist: six (==1.11.0)
Requires-Dist: tzlocal (==1.5.1)
Requires-Dist: uritemplate (==3.0.0)
Requires-Dist: urllib3 (==1.24.1)

Google Calendar Simple API
==========================

.. image:: https://travis-ci.com/kuzmoyev/Google-Calendar-Simple-API.svg?branch=master
    :target: https://travis-ci.com/kuzmoyev/Google-Calendar-Simple-API

.. image:: https://readthedocs.org/projects/google-calendar-simple-api/badge/?version=latest
    :target: https://google-calendar-simple-api.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status


`Google Calendar Simple API` or `gcsa` is a library that simplifies event management in a Google Calendars.
It is a Pythonic object oriented adapter for the `official API`_.

Installation
------------

::

    pip install gcsa

Example usage
-------------

::

    calendar = GoogleCalendar('your_email@gmail.com')
    event = Event(
        'Breakfast',
        start=date(2019, 1, 1),
        recurrence=Recurrence.rule(freq=DAILY)),
        minutes_before_email_reminder=50
    )

    calendar.add_event(event)

    for event in calendar:
        print(event)


See documentation_
for more parameters and functionality.

**Suggestion**: use beautiful_date_ to creat `date` and `datetime` objects in your
projects (*because its beautiful... just like you*).


References
----------

Template for `setup.py` was taken from `kennethreitz/setup.py`_


.. _`official API`: https://github.com/googleapis/google-api-python-client
.. _documentation: https://google-calendar-simple-api.readthedocs.io/en/latest/?badge=latest
.. _beautiful_date: https://github.com/beautiful-everything/beautiful-date
.. _`kennethreitz/setup.py`: https://github.com/kennethreitz/setup.py

