You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. .. _install:
  2. Installation
  3. ========================
  4. This part of the documentation covers the installation of Python-Keycloak. This is the first step to using the software library.
  5. Via Pypi Package
  6. -----------------
  7. To install python-keycloak, run this command in your terminal of choice::
  8. pip install python-keycloak
  9. Manually
  10. -----------------
  11. The python-keycloak code is `available <https://github.com/marcospereirampj/python-keycloak>`_. on Github.
  12. You can either clone the public repository::
  13. git clone https://github.com/marcospereirampj/python-keycloak.git
  14. Or, download the source code.
  15. Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily::
  16. python -m pip install .
  17. Dependencies
  18. -----------------
  19. python-keycloak depends on:
  20. - Python 3+
  21. - `requests <https://requests.readthedocs.io>`_
  22. - `python-jose <http://python-jose.readthedocs.io/en/latest/>`_
  23. - `urllib3 <https://urllib3.readthedocs.io/en/stable/>`_
  24. Tests Dependencies
  25. -------------------
  26. - `tox <https://tox.readthedocs.io/>`_
  27. - `pytest <https://docs.pytest.org/en/latest/>`_
  28. - `pytest-cov <https://github.com/pytest-dev/pytest-cov>`_
  29. - `wheel <https://github.com/pypa/wheel>`_