Esempio n. 1
0
def getTrendingHashtagsByGchatId(gchat_id):
    return HashtagHandler().getTrendingHashtagByGchatId(gchat_id)
Esempio n. 2
0
def getTrendingTopic():
    return HashtagHandler().getTrendingHashtag()
Esempio n. 3
0
def getHashtagByID(hashtag_id):
    return HashtagHandler().getHashtagByID(hashtag_id)
Esempio n. 4
0
def getFrequencyByHashtagText(hashtag_text):
    return HashtagHandler().getFrequencyByHashtagText(hashtag_text)
Esempio n. 5
0
def getMsgsByChatIdAndHashtagText(gchat_id, hashtag_text):
    return HashtagHandler().getMsgsByChatIdAndHashtagText(
        gchat_id, hashtag_text)
Esempio n. 6
0
def getMsgsByHashtagText(hashtag_text):
    return HashtagHandler().getMsgsByHashtagText(hashtag_text)
Esempio n. 7
0
def getHashtagdByMsgId(msg_id):
    return HashtagHandler().getHashtagByMsgId(msg_id)
Esempio n. 8
0
def distinctHashtag():
    handler = HashtagHandler()
    return handler.getAllDistinctHashtag()
Esempio n. 9
0
def hashtag():
    handler = HashtagHandler()
    return handler.getAllHashtag()