Metadata-Version: 2.1
Name: caldav
Version: 1.4.0
Summary: CalDAV (RFC4791) client library
Author-email: Cyril Robert <cyril@hippie.io>
License: GPL
Project-URL: Homepage, https://github.com/python-caldav/caldav
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Scheduling
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: COPYING.APACHE
License-File: COPYING.GPL
Requires-Dist: vobject
Requires-Dist: lxml
Requires-Dist: requests
Requires-Dist: recurring-ical-events>=2.0.0
Requires-Dist: icalendar; python_version != "3.8"
Requires-Dist: typing-extensions; python_version < "3.11"
Requires-Dist: icalendar<6.0.0; python_version == "3.8"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: coverage; extra == "test"
Requires-Dist: sphinx; extra == "test"
Requires-Dist: tzlocal; extra == "test"
Requires-Dist: backports.zoneinfo; python_version < "3.9" and extra == "test"
Requires-Dist: xandikos==0.2.7; python_version < "3.9" and extra == "test"
Requires-Dist: dulwich==0.20.50; python_version < "3.9" and extra == "test"
Requires-Dist: xandikos; python_version >= "3.9" and extra == "test"

# caldav

This project is a CalDAV ([RFC4791](http://www.ietf.org/rfc/rfc4791.txt)) client library for Python.

Features:

 * create, modify calendar
 * create, update and delete event
 * search events by dates
 * etc.

See the file [examples/basic_usage_examples.py](examples/basic_usage_examples.py) to get started.

Links:

 * [Pypi](https://pypi.org/project/caldav)
 * [Documentation](docs/source/index.rst) - should be automatically mirrored on https://caldav.readthedocs.io/en/latest/

Licences:

Caldav is dual-licensed under the [GNU GENERAL PUBLIC LICENSE Version 3](COPYING.GPL) and the [Apache License 2.0](COPYING.APACHE).
