How to read Google CalDAV objects using python / django?

I looked at vObject, iCalendar, and the official list of CalDAV libraries, including 3 in python . However, I can’t find the code that can receive me the event object from this CalDAV server (for example, google, exchange, etc.) using the username / password. Most calendar related code django uses its own code libraries, not WebDAV.

An ideal CalDAV client example using python as an example: 1) use the given uid / pw, 2) get the primary calendar and 3) get the following meeting information (i.e. topic, location, start, end, etc.)

Thanks!

+3
source share
2 answers

Check out this project: http://pypi.python.org/pypi/caldav

Recent but promising.

+2
source

For google you should use the python google data API

0
source

Source: https://habr.com/ru/post/1715677/


All Articles