- Add People API integration with contact management tools (create, list, get) - Fix OAuth flow: replace deprecated OOB with localhost callback - Fix Ctrl+C handling with proper signal handlers for graceful shutdown - Fix UTF-8 encoding in scheduled_tasks.py for Windows compatibility - Add users/ directory to gitignore to protect personal data Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
9 lines
328 B
Python
9 lines
328 B
Python
"""Google Tools - Gmail, Calendar, and Contacts integration for ajarbot."""
|
|
|
|
from .calendar_client import CalendarClient
|
|
from .gmail_client import GmailClient
|
|
from .oauth_manager import GoogleOAuthManager
|
|
from .people_client import PeopleClient
|
|
|
|
__all__ = ["GoogleOAuthManager", "GmailClient", "CalendarClient", "PeopleClient"]
|