WebAdminPanel/apps/group_stat_api.py

13 lines
332 B
Python
Raw Normal View History

2022-12-11 08:51:44 -05:00
from flask import Blueprint, jsonify
group_stat_api = Blueprint('group_stat_api', __name__)
@group_stat_api.route("/top3_users",methods=["POST"])
def top_users():
# TODO: database
return jsonify({
"members": ["Mr.D", "𝙲𝚊𝚝𝚒𝚘𝚗", "Тёма","Others"],
"counts":[4026,3024,2024,4096]
})