import streamlit as st | |
import os | |
# 環境変数全てを整形して表示 | |
all_env_dict = os.environ | |
for key in all_env_dict.keys(): | |
st.write(f"{key}: {all_env_dict[key]}") | |
import streamlit as st | |
import os | |
# 環境変数全てを整形して表示 | |
all_env_dict = os.environ | |
for key in all_env_dict.keys(): | |
st.write(f"{key}: {all_env_dict[key]}") | |