summaryrefslogtreecommitdiff
path: root/jwt
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2021-04-28 07:53:34 -0400
committerGitHub <noreply@github.com>2021-04-28 07:53:34 -0400
commitc7f9ac57021021aecc417ffb580c6799ad1ead84 (patch)
tree6a733b40b2559912e43f271543fc1b38487e7264 /jwt
parent816cbe59a43c4ab5466e6d4c5fa393223c26953f (diff)
downloadpyjwt-c7f9ac57021021aecc417ffb580c6799ad1ead84.tar.gz
Export PyJWK and PyJWKSet (#652)
* Export PyJWK and PyJWKSet. Closes #646 * Update CHANGELOG
Diffstat (limited to 'jwt')
-rw-r--r--jwt/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/jwt/__init__.py b/jwt/__init__.py
index 0d0805a..89023f3 100644
--- a/jwt/__init__.py
+++ b/jwt/__init__.py
@@ -1,3 +1,4 @@
+from .api_jwk import PyJWK, PyJWKSet
from .api_jws import (
PyJWS,
get_unverified_header,
@@ -43,6 +44,8 @@ __all__ = [
"PyJWS",
"PyJWT",
"PyJWKClient",
+ "PyJWK",
+ "PyJWKSet",
"decode",
"encode",
"get_unverified_header",