Looker Studio embedding with streamlit

Is there any way to embed Google Looker Studio with Streamlit so that I can display my client’s dashboard into a Streamlit page…?

import streamlit as st
import streamlit.components.v1 as components

# The Google Looker Studio embed URL
looker_studio_url = "your_looker_embeded_URL"
components.iframe(looker_studio_url, width=800, height=600)

How to get looker studio embeded URL…?

  1. Go to your looker studio and open the dashboard which you want to embeded
  2. Click on share button down arrow and click on embeded report
  3. Check the ENable Embedding checkbox
  4. Select Embeded URL

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.