i copied the python exemple but it returned an error
import requests
# Using the example query "demon", and looking at the first page of results.
url = "https://api.consumet.org/meta/anilist/airing-schedule"
response = requests.get(url, params={"page": 1})
data = response.json()
print(data)
output: {'statusCode': 500, 'error': 'Internal Server Error', 'message': 'Reached the max retries per request limit (which is 20). Refer to "maxRetriesPerRequest" option for details.'}