├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AI_POLICY.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT ├── CONTACT.md ├── CONTRIBUTING.md ├── COPYING.APACHE ├── COPYING.GPL ├── MANIFEST.in ├── Makefile ├── README.md ├── RELEASE-HOWTO.md ├── ROADMAP.md ├── SECURITY.md ├── caldav ├── __init__.py ├── calendarobjectresource.py ├── collection.py ├── compatibility_hints.py ├── config.py ├── davclient.py ├── davobject.py ├── discovery.py ├── elements │ ├── __init__.py │ ├── base.py │ ├── cdav.py │ ├── dav.py │ └── ical.py ├── lib │ ├── __init__.py │ ├── debug.py │ ├── error.py │ ├── namespace.py │ ├── python_utilities.py │ ├── url.py │ └── vcal.py ├── objects.py ├── py.typed ├── requests.py └── search.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── about.rst │ ├── caldav │ ├── calendarobjectresource.rst │ ├── collection.rst │ ├── davclient.rst │ └── davobject.rst │ ├── conf.py │ ├── configfile.rst │ ├── contact.rst │ ├── examples.rst │ ├── howtos.rst │ ├── index.rst │ ├── performance.rst │ ├── reference.rst │ └── tutorial.rst ├── examples ├── basic_usage_examples.py ├── collation_usage.py ├── example_rfc6764_usage.py ├── get_events_example.py ├── google-django.py ├── google-flask.py ├── google-service-account.py ├── rfc6764_test_conf.py ├── scheduling_examples.py └── sync_examples.py ├── pyproject.toml ├── tests ├── README.md ├── __init__.py ├── _test_absolute.py ├── conf.py ├── conf_baikal.py ├── conf_private.py.EXAMPLE ├── docker-test-servers │ ├── README.md │ ├── baikal │ │ ├── README.md │ │ ├── Specific │ │ │ ├── config.php │ │ │ ├── config.system.php │ │ │ └── db │ │ │ │ └── db.sqlite │ │ ├── config │ │ │ └── baikal.yaml │ │ ├── configure_baikal.py │ │ ├── create_baikal_db.py │ │ ├── docker-compose.yml │ │ ├── setup_baikal.sh │ │ ├── start.sh │ │ └── stop.sh │ ├── bedework │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── start.sh │ │ └── stop.sh │ ├── cyrus │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── setup_cyrus.sh │ │ ├── start.sh │ │ └── stop.sh │ ├── nextcloud │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── setup_nextcloud.sh │ │ ├── start.sh │ │ └── stop.sh │ └── sogo │ │ ├── README.md │ │ ├── docker-compose.yml │ │ ├── init-sogo-users.sql │ │ ├── init-sogo.sql │ │ ├── setup_sogo.sh │ │ ├── sogo.conf │ │ ├── start.sh │ │ └── stop.sh ├── test_caldav.py ├── test_caldav_unit.py ├── test_cdav.py ├── test_compatibility_hints.py ├── test_docs.py ├── test_examples.py ├── test_search.py ├── test_search_collation.py ├── test_substring_workaround.py ├── test_sync_token_fallback.py ├── test_utils.py └── test_vcal.py └── tox.ini /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AI_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/AI_POLICY.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /CONTACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/CONTACT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/COPYING.APACHE -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/RELEASE-HOWTO.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/SECURITY.md -------------------------------------------------------------------------------- /caldav/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/__init__.py -------------------------------------------------------------------------------- /caldav/calendarobjectresource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/calendarobjectresource.py -------------------------------------------------------------------------------- /caldav/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/collection.py -------------------------------------------------------------------------------- /caldav/compatibility_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/compatibility_hints.py -------------------------------------------------------------------------------- /caldav/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/config.py -------------------------------------------------------------------------------- /caldav/davclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/davclient.py -------------------------------------------------------------------------------- /caldav/davobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/davobject.py -------------------------------------------------------------------------------- /caldav/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/discovery.py -------------------------------------------------------------------------------- /caldav/elements/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /caldav/elements/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/elements/base.py -------------------------------------------------------------------------------- /caldav/elements/cdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/elements/cdav.py -------------------------------------------------------------------------------- /caldav/elements/dav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/elements/dav.py -------------------------------------------------------------------------------- /caldav/elements/ical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/elements/ical.py -------------------------------------------------------------------------------- /caldav/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caldav/lib/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/debug.py -------------------------------------------------------------------------------- /caldav/lib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/error.py -------------------------------------------------------------------------------- /caldav/lib/namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/namespace.py -------------------------------------------------------------------------------- /caldav/lib/python_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/python_utilities.py -------------------------------------------------------------------------------- /caldav/lib/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/url.py -------------------------------------------------------------------------------- /caldav/lib/vcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/lib/vcal.py -------------------------------------------------------------------------------- /caldav/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/objects.py -------------------------------------------------------------------------------- /caldav/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /caldav/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/requests.py -------------------------------------------------------------------------------- /caldav/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/caldav/search.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/about.rst -------------------------------------------------------------------------------- /docs/source/caldav/calendarobjectresource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/caldav/calendarobjectresource.rst -------------------------------------------------------------------------------- /docs/source/caldav/collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/caldav/collection.rst -------------------------------------------------------------------------------- /docs/source/caldav/davclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/caldav/davclient.rst -------------------------------------------------------------------------------- /docs/source/caldav/davobject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/caldav/davobject.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/configfile.rst -------------------------------------------------------------------------------- /docs/source/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/contact.rst -------------------------------------------------------------------------------- /docs/source/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/examples.rst -------------------------------------------------------------------------------- /docs/source/howtos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/howtos.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/performance.rst -------------------------------------------------------------------------------- /docs/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/reference.rst -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /examples/basic_usage_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/basic_usage_examples.py -------------------------------------------------------------------------------- /examples/collation_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/collation_usage.py -------------------------------------------------------------------------------- /examples/example_rfc6764_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/example_rfc6764_usage.py -------------------------------------------------------------------------------- /examples/get_events_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/get_events_example.py -------------------------------------------------------------------------------- /examples/google-django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/google-django.py -------------------------------------------------------------------------------- /examples/google-flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/google-flask.py -------------------------------------------------------------------------------- /examples/google-service-account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/google-service-account.py -------------------------------------------------------------------------------- /examples/rfc6764_test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/rfc6764_test_conf.py -------------------------------------------------------------------------------- /examples/scheduling_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/scheduling_examples.py -------------------------------------------------------------------------------- /examples/sync_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/examples/sync_examples.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_test_absolute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/_test_absolute.py -------------------------------------------------------------------------------- /tests/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/conf.py -------------------------------------------------------------------------------- /tests/conf_baikal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/conf_baikal.py -------------------------------------------------------------------------------- /tests/conf_private.py.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/conf_private.py.EXAMPLE -------------------------------------------------------------------------------- /tests/docker-test-servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/Specific/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/Specific/config.php -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/Specific/config.system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/Specific/config.system.php -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/Specific/db/db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/Specific/db/db.sqlite -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/config/baikal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/config/baikal.yaml -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/configure_baikal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/configure_baikal.py -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/create_baikal_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/create_baikal_db.py -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/docker-compose.yml -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/setup_baikal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/setup_baikal.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/start.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/baikal/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/baikal/stop.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/bedework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/bedework/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/bedework/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/bedework/docker-compose.yml -------------------------------------------------------------------------------- /tests/docker-test-servers/bedework/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/bedework/start.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/bedework/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/bedework/stop.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/cyrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/cyrus/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/cyrus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/cyrus/docker-compose.yml -------------------------------------------------------------------------------- /tests/docker-test-servers/cyrus/setup_cyrus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/cyrus/setup_cyrus.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/cyrus/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/cyrus/start.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/cyrus/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/cyrus/stop.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/nextcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/nextcloud/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/nextcloud/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/nextcloud/docker-compose.yml -------------------------------------------------------------------------------- /tests/docker-test-servers/nextcloud/setup_nextcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/nextcloud/setup_nextcloud.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/nextcloud/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/nextcloud/start.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/nextcloud/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/nextcloud/stop.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/README.md -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/docker-compose.yml -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/init-sogo-users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/init-sogo-users.sql -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/init-sogo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/init-sogo.sql -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/setup_sogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/setup_sogo.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/sogo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/sogo.conf -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/start.sh -------------------------------------------------------------------------------- /tests/docker-test-servers/sogo/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/docker-test-servers/sogo/stop.sh -------------------------------------------------------------------------------- /tests/test_caldav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_caldav.py -------------------------------------------------------------------------------- /tests/test_caldav_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_caldav_unit.py -------------------------------------------------------------------------------- /tests/test_cdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_cdav.py -------------------------------------------------------------------------------- /tests/test_compatibility_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_compatibility_hints.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tests/test_search_collation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_search_collation.py -------------------------------------------------------------------------------- /tests/test_substring_workaround.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_substring_workaround.py -------------------------------------------------------------------------------- /tests/test_sync_token_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_sync_token_fallback.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_vcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tests/test_vcal.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-caldav/caldav/HEAD/tox.ini --------------------------------------------------------------------------------