This is a small program to merge appointments of several calendars into one. The source calendars could be either ical or caldav calenders. The target calender is a caldav calender.
- copy the config.dummy.json into a config.json file
- insert the source and target calender data
- install:
sudo pip install caldav
- start the script: python join_calendars.py
Running the script on a Raspberry Pi every night at 5:00am.
cd ~
- clone the github repo
git clone https://github.com/baireutherjonas/join_calendars.git
- go in the repo folder
cd join_calendars
- copy the config file template
cp config.dummy.json config.json
- insert your urls and data in the
config.json
file - open the crontab editor
crontab -e
- and insert the following row
0 5 * * * python ~/join_calendars/join_calendars.py &