Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion caldav/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
warnings.warn(
"You need to install the `build` package and do a `python -m build` to get caldav.__version__ set correctly"
)
from .davclient import DAVClient

# Import from the new async-first implementation with sync wrappers
from ._sync.davclient import DAVClient
from .search import CalDAVSearcher

## TODO: this should go away in some future version of the library.
Expand Down
9 changes: 9 additions & 0 deletions caldav/_async/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"""
Async CalDAV client implementation using httpx.

This module contains the primary async implementation of the caldav library.
The sync API in caldav._sync wraps these async implementations.
"""
from .davclient import AsyncDAVClient

__all__ = ["AsyncDAVClient"]
Loading