I am using Python's
library: CalDav
in order to connect Horde Calendar
.
I have no trouble with creating a new event, however, I can't find in the documentation method how to update existing event.
I am using Python's
library: CalDav
in order to connect Horde Calendar
.
I have no trouble with creating a new event, however, I can't find in the documentation method how to update existing event.
Copyright © 2021 Jogjafile Inc.
Assuming the library you are using is this one: https://pythonhosted.org/caldav/.
To update an event you: - retrieve or create the event you want to modify - modify whatever you need to modify (but leave the UID unchanged) - call save()
See below an example from the library's test (see https://pythonhosted.org/caldav/#more-examples) - it creates an event starting in 2016, changes it to start in 2017 and calls save() to update the event on the CalDAV server: