File: installation.rst

package info (click to toggle)
python-flask-jwt-extended 4.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 592 kB
  • sloc: python: 4,279; makefile: 193; sh: 6
file content (30 lines) | stat: -rw-r--r-- 659 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Installation
==============



The easiest way to start working with this extension with pip:

.. code-block:: bash

  $ pip install flask-jwt-extended

If you want to use asymmetric (public/private) key signing algorithms, include
the ``asymmetric_crypto`` extra requirements.

.. code-block:: bash

  $ pip install flask-jwt-extended[asymmetric_crypto]

Note that if you are using ZSH (probably other shells as well), you will need to escape the brackets

.. code-block:: bash

  $ pip install flask-jwt-extended\[asymmetric_crypto\]


If you prefer to install from source, you can clone this repo and run

.. code-block:: bash

  $ python setup.py install