Ayush__ [#5]
https://github.com/ThorkildFregi/Valorant-Pro-API
use this
match = data.Match("318917") # Replace with your specific match ID
print(f"Match ID: {match.id}")
print(f"Winner: {match.winner}")
print(f"Team A: {match.team_a.name} - Score: {match.team_a.score}")
print(f"Team B: {match.team_b.name} - Score: {match.team_b.score}")
i dont think the pip install works so you have to install it manually
here are the steps
open cmd
- git clone https://github.com/ThorkildFregi/Valorant-Pro-API.git
- cd Valorant-Pro-API
- pip install beautifulsoup4 requests
- and then create whatever python script inside the directory for your match example it would be
from valorant_pro_api import data
match = data.Match("248270")
print(f"Match ID: {match.id}")
print(f"Winner: {match.winner}")
print(f"Team A: {match.team_a.name} - Score: {match.team_a.score}")
print(f"Team B: {match.team_b.name} - Score: {match.team_b.score}")