2024-03-13 09:35:38 +01:00

72 lines
1.6 KiB
Python

# %%
import requests
prod_url = 'https://uefadigitalapi.developer.azure-api.net'
prod_primary_key = '7dfa861240aa40f8a834990c24f1a66d'
prod_secondary_key = '4451dcc1ad4f41b2aa6af96cc5a1256a'
pre_url = 'https://uefadigitalapipre.developer.azure-api.net'
pre_primary_key = '1decf93425944f8b9e6dc7226a3b8477'
pre_secondary_key = '14771f5c67b74836a59f777cb543cc0f'
# %%
# r=requests.get("https://api.digital.uefa.com/comp/v2/competitions/1/seasons", headers={"Cache-Control":"no-cache","Ocp-Apim-Subscription-Key":"7dfa861240aa40f8a834990c24f1a66d"})
# # %%
# r.json()
# # %%
# r=requests.get("https://api.pre.digital.uefa.com/comp/v2/competitions/1/seasons", headers={"Cache-Control":"no-cache","Ocp-Apim-Subscription-Key":"14771f5c67b74836a59f777cb543cc0f"})
# # %%
# r.json()
# # %%
data = {
"season": "UCL 24/25",
"games": [
{
"home": 50051,
"away": 52682
},
{
"home": 52747,
"away": 50051
},
{
"home": 50051,
"away": 50030
},
{
"home": 52758,
"away": 50051
},
{
"home": 50051,
"away": 50031
},
{
"home": 52336,
"away": 50051
},
{
"home": 50051,
"away": 50050
},
{
"home": 77977,
"away": 50051
}
]
}
# %%
# r=requests.post("http://localhost:8000/api/uefa/checker/",
r=requests.post("https://compute.asolvo.de/api/uefa/teams/",
headers={"Authorization": "R6v1e9Q5W8aS3b7C4x2KpZqL9yFmXnDz"},
json=data)
# %%
r.json()
# %%