21 lines
528 B
Python
21 lines
528 B
Python
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))
|