File size: 178 Bytes
8e1c5c0
687a044
8e1c5c0
687a044
 
 
 
1
2
3
4
5
6
7
8
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]}")