first (part 1: root files)
Deploy Iddaai Backend / build-and-deploy (push) Failing after 4s

This commit is contained in:
2026-04-16 15:09:10 +03:00
parent b4173c10bb
commit 7814e0bc6b
38 changed files with 18494 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import requests
import json
match_id = '7cnm7h7qbsq2bbaxngusojh90'
url = f'http://localhost:8007/v20plus/analyze/{match_id}'
print(f"🔮 Sending prediction request for: {match_id}")
print(f"URL: {url}\n")
response = requests.post(url)
data = response.json()
print("📊 DATA QUALITY:")
print(json.dumps(data.get('data_quality', {}), indent=2))
print("\n🎯 MAIN PICK:")
print(json.dumps(data.get('main_pick', {}), indent=2))
print("\n⚽ SCORE PREDICTION:")
print(json.dumps(data.get('score_prediction', {}), indent=2))