API refactor
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-10-07 16:25:52 +09:00
parent 76d0d86211
commit 91c7e04474
1171 changed files with 81940 additions and 44117 deletions

View File

@@ -6,7 +6,7 @@ from .api_jws import (
register_algorithm,
unregister_algorithm,
)
from .api_jwt import PyJWT, decode, encode
from .api_jwt import PyJWT, decode, decode_complete, encode
from .exceptions import (
DecodeError,
ExpiredSignatureError,
@@ -27,7 +27,7 @@ from .exceptions import (
)
from .jwks_client import PyJWKClient
__version__ = "2.8.0"
__version__ = "2.10.1"
__title__ = "PyJWT"
__description__ = "JSON Web Token implementation in Python"
@@ -49,6 +49,7 @@ __all__ = [
"PyJWK",
"PyJWKSet",
"decode",
"decode_complete",
"encode",
"get_unverified_header",
"register_algorithm",