Files
wikijs-sdk-python/wikijs/auth/__init__.py
l3ocho ade9aacf56 Fix code formatting and linting issues
- Updated GitHub Actions workflow to use correct flake8 configuration
- Fixed line length issues by using 88 characters as configured
- Removed unused imports and trailing whitespace
- Fixed f-string placeholders and unused variables
- All linting checks now pass with project configuration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-30 20:49:40 -04:00

22 lines
485 B
Python

"""Authentication module for wikijs-python-sdk.
This module contains authentication handlers for different
authentication methods supported by Wiki.js.
Supported authentication methods:
- API key authentication (APIKeyAuth)
- JWT token authentication (JWTAuth)
- No authentication for testing (NoAuth)
"""
from .api_key import APIKeyAuth
from .base import AuthHandler, NoAuth
from .jwt import JWTAuth
__all__ = [
"AuthHandler",
"NoAuth",
"APIKeyAuth",
"JWTAuth",
]