whatstk icon indicating copy to clipboard operation
whatstk copied to clipboard

Add option to filter chat by date

Open lucasrodes opened this issue 4 years ago • 0 comments

Concept idea

When loading chat

from whatstk import WhatsAppChat
chat = WhatsAppChat.from_txt('file.txt', date_min='2020-01-01', date_max='2020-01-21')

When analysing chat

from whatstk import WhatsAppChat
chat = WhatsAppChat.from_txt('file.txt')
chat = chat.filter_dates(date_min='2020-01-01', date_max='2020-01-21')

lucasrodes avatar May 11 '20 22:05 lucasrodes