hotchpotch
commited on
Commit
•
687a044
1
Parent(s):
8e1c5c0
show envs
Browse files
app.py
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import os
|
3 |
|
4 |
+
# 環境変数全てを整形して表示
|
5 |
+
all_env_dict = os.environ
|
6 |
+
for key in all_env_dict.keys():
|
7 |
+
st.write(f"{key}: {all_env_dict[key]}")
|