Latest v0.1.58

Emoticon

Supported from ^0.1.54

Manfaatkan fungsi ini untuk menghapus Emoji atau Emoticon dari Tweet.

Cara Pakai

from frasa.preprocess import tweet
 
text = tweet('๐Ÿ•ต๏ธ Frasa is #awesome ๐Ÿ‘ @404vay, @frasaId. http://t.co/g00gl')
 
text.emoji().remove()
// Before
๐Ÿ•ต๏ธ Frasa is #awesome ๐Ÿ‘ @404vay, @frasaId. http://t.co/g00gl
 
// After
Frasa is #awesome @404vay, @frasaId. http://t.co/g00gl

Get Emoticon List

text.emoji()
 
# Output
['๐Ÿ•ต๏ธ', '๐Ÿ‘']

Count

text.emoji().count()
 
# Output
2

Get a Single Emoticon

text.emoji()[0]
 
# Output
'๐Ÿ•ต๏ธ'