def number_gold_credit():
credit = 0
db = TinyDB(config.DATA_PATH + 'reddit_gold.json')
data = db.all()
db.close()
for gold in data:
if gold['status'] == "buy":
# user have buy credits
credit = credit - int(gold['quantity'])
if gold['status'] == "refill":
# user have buy credits
credit = credit + int(gold['quantity'])
return credit
评论列表
文章目录