從MongoDB compass中匯出某個時間段的資料

布都御魂發表於2024-07-10

# 把結果複製到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 選擇需要匯出的欄位
# 匯出

相關文章