Python package to use a login with Azure AD
Project description
streamlit-azure-ad-login
This is a React login component that help you check coonect to an endpoint that make the authentication with Azure Active Director and return the proper token.
This aproach is because the Active Directory authentication requires a lot of certifications that depends on each project.
The component allows you to personalize the following parameters:
- header_text: Text that will apear on the header of the login component
- authentication_endpoint_url: The active directory url to send the credentials and return the token
- logo_uri: a URI with the image of your company
- prefix: If you have a prefix for the login, here is where it goes
How to use it
import streamlit as st
from streamlit_azure_login import login_component
def login():
with st.expander('Auth', expanded=True):
token = login_component(
header_text='Intercement',
authentication_endpoint_url=environ.get('AD_ENDPOINT'),
logo_uri=environ.get('AD_LOGO_URI'),
prefix=environ.get('AD_PREFIX'),
)
if token:
return True
return False
if __name__ == '__main__':
favicon = Image.open('src/favicon/dir.ico')
st.set_page_config(page_icon=favicon, layout="wide")
# 1) We start the app without token and we set it to False
if 'token' not in st.session_state:
st.session_state.token = False
# 3) We enter to the web logic
if st.session_state.token:
# Here goes the dashboard logic
st.title('Test Azure Login')
# 4) We create a logout button that re run the app
if st.sidebar.button('Logout', key='logout_1'):
del st.session_state['token']
token = False
st.session_state.token = False
st.experimental_rerun()
# 2) We make the login and set the token to True if the login goes ok
# or false if goes wrong
else:
token = login()
st.session_state.token = token
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file streamlit-azure-ad-login-0.1.2.tar.gz
.
File metadata
- Download URL: streamlit-azure-ad-login-0.1.2.tar.gz
- Upload date:
- Size: 644.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e81993c872ef2df6e2df9019600077279010c0ddef79f469cd81e8fb19f91f97 |
|
MD5 | 2ec5e1b02823ead3d51448e59814a6e9 |
|
BLAKE2b-256 | 5b328afbbc54cb8bcf0aeb98fbfda221609af1b5fce9bcebb48f9461c92d5b0f |
File details
Details for the file streamlit_azure_ad_login-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: streamlit_azure_ad_login-0.1.2-py3-none-any.whl
- Upload date:
- Size: 653.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6d2dbe47c7479a5700e882886695f22ce7ca863573a2471b5bbbcac684bfa79 |
|
MD5 | 0b662c55d31291234c9c52ef87e176e5 |
|
BLAKE2b-256 | 5a647bd2da78f75e0bade3338d95af9418cb222f6dce9bed06136000ddc089f5 |