Bot Making Tips
前往频道在 Telegram
无数据
订阅者
-6624 小时
-5487 天
-1 72330 天
帖子存档
TELEGRAM BANING FULL METHOD AND TOOLS FOR SELL
DM @darkdonn
proof @RichopTop (cheak)
Real hi tek db not cruppt or parted or splited zip its about
To 109 GB IN COMPRESSED ZIP FORMAT
In 1 mb of file have 3.6k+ lines data so u can imagine how muchh large .... this database
import requests
app = Flask(name) # ❌ Fixed: use name, not name
# Apna JWT yaha daalo
JWT = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiI1ODM4NTgzMzg4IiwianRpIjoiNjkzMGRhMjctOTBjNi00OTcyLTlkYjYtMjdhOTI2NzQxYjU5IiwiZXhwIjoxNzg1NDE1OTk0fQ.rZJMVGi-o-PmTH-GkpvOBowqrY_FflHVxRuW1-Ro27y2uNTiSwLXR0ohDoFXPcBdmwyyy70fjfUHU89By7_eVtpKZMH5hganj0PngE8r_ZxzvrmJApYlpKKjDP4SWPtNDLSFi30e9FOXUva1hihJxoGUUibTDAwX_vEM8fZQ_8E"
@app.route("/user-details")
def user_details():
user_id = request.args.get("user")
if not user_id:
return jsonify({"success": False, "error": "Missing user ID"}), 400
url = f"https://funstat.info/api/v1/users/{user_id}/stats_min"
headers = {
"accept": "application/json",
"Authorization": f"Bearer {JWT}"
}
try:
response = requests.get(url, headers=headers, timeout=10)
if response.status_code != 200:
return jsonify({
"success": False,
"error": "Failed to fetch user info",
"code": response.status_code,
"response_text": response.text
}), 500
data = response.json()
return jsonify({"success": True, "data": data})
except requests.exceptions.RequestException as e:
return jsonify({"success": False, "error": f"Request error: {str(e)}"}), 500
except Exception as e:
return jsonify({"success": False, "error": str(e)}), 500
if name == "main":
app.run(host="0.0.0.0", port=5000, debug=True)