Код: Выделить всё
import requests
import json
url = 'https://www.sofascore.com/api/v1/event/11352457/comments'
response = requests.get(url)
for i in range(len(response.json().get('comments'))):
print(response.json().get('comments')[i].get('time'))
# I have headers and cookies from the cURL converter but don't feel those are necessary here
Подробнее здесь: https://stackoverflow.com/questions/785 ... er-request