我在Raspberry Pi上构建了一个脚本,该脚本从文件中读取数据并显示实时视频流。
然后将内容显示在html页面上
f = open("demofile.txt", "r")
temperature=f.read()
f.close()
print(temperature)
PAGE="""\
<html>
<body>
<center><img src="stream.mjpeg" width="640" height="480"></center>
<center><h2>%s</h2></center>
</body>
</html>
""" %(temperature)
我的问题是,文件每10分钟更新一次-每次访问html页面时,如何重新加载文件或从文件中提取新内容?
由于我正在流式传输视频,该脚本一直运行,所以我无法停止并再次运行它以从文件中获取最新数据。
请告知