Skip to content

Commit

Permalink
Merge pull request #141 from mark-adams/added-pyjws
Browse files Browse the repository at this point in the history
Added PyJWS support
  • Loading branch information
mark-adams committed Apr 21, 2015
2 parents c17c6d4 + 59ed367 commit 06deb9f
Show file tree
Hide file tree
Showing 7 changed files with 1,348 additions and 1,153 deletions.
3 changes: 2 additions & 1 deletion jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
__copyright__ = 'Copyright 2015 José Padilla'


from .api import (
from .api_jwt import (
encode, decode, register_algorithm, unregister_algorithm, PyJWT
)
from .api_jws import PyJWS
from .exceptions import (
InvalidTokenError, DecodeError, InvalidAudienceError,
ExpiredSignatureError, ImmatureSignatureError, InvalidIssuedAtError,
Expand Down
260 changes: 0 additions & 260 deletions jwt/api.py

This file was deleted.

Loading

0 comments on commit 06deb9f

Please sign in to comment.