awacke1 commited on
Commit
7b2e8fa
·
1 Parent(s): 54f17d1

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
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})")