def PUTstatDownvote(statIDs): statID_list = statIDs.split('-') try: Stat.increment(statID_list, "down_count") return respond200() except Exception as e: return respond500(e)
def PUTstatIncrement(statID, count): try: Stat.increment([statID], count) return respond200() except Exception as e: return respond500(e)