- NotifyClient with simple notify() and event builder APIs - Full async/await support with httpx - Offline queue with JSON file persistence - Event builder with fluent API - Notification management (get, markAsRead, unreadCount) - Type hints with dataclasses - Python 3.8+ compatible
37 lines
341 B
Plaintext
37 lines
341 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Type checking
|
|
.mypy_cache/
|
|
|
|
# Local storage
|
|
.ironnotify/
|