从MongoDB compass中导出某个时间段的数据
# 把结果复制到MongoDB compass上的查询位置
# 点击export data
# 点击Export query results
# Select fields in table 选择需要导出的字段
# 导出
last=open('spider.results_dangdang.csv','r',encoding='utf-8').readlines()[-1]
last_time='{"panduanshijian": {"$gt": '+last.split(",")[-2]+'}}'
print(last_time)
# 把结果复制到MongoDB compass上的查询位置
# 点击export data
# 点击Export query results
# Select fields in table 选择需要导出的字段
# 导出