Skip to content

Releases: lucasrodes/whatstk

v0.4.0

24 Jan 01:26
60de40a
Compare
Choose a tag to compare

Key updates

Support for Python 3.9 (support for Python 3.6 discontinued)

Library dependencies and tests have been updated so as to make whatstk compatible with Python 3.9. This however lead to the discontinuation of Python 3.6 support.

New chat df format

Date field was being used as the index of the chat DataFrame. This does not make sense, as dates may be repeated and we'd ideally have unique identifiers for each row entry. Now, the ids are numeric integers ordered by message date.

Now (>=v0.4.0)

>>> from whatstk import WhatsAppChat
>>> from whatstk.data import whatsapp_urls
>>> chat = WhatsAppChat.from_source(filepath=whatsapp_urls.POKEMON)
>>> chat.df.head(5)
                 date     username                                            message
0 2016-08-06 13:23:00  Ash Ketchum                                          Hey guys!
1 2016-08-06 13:25:00        Brock              Hey Ash, good to have a common group!
2 2016-08-06 13:30:00        Misty  Hey guys! Long time haven't heard anything fro...
3 2016-08-06 13:45:00  Ash Ketchum  Indeed. I think having a whatsapp group nowada...
4 2016-08-06 14:30:00        Misty                                          Definetly

Deprecated (<=v0.3.1)

>>> from whatstk import WhatsAppChat
>>> from whatstk.data import whatsapp_urls
>>> chat = WhatsAppChat.from_source(filepath=whatsapp_urls.POKEMON)
>>> chat.df.head(5)
                        username                                            message
date                                                                               
2016-08-06 13:23:00  Ash Ketchum                                          Hey guys!
2016-08-06 13:25:00        Brock              Hey Ash, good to have a common group!
2016-08-06 13:30:00        Misty  Hey guys! Long time haven't heard anything fro...
2016-08-06 13:45:00  Ash Ketchum  Indeed. I think having a whatsapp group nowada...
2016-08-06 14:30:00        Misty                                          Definetly

v0.3.1: Merge pull request #93 from lucasrodes/release/0.3.1

26 Jul 16:06
6f757e2
Compare
Choose a tag to compare

v0.3.0: Merge pull request #89 from lucasrodes/release/0.3.0

26 Jun 21:54
d4fb500
Compare
Choose a tag to compare

v0.3.0.rc1

26 Jun 12:16
Compare
Choose a tag to compare
v0.3.0.rc1 Pre-release
Pre-release
Bump version: 0.3.0.rc0 → 0.3.0.rc1

v0.2.6: Merge pull request #49 from lucasrodes/release/0.2.6

06 May 23:15
56d129f
Compare
Choose a tag to compare

Merge pull request #39 from lucasrodes/release/v0.2.5

01 May 21:11
c0870fb
Compare
Choose a tag to compare

v0.2.4: Merge pull request #37 from lucasrodes/hotfix/argmax-to-idxmax

01 May 00:12
c59b7e4
Compare
Choose a tag to compare
Fixed travis issues, updating to patch v0.2.4

0.2.0: Merge pull request #33 from lucasrodes/develop

29 Apr 22:07
fdb3f48
Compare
Choose a tag to compare