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