# create a python script that will download the
# csv data
# bear in mind, what I write is an example,
# since it is a Python script, you can do whatever you want ;)
def create_csv():
with open("/path/to/csv", "w") as f:
f.write("a,b,c\n1,2,3")
if __name__ == "__main__":
create_csv()
2条答案
按热度按时间xmakbtuz1#
我不认为有一个解决方案只使用Streamlit。
我遇到了同样的问题,并设法通过创建另一个脚本通过cron运行来修复它。
您的脚本:
例如,您可以让此脚本每小时运行一次:
在打开的文件中:
您可以在此处检查cron语法。
bwntbbo32#
这是一个老问题,但最后一个答案是相对较新的,所以...
我的解决方案是使用
streamlit.cache
您可以在此documentation link中查看详细使用情况