Skip to content

vivekuppal/streamlit-gauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

streamlit-gauth

A simple app to Demonstrate using Google as IDP provider for a Streamlit App

Install Instructions

Google Cloud Configuration

  1. Create a new project on the Google Cloud Console:

  2. Enable the Google Sign-In API:

    • In the Google Cloud Console, navigate to the “APIs & Services” > “Library” section.
    • Search for “Cloud Identity” and enable it for your project.
  3. Configure the OAuth consent screen:

    • In the Google Cloud Console, navigate to the “APIs & Services” > “OAuth consent screen” section.
    • Choose an “External” user type and click “Create”.
    • Provide a name for your application, enter the authorized domain (e.g., localhost for local development), and add any additional required information.
    • Save.
  4. Create OAuth credentials (See images):

    • In the Google Cloud Console, navigate to the “APIs & Services” > “Credentials” section.
    • Click “Create Credentials” and select “OAuth client ID”.
    • Choose “Web application” as the application type.
    • Enter a name for the OAuth client ID.
    • Add the authorized JavaScript origins (e.g., http://localhost:8501 for Streamlit’s default development server).
    • Add the authorized redirect URI (e.g., http://localhost:8501/).
    • Click “Create” to generate the OAuth client ID and client secret.

Python configuration

  1. Clone the git repo
git clone https://github.com/vivekuppal/streamlit-gauth.git
cd streamlit-gauth
python -m venv venv
venv\scripts\activate.bat
pip install -r requirements.txt
  1. Configure the app
Replace CLIENT_ID, CLIENT_SECRET, PROJECT_ID in app.py with appropriate values
  1. Execute the app
streamlit run app.py

About

Google Auth for Streamlit

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages