Skip to main content

A secure authentication module to validate user credentials in a Streamlit application using the Google Sheets API and the library of streamlit authenticator.

Project description

Streamlit-Authenticator Downloads

A secure authentication module to validate user credentials in a Streamlit application.

Installation

Streamlit-Authenticator-Sheets is distributed via PyPI:

pip install streamlit-authenticator-sheets

Example

Using Streamlit-Authenticator_Sheets is as simple as importing the module and calling it to verify your predefined users' credentials.

import streamlit as st
import streamlit_authenticator as stauth

1. Hashing Passwords

  • Initially define your users' names, usernames, plain text passwords, and reauthentication cookie settings in a YAML configuration file.
credentials:
  names: ['John Smith', 'Rebecca Briggs']
  usernames: ['jsmith', 'rbriggs']
  passwords: ['123', '456'] # To be replaced with hashed passwords
cookie:
  name: 'some_cookie_name'
  key: 'some_signature_key'
  expiry_days: 30
  • Then use the Hasher module to convert the plain text passwords to hashed passwords.
hashed_passwords = stauth.Hasher(['123', '456']).generate()

Finally replace the plain text passwords in the configuration file with the hashed passwords.

2. Creating Login Widget

  • Subsequently import the configuration file into your script to create an authentication object. Here you will need to enter a name for the JWT cookie that will be stored on the client's browser and used to reauthenticate the user without re-entering their credentials. In addition, you will need to provide any random key to be used to hash the cookie's signature. Finally, you will need to specify the number of days to use the cookie for, if you do not require passwordless reauthentication, you may set this to 0.
with open('../config.yaml') as file:
    config = yaml.load(file, Loader=SafeLoader)

authenticator = stauth.Authenticate(
    config['credentials']['names'],
    config['credentials']['usernames'],
    config['credentials']['passwords'],
    config['cookie']['name'],
    config['cookie']['key'],
    config['cookie']['expiry_days']
)
  • Then finally render the login module as follows. Here you will need to provide a name for the login form, and specify where the form should be located i.e. main body or sidebar (will default to main body).
name, authentication_status, username = authenticator.login('Login', 'main')

3. Authenticating Users

  • You can then use the returned name and authentication status to allow your verified user to proceed to any restricted content. In addition, you have the ability to add an optional logout button at any location on your main body or sidebar (will default to main body).
if authentication_status:
    authenticator.logout('Logout', 'main')
    st.write(f'Welcome *{name}*')
    st.title('Some content')
elif authentication_status == False:
    st.error('Username/password is incorrect')
elif authentication_status == None:
    st.warning('Please enter your username and password')
  • Should you require access to the persistent name, authentication status, and username variables, you may retrieve them through Streamlit's session state using st.session_state['name'], st.session_state['authentication_status'], and st.session_state['username']. This way you can use Streamlit-Authenticator to authenticate users across multiple pages.
if st.session_state['authentication_status']:
    authenticator.logout('Logout', 'main')
    st.write(f'Welcome *{st.session_state["name"]}*')
    st.title('Some content')
elif st.session_state['authentication_status'] == False:
    st.error('Username/password is incorrect')
elif st.session_state['authentication_status'] == None:
    st.warning('Please enter your username and password')

Or prompt an unverified user to enter a correct username and password.

Please note that logging out will revert the authentication status to None and will delete the associated reauthentication cookie as well.

Credits

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_authenticator_sheets-0.1.7.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file streamlit_authenticator_sheets-0.1.7.tar.gz.

File metadata

File hashes

Hashes for streamlit_authenticator_sheets-0.1.7.tar.gz
Algorithm Hash digest
SHA256 e0c099cdc5eb9d4e2b08558196e87db5eca43507c0df6e4889ca18c52ee15f2c
MD5 c8ae1292606001ed954294184c409eff
BLAKE2b-256 88859a8b1b2406b3b62ad72bee8b04219769ca8e9e41b37abe46673858319cf9

See more details on using hashes here.

File details

Details for the file streamlit_authenticator_sheets-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_authenticator_sheets-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 6134d72e4eac89624d1f067573d758208183e3456d99ad22e42f8b07966f3667
MD5 a25122a0ea7fb1806aa9db5cf8518004
BLAKE2b-256 6b49fede786fdd1e4ddf29a1d70861bd8e850ff5f01d83bca089967c28e65a8e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page