File size: 554 Bytes
6e78fc4
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st
from streamlit.components import v1 as components

def main():
    st.title("Azure-IDR Diagram Viewer")
    st.write("This application displays the Azure-IDR diagram from diagrams.net.")
    
    iframe_url = "https://viewer.diagrams.net/?tags=%7B%7D&highlight=0000ff&edit=_blank&layers=1&nav=1&title=Azure-IDR.drawio#Uhttps%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D1ehmZiWNGpRARM_H0UXzcEQH5Vpj04Xfo%26export%3Ddownload"
    components.iframe(iframe_url, width=1000, height=4865, scrolling=True)

if __name__ == "__main__":
    main()