我有一个Jupyter笔记本。这只是一个简化的示例。
#Parsing the website
def parse_website_function(url):
return(value,value2)
#Making some calculations(hypothesis)
def linear_model(value, value2):
return(calculations)
#Jot down calculations to csv file
pd.to_csv(calculations)
我想知道如何使它每小时工作,并允许在同一输出文件中将csv时间序列数据重写(添加新行)。谢谢!
答案 0 :(得分:0)
一个真正的基本方法是使程序休眠3600秒。
例如,这会使您的程序暂停1小时:
import time
time.sleep(3600)