awacke1's picture
Create app.py
7b2e8fa
raw
history blame
408 Bytes
import streamlit as st
st.write("# URLs for GPU RTX Nvidia 3070 Nsight pages")
urls = {
"Nsight Compute 2023.1.0": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Compute",
"Nsight Systems 2023.1.2": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Systems",
"Nsight Monitor": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Monitor",
}
for name, url in urls.items():
st.write(f"- [{name}]({url})")