Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.33 KB

File metadata and controls

34 lines (21 loc) · 1.33 KB

Identity library

This Ms-Identity-Python library is an authentication/authorization library that:

  • Suitable for apps that are targeting end users on Microsoft identity platform, a.k.a. Microsoft Entra ID (which includes Work or school accounts provisioned through Azure AD, and Personal Microsoft accounts such as Skype, Xbox, Outlook.com).
  • Currently designed for web apps, regardless of which Python web framework you are using.
  • Provides a set of high level API that is built on top of, and easier to be used than Microsoft's MSAL Python library.
  • Written in Python, for Python apps.

Installation

This package is only hosted on GitHub. To install it, you need to use one of the following commands.

Choose the package declaration that matches your web framework:

  • Django:

    pip install "ms_identity_python[django] @ https://github.com/azure-samples/ms-identity-python/archive/refs/heads/0.10.zip"
    
  • Flask:

    pip install "ms_identity_python[flask] @ https://github.com/azure-samples/ms-identity-python/archive/refs/heads/0.10.zip"
    
  • Quart:

    pip install "ms_identity_python[quart] @ https://github.com/azure-samples/ms-identity-python/archive/refs/heads/0.10.zip"