|
Project Information
Featured
Downloads
Links
|
Overviewgooglecalendarsync is a tool written in python to bidirectional synchronize a local iCal (.ics) file with Google Calendar Requirements
Install
How to use googlecalendarsyncCreate a configuration file ($HOME/.googlecalsync/config) using the following template: [google]
username = <GOOGLE ACCOUNT USERNAME>
password = <GOOGLE ACCOUNT PASSWORD>
[local]
ical_file = <PATH OF THE LOCAL iCal FILE>
workdir = ${HOME}/.googlecalsync/work/Then run: googlecalsync.py [--dry-run] Recommended usageAdd an entry in crontab (as non-privileged user) like the following to synchronize a local calendar with Google Calendar every 30mins: 0,30 * * * * /usr/bin/googlecalsync.py >/dev/null 2>&1 |