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…?
- Go to your looker studio and open the dashboard which you want to embeded
- Click on share button down arrow and click on embeded report
- Check the ENable Embedding checkbox
- Select Embeded URL
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.