diff --git a/datecsv.py b/datecsv.py index 9a0b1da..e5a6727 100755 --- a/datecsv.py +++ b/datecsv.py @@ -75,4 +75,5 @@ def getTweetsByDate(strings = [], path = tools.config.dbpath, fr = "", to = ""): if __name__ == "__main__": strings, fr, to = dateArgs() + tools.printCSV([["Date", "Tweets"] + [s for s in strings]]) tools.printCSV(getTweetsByDate(strings = strings, fr = fr, to = to))