Spaces:
Build error
Build error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.write("# URLs for GPU RTX Nvidia 3070 Nsight pages")
|
4 |
+
|
5 |
+
urls = {
|
6 |
+
"Nsight Compute 2023.1.0": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Compute",
|
7 |
+
"Nsight Systems 2023.1.2": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Systems",
|
8 |
+
"Nsight Monitor": "https://en.wikipedia.org/wiki/NVIDIA_Nsight_Monitor",
|
9 |
+
}
|
10 |
+
|
11 |
+
for name, url in urls.items():
|
12 |
+
st.write(f"- [{name}]({url})")
|