From 0306bb14a6021a6bb21ae65e2e4a45301e975cc9 Mon Sep 17 00:00:00 2001 From: ertanalytics Date: Sun, 8 Oct 2017 09:42:02 -0500 Subject: [PATCH] Updated Wekan Sandstorm cards to CSV using Python (markdown) --- Wekan-Sandstorm-cards-to-CSV-using-Python.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/Wekan-Sandstorm-cards-to-CSV-using-Python.md b/Wekan-Sandstorm-cards-to-CSV-using-Python.md index 42043e8..fe9f7dd 100644 --- a/Wekan-Sandstorm-cards-to-CSV-using-Python.md +++ b/Wekan-Sandstorm-cards-to-CSV-using-Python.md @@ -90,8 +90,6 @@ dfcards['createdAt'] = pd.to_datetime(dfcards['createdAt']) dfcards['dateLastActivity'] = pd.to_datetime(dfcards['dateLastActivity']) dfcards['title']=dfcards['title'].str.replace('\n','') -dfboards['createdAt'] = pd.to_datetime(dfboards['createdAt']) -dfboards['modifiedAt'] = pd.to_datetime(dfboards['modifiedAt']) dfcards.to_csv('//DESTINATION_FOLDER/dfcards.csv',sep='|') dflists.to_csv('//DESTINATION_FOLDER/dflists.csv',sep='|')