Simple API for Google Calendar management
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gcsa-0.1.4.tar.gz
(18.3 kB
view hashes)
Built Distribution
gcsa-0.1.4-py2.py3-none-any.whl
(22.7 kB
view hashes)