Metadata-Version: 2.1
Name: eve-jwt
Version: 0.1.4
Summary: Top-level package for eve-jwt.
Home-page: https://github.com/jmosbacher/eve_jwt
License: MIT
Author: Yossi Mosbacher
Author-email: joe.mosbacher@gmail.com
Requires-Python: >=3.6
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: Authlib (==0.14.3)
Requires-Dist: eve (>=1.1.4,<2.0.0)
Requires-Dist: expiringdict (>=1.2.1,<2.0.0)
Requires-Dist: flask (>=1.1.2,<2.0.0)
Requires-Dist: requests (>=2.25.0,<3.0.0)
Description-Content-Type: text/x-rst

=======
eve-jwt
=======


.. image:: https://img.shields.io/pypi/v/eve_jwt.svg
        :target: https://pypi.python.org/pypi/eve_jwt

.. image:: https://img.shields.io/travis/jmosbacher/eve_jwt.svg
        :target: https://travis-ci.com/jmosbacher/eve_jwt

.. image:: https://readthedocs.org/projects/eve-jwt/badge/?version=latest
        :target: https://eve-jwt.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status



Eve JWT auth for asymmetric encryption. Adapted from eve-auth-jwt which handles symmetric encryption shcemes.


Usage
-----

.. code-block:: python

        from eve_jwt import JWTAuth
        from eve import Eve

        auth = JWTAuth(key_url="https://YOUR-OAUTH-SERVER/certs/")

        app = Eve(auth=auth)


* Free software: MIT
* Documentation: https://eve-jwt.readthedocs.io.


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `briggySmalls/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`briggySmalls/cookiecutter-pypackage`: https://github.com/briggySmalls/cookiecutter-pypackage

