【发布时间】:2020-12-06 01:29:04
【问题描述】:
我正在使用 streamlit 制作一个基本的可视化应用程序来比较两个数据集,为此我使用了以下由来自 streamlit 画廊的 Marc Skov 制作的示例:
from typing import Dict
import streamlit as st
@st.cache(allow_output_mutation=True)
def get_static_store() -> Dict:
"""This dictionary is initialized once and can be used to store the files uploaded"""
return {}
def main():
"""Run this function to run the app"""
static_store = get_static_store()
st.info(__doc__)
result = st.file_uploader("Upload", type="py")
if result:
# Process you file here
value = result.getvalue()
# And add it to the static_store if not already in
if not value in static_store.values():
static_store[result] = value
else:
static_store.clear() # Hack to clear list if the user clears the cache and reloads the page
st.info("Upload one or more `.py` files.")
if st.button("Clear file list"):
static_store.clear()
if st.checkbox("Show file list?", True):
st.write(list(static_store.keys()))
if st.checkbox("Show content of files?"):
for value in static_store.values():
st.code(value)
main()
这确实有效,但比较数据集却无法显示它们的名称很奇怪。 代码确实明确表示无法使用此方法获取文件名。但这是 8 个月前的一个例子,我想知道现在是否还有其他方法可以做到这一点。
【问题讨论】: